mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
18293ffb31
* Add sample for hosted agent with files * Update python/samples/04-hosting/foundry-hosted-agents/responses/06_files/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update python/samples/04-hosting/foundry-hosted-agents/responses/06_files/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update python/samples/04-hosting/foundry-hosted-agents/responses/06_files/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update python/samples/04-hosting/foundry-hosted-agents/responses/04_foundry_toolbox/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update python/samples/04-hosting/foundry-hosted-agents/responses/06_files/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Improve README * Address comments --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
32 lines
813 B
YAML
32 lines
813 B
YAML
name: agent-framework-agent-files-responses
|
|
description: >
|
|
An Agent Framework agent that can work with files hosted by Foundry.
|
|
metadata:
|
|
tags:
|
|
- Agent Framework
|
|
- AI Agent Hosting
|
|
- Azure AI AgentServer
|
|
- Responses Protocol
|
|
- Streaming
|
|
template:
|
|
name: agent-framework-agent-files-responses
|
|
kind: hosted
|
|
protocols:
|
|
- protocol: responses
|
|
version: 1.0.0
|
|
environment_variables:
|
|
- name: AZURE_AI_MODEL_DEPLOYMENT_NAME
|
|
value: "{{AZURE_AI_MODEL_DEPLOYMENT_NAME}}"
|
|
- name: TOOLBOX_NAME
|
|
value: "agent-tools"
|
|
resources:
|
|
- kind: model
|
|
id: gpt-4.1-mini
|
|
name: AZURE_AI_MODEL_DEPLOYMENT_NAME
|
|
- kind: toolbox
|
|
name: agent-tools
|
|
tools:
|
|
- type: web_search
|
|
name: web_search
|
|
- type: code_interpreter
|
|
name: code_interpreter |