Skip to content

Commit 2b2b775

Browse files
authored
chore(designer): rename 'Foundry Agent Service' to 'Foundry project' in display strings (#8794)
chore: rename 'Foundry Agent Service' to 'Foundry project' in display strings
1 parent 550ffbd commit 2b2b775

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

e2e/designer/real-api/agentic/agentConnections.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ test.describe(
7777
await expect(page.getByLabel('Default Agent operation')).toBeVisible();
7878
await page.getByLabel('Default Agent operation').click();
7979

80-
// Change the model type to Foundry Agent Service
80+
// Change the model type to Foundry project
8181
await page.getByTestId('msla-setting-token-editor-dropdowneditor-agent_model_type').click();
82-
await page.getByText('Foundry Agent Service').click();
82+
await page.getByText('Foundry project').click();
8383

8484
await startConnectionCreation(page);
8585

libs/designer-v2/src/lib/common/utilities/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const isDynamicConnection = (feature?: string): boolean => {
3030
export class AgentUtils {
3131
public static ModelType = {
3232
AzureOpenAI: 'Azure OpenAI',
33-
FoundryService: 'Foundry Agent Service',
33+
FoundryService: 'Foundry project',
3434
APIM: 'APIM Gen AI Gateway',
3535
V1ChatCompletionsService: 'V1 Chat Completions Service',
3636
};

libs/designer-v2/src/lib/common/utilities/__test__/Utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('AgentUtils', () => {
55
describe('ModelType constants', () => {
66
it('should have correct model type values', () => {
77
expect(AgentUtils.ModelType.AzureOpenAI).toBe('Azure OpenAI');
8-
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry Agent Service');
8+
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry project');
99
expect(AgentUtils.ModelType.APIM).toBe('APIM Gen AI Gateway');
1010
expect(AgentUtils.ModelType.V1ChatCompletionsService).toBe('V1 Chat Completions Service');
1111
});

libs/designer/src/lib/common/utilities/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const isDynamicConnection = (feature?: string): boolean => {
3030
export class AgentUtils {
3131
public static ModelType = {
3232
AzureOpenAI: 'Azure OpenAI',
33-
FoundryService: 'Foundry Agent Service',
33+
FoundryService: 'Foundry project',
3434
APIM: 'APIM Gen AI Gateway',
3535
V1ChatCompletionsService: 'V1 Chat Completions Service',
3636
};

libs/designer/src/lib/common/utilities/__test__/Utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('AgentUtils', () => {
55
describe('ModelType constants', () => {
66
it('should have correct model type values', () => {
77
expect(AgentUtils.ModelType.AzureOpenAI).toBe('Azure OpenAI');
8-
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry Agent Service');
8+
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry project');
99
expect(AgentUtils.ModelType.APIM).toBe('APIM Gen AI Gateway');
1010
expect(AgentUtils.ModelType.V1ChatCompletionsService).toBe('V1 Chat Completions Service');
1111
});

libs/logic-apps-shared/src/designer-client-services/lib/standard/manifest/agentloop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656
},
5757
{
5858
value: 'FoundryAgentService',
59-
displayName: 'Foundry Agent Service (Preview)',
59+
displayName: 'Foundry project (Preview)',
6060
unSupportedWorkflowKind: ['agent'],
6161
},
6262
{

0 commit comments

Comments
 (0)