Skip to content

Commit

Permalink
rename interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Magnus Hartvig Grønbech committed Feb 11, 2025
1 parent c9fccf1 commit 17509fa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using System.AI;
/// <summary>
/// Azure Document Intelligence implementation.
/// </summary>
codeunit 7779 "Azure DI Impl." implements IAIServiceName
codeunit 7779 "Azure DI Impl." implements "AI Service Name"
{
Access = Internal;
InherentEntitlements = X;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using System.Environment;
using System.Privacy;
using System.Telemetry;

codeunit 7772 "Azure OpenAI Impl" implements IAIServiceName
codeunit 7772 "Azure OpenAI Impl" implements "AI Service Name"
{
Access = Internal;
InherentEntitlements = X;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using System.AI.DocumentIntelligence;
/// <summary>
/// The supported service types for Azure AI.
/// </summary>
enum 7778 "Azure AI Service Type" implements IAIServiceName
enum 7778 "Azure AI Service Type" implements "AI Service Name"
{
Access = Public;
Extensible = false;
Expand All @@ -19,7 +19,7 @@ enum 7778 "Azure AI Service Type" implements IAIServiceName
value(0; "Azure OpenAI")
{
Caption = 'Azure OpenAI';
Implementation = IAIServiceName = "Azure OpenAI Impl";
Implementation = "AI Service Name" = "Azure OpenAI Impl";
}

/// <summary>
Expand All @@ -28,6 +28,6 @@ enum 7778 "Azure AI Service Type" implements IAIServiceName
value(1; "Azure Document Intelligence")
{
Caption = 'Azure Document Intelligence';
Implementation = IAIServiceName = "Azure DI Impl.";
Implementation = "AI Service Name" = "Azure DI Impl.";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ codeunit 7774 "Copilot Capability Impl"
var
CopilotTelemetry: Codeunit "Copilot Telemetry";
Language: Codeunit Language;
IAIServicename: Interface IAIServiceName;
IAIServicename: Interface "AI Service Name";
SavedGlobalLanguageId: Integer;
CustomDimensions: Dictionary of [Text, Text];
ErrorMessage: Text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace System.AI;
/// <summary>
/// Interface for providing naming information for a given AI service.
/// </summary>
interface IAIServiceName
interface "AI Service Name"
{

/// <summary>
Expand Down

0 comments on commit 17509fa

Please sign in to comment.