Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Each specialist agent has access to domain-specific tools for their area of expe

### Prerequisites

- Python 3.11+
- Python 3.10+
- [uv](https://docs.astral.sh/uv/) - Python package manager
- [Azure CLI (az)](https://learn.microsoft.com/cli/azure/install-azure-cli)
- [Azure Developer CLI (azd)](https://learn.microsoft.com/azure/developer/azure-developer-cli/install-azd)
Expand Down
48 changes: 48 additions & 0 deletions agent.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: "event-planning-workflow"
displayName: "Event Planning Workflow"
description: >
A workflow that utilizes multiple agents to plan and organize events, including venue selection, budget management, catering coordination, and logistics management.
metadata:
authors:
- Microsoft Agent Framework Team
tags:
- Microsoft Agent Framework
- Workflows
template:
kind: hosted
name: AgentsInWorkflows
protocols:
- protocol: responses
version: v1
environment_variables:
- name: AZURE_OPENAI_API_VERSION
value: preview
- name: AZURE_AI_PROJECT_ENDPOINT
value: ${AZURE_AI_PROJECT_ENDPOINT}
- name: AZURE_AI_MODEL_DEPLOYMENT_NAME
value: gpt-5-mini
- name: WEB_SEARCH_MODEL
value: gpt-4.1-mini
- name: BING_CONNECTION_ID
value: ${BING_CONNECTION_ID}
- name: CALENDAR_STORAGE_PATH
value: ./data/calendars
- name: A2A_AGENT_HOST
value: http://localhost:5000
- name: ENABLE_OTEL
value: true
- name: ENABLE_SENSITIVE_DATA
value: true
- name: OTLP_ENDPOINT
value: http://localhost:4317
- name: APPLICATIONINSIGHTS_CONNECTION_STRING
value: ${APPLICATIONINSIGHTS_CONNECTION_STRING}
- name: InstrumentationKey
value: ${APPLICATIONINSIGHTS_CONNECTION_STRING}
resources:
- name: "gpt-5-mini"
kind: model
id: gpt-5-mini
- name: "gpt-4.1-mini"
kind: model
id: gpt-4.1-mini
Loading