Skip to content

Commit 0b4c6a9

Browse files
authored
Merge pull request #10 from melionel/mengla/fix-sample-deploy
Mengla/fix-sample-deploy
2 parents f346891 + 0cc43fa commit 0b4c6a9

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

samples/python/hosted-agents/agent-framework/agent-with-foundry-tools/agent.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ template:
2424
- name: AZURE_OPENAI_CHAT_DEPLOYMENT_NAME
2525
value: "{{chat}}"
2626
- name: AZURE_AI_PROJECT_TOOL_CONNECTION_ID
27-
value: ""
27+
value: <CONNECTION_ID_PLACEHOLDER>
2828
resources:
2929
- kind: model
30-
id: gpt-4o-mini
30+
id: gpt-5
3131
name: chat
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
azure-ai-agentserver-agentframework==1.0.0b9
1+
azure-ai-agentserver-agentframework==1.0.0b9
2+
azure-monitor-opentelemetry==1.8.1

samples/python/hosted-agents/custom/system-utility-agent/agent.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ template:
3131
- name: AZURE_AI_PROJECT_ENDPOINT
3232
value: ${AZURE_AI_PROJECT_ENDPOINT}
3333
- name: AZURE_AI_MODEL_DEPLOYMENT_NAME
34-
value: gpt-5
34+
value: "{{chat}}"
3535
- name: AGENT_MAX_TURNS
3636
value: 10
3737
- name: AGENT_CHAT_HISTORY_LENGTH
38-
value: 20
38+
value: 20
39+
resources:
40+
- kind: model
41+
id: gpt-5
42+
name: chat

0 commit comments

Comments
 (0)