Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/designer/real-api/agentic/agentConnections.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ test.describe(
await expect(page.getByLabel('Default Agent operation')).toBeVisible();
await page.getByLabel('Default Agent operation').click();

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

await startConnectionCreation(page);

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-v2/src/lib/common/utilities/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const isDynamicConnection = (feature?: string): boolean => {
export class AgentUtils {
public static ModelType = {
AzureOpenAI: 'Azure OpenAI',
FoundryService: 'Foundry Agent Service',
FoundryService: 'Foundry project',
APIM: 'APIM Gen AI Gateway',
V1ChatCompletionsService: 'V1 Chat Completions Service',
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('AgentUtils', () => {
describe('ModelType constants', () => {
it('should have correct model type values', () => {
expect(AgentUtils.ModelType.AzureOpenAI).toBe('Azure OpenAI');
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry Agent Service');
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry project');
expect(AgentUtils.ModelType.APIM).toBe('APIM Gen AI Gateway');
expect(AgentUtils.ModelType.V1ChatCompletionsService).toBe('V1 Chat Completions Service');
});
Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/common/utilities/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const isDynamicConnection = (feature?: string): boolean => {
export class AgentUtils {
public static ModelType = {
AzureOpenAI: 'Azure OpenAI',
FoundryService: 'Foundry Agent Service',
FoundryService: 'Foundry project',
APIM: 'APIM Gen AI Gateway',
V1ChatCompletionsService: 'V1 Chat Completions Service',
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('AgentUtils', () => {
describe('ModelType constants', () => {
it('should have correct model type values', () => {
expect(AgentUtils.ModelType.AzureOpenAI).toBe('Azure OpenAI');
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry Agent Service');
expect(AgentUtils.ModelType.FoundryService).toBe('Foundry project');
expect(AgentUtils.ModelType.APIM).toBe('APIM Gen AI Gateway');
expect(AgentUtils.ModelType.V1ChatCompletionsService).toBe('V1 Chat Completions Service');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
},
{
value: 'FoundryAgentService',
displayName: 'Foundry Agent Service (Preview)',
displayName: 'Foundry project (Preview)',
unSupportedWorkflowKind: ['agent'],
},
{
Expand Down
Loading