diff --git a/src/System Application/App/AI/src/Azure AI Document Intelligence/AzureDIImpl.Codeunit.al b/src/System Application/App/AI/src/Azure AI Document Intelligence/AzureDIImpl.Codeunit.al
index 863cf314c6..cf70ecb106 100644
--- a/src/System Application/App/AI/src/Azure AI Document Intelligence/AzureDIImpl.Codeunit.al
+++ b/src/System Application/App/AI/src/Azure AI Document Intelligence/AzureDIImpl.Codeunit.al
@@ -11,7 +11,7 @@ using System.AI;
///
/// Azure Document Intelligence implementation.
///
-codeunit 7779 "Azure DI Impl." implements IAIServiceName
+codeunit 7779 "Azure DI Impl." implements "AI Service Name"
{
Access = Internal;
InherentEntitlements = X;
diff --git a/src/System Application/App/AI/src/Azure OpenAI/AzureOpenAIImpl.Codeunit.al b/src/System Application/App/AI/src/Azure OpenAI/AzureOpenAIImpl.Codeunit.al
index e519620846..d400d41e96 100644
--- a/src/System Application/App/AI/src/Azure OpenAI/AzureOpenAIImpl.Codeunit.al
+++ b/src/System Application/App/AI/src/Azure OpenAI/AzureOpenAIImpl.Codeunit.al
@@ -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;
diff --git a/src/System Application/App/AI/src/Copilot/AzureAIServiceType.Enum.al b/src/System Application/App/AI/src/Copilot/AzureAIServiceType.Enum.al
index 94783dcd64..3705990822 100644
--- a/src/System Application/App/AI/src/Copilot/AzureAIServiceType.Enum.al
+++ b/src/System Application/App/AI/src/Copilot/AzureAIServiceType.Enum.al
@@ -8,7 +8,7 @@ using System.AI.DocumentIntelligence;
///
/// The supported service types for Azure AI.
///
-enum 7778 "Azure AI Service Type" implements IAIServiceName
+enum 7778 "Azure AI Service Type" implements "AI Service Name"
{
Access = Public;
Extensible = false;
@@ -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";
}
///
@@ -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.";
}
}
\ No newline at end of file
diff --git a/src/System Application/App/AI/src/Copilot/CopilotCapabilityImpl.Codeunit.al b/src/System Application/App/AI/src/Copilot/CopilotCapabilityImpl.Codeunit.al
index 58086b031d..1989341ee8 100644
--- a/src/System Application/App/AI/src/Copilot/CopilotCapabilityImpl.Codeunit.al
+++ b/src/System Application/App/AI/src/Copilot/CopilotCapabilityImpl.Codeunit.al
@@ -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;
diff --git a/src/System Application/App/AI/src/Copilot/Interfaces/IAIServiceName.Interface.al b/src/System Application/App/AI/src/Copilot/Interfaces/AIServiceName.Interface.al
similarity index 96%
rename from src/System Application/App/AI/src/Copilot/Interfaces/IAIServiceName.Interface.al
rename to src/System Application/App/AI/src/Copilot/Interfaces/AIServiceName.Interface.al
index 462218b4d6..f7ac245c07 100644
--- a/src/System Application/App/AI/src/Copilot/Interfaces/IAIServiceName.Interface.al
+++ b/src/System Application/App/AI/src/Copilot/Interfaces/AIServiceName.Interface.al
@@ -7,7 +7,7 @@ namespace System.AI;
///
/// Interface for providing naming information for a given AI service.
///
-interface IAIServiceName
+interface "AI Service Name"
{
///