Skip to content

Commit b12a6da

Browse files
authored
Update hosted-agents samples to gpt-5.4-mini (#607)
Replace gpt-4.1-mini with gpt-5.4-mini across the python and csharp hosted-agents samples, and bump the langgraph-chat azure.yaml model version to 2026-03-17 (SKU remains GlobalStandard).
1 parent 5d9dc1e commit b12a6da

108 files changed

Lines changed: 125 additions & 125 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

samples/csharp/hosted-agents/agent-framework/a2a/01-delegation/caller/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ parameters:
3636
(printed by executor/scripts/setup-a2a after enabling incoming A2A).
3737
resources:
3838
- kind: model
39-
id: gpt-4.1-mini
39+
id: gpt-5.4-mini
4040
name: AZURE_AI_MODEL_DEPLOYMENT_NAME
4141
- kind: connection
4242
name: math-expert-a2a

samples/csharp/hosted-agents/agent-framework/a2a/01-delegation/executor/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ template:
2828
value: "{{AZURE_AI_MODEL_DEPLOYMENT_NAME}}"
2929
resources:
3030
- kind: model
31-
id: gpt-4.1-mini
31+
id: gpt-5.4-mini
3232
name: AZURE_AI_MODEL_DEPLOYMENT_NAME

samples/csharp/hosted-agents/agent-framework/agent-skills/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ parameters:
4545
4646
resources:
4747
- kind: model
48-
id: gpt-4.1-mini
48+
id: gpt-5.4-mini
4949
name: AZURE_AI_MODEL_DEPLOYMENT_NAME

samples/csharp/hosted-agents/agent-framework/azure-search-rag/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
var projectEndpoint = new Uri(Environment.GetEnvironmentVariable("FOUNDRY_PROJECT_ENDPOINT")
1717
?? throw new InvalidOperationException("FOUNDRY_PROJECT_ENDPOINT environment variable is not set."));
18-
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-4.1-mini";
18+
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-5.4-mini";
1919
var searchEndpoint = new Uri(Environment.GetEnvironmentVariable("AZURE_SEARCH_ENDPOINT")
2020
?? throw new InvalidOperationException("AZURE_SEARCH_ENDPOINT environment variable is not set."));
2121
var indexName = Environment.GetEnvironmentVariable("AZURE_SEARCH_INDEX_NAME") ?? "contoso-outdoors";

samples/csharp/hosted-agents/agent-framework/azure-search-rag/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ parameters:
3636
properties: []
3737
resources:
3838
- kind: model
39-
id: gpt-4.1-mini
39+
id: gpt-5.4-mini
4040
name: AZURE_AI_MODEL_DEPLOYMENT_NAME
4141
- kind: tool
4242
id: azure_ai_search
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FOUNDRY_PROJECT_ENDPOINT=https://<account>.services.ai.azure.com/api/projects/<project>
2-
AZURE_AI_MODEL_DEPLOYMENT_NAME=gpt-4.1-mini
2+
AZURE_AI_MODEL_DEPLOYMENT_NAME=gpt-5.4-mini
33
ASPNETCORE_URLS=http://+:8088
44
ASPNETCORE_ENVIRONMENT=Development

samples/csharp/hosted-agents/agent-framework/file-tools/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
var projectEndpoint = new Uri(Environment.GetEnvironmentVariable("FOUNDRY_PROJECT_ENDPOINT")
1515
?? throw new InvalidOperationException("FOUNDRY_PROJECT_ENDPOINT environment variable is not set."));
1616

17-
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-4.1-mini";
17+
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-5.4-mini";
1818

1919
// Bundled root: files copied into the published output via csproj <Content Include="resources\**">.
2020
// In the container this resolves to /app/resources/.

samples/csharp/hosted-agents/agent-framework/file-tools/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ parameters:
3434

3535
resources:
3636
- kind: model
37-
id: gpt-4.1-mini
37+
id: gpt-5.4-mini
3838
name: AZURE_AI_MODEL_DEPLOYMENT_NAME

samples/csharp/hosted-agents/agent-framework/foundry-memory-rag/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
var projectEndpoint = new Uri(Environment.GetEnvironmentVariable("FOUNDRY_PROJECT_ENDPOINT")
2525
?? throw new InvalidOperationException("FOUNDRY_PROJECT_ENDPOINT environment variable is not set."));
26-
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-4.1-mini";
26+
var deployment = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-5.4-mini";
2727
var embeddingDeployment = Environment.GetEnvironmentVariable("AZURE_AI_EMBEDDING_DEPLOYMENT_NAME") ?? "text-embedding-3-small";
2828
var memoryStoreName = Environment.GetEnvironmentVariable("AZURE_AI_MEMORY_STORE_ID") ?? "foundry-memory-rag-store";
2929

samples/csharp/hosted-agents/agent-framework/foundry-memory-rag/agent.manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ parameters:
3434
properties: []
3535
resources:
3636
- kind: model
37-
id: gpt-4.1-mini
37+
id: gpt-5.4-mini
3838
name: AZURE_AI_MODEL_DEPLOYMENT_NAME
3939
- kind: model
4040
id: text-embedding-3-small

0 commit comments

Comments
 (0)