├── .devcontainer └── devcontainer.json ├── .env.sample ├── .github └── workflows │ └── nightly-notebook-tests.yml ├── .gitignore ├── 01-agent-basics ├── 01.1-azure_ai_agents_foundry_sdk_tutorial.ipynb ├── 01.2-azure_ai_agents_semantic_kernel_tutorial.ipynb ├── 01.3-python_with_statement_agents_tutorial.ipynb ├── README.md └── images │ ├── single_agent.gif │ └── single_agent_with_sk.gif ├── 02-agent-custom-functions ├── 02.1-azure_ai_agents_functions_foundry_sdk_tutorial.ipynb ├── 02.2-azure_ai_agents_semantic_kernel_plugins_tutorial.ipynb ├── README.md └── images │ └── sk_plugins.gif ├── 03-orchestrated-agents ├── 03.1-concurrent_and_sequential_orchestration_tutorial.ipynb ├── 03.2-connected_agents_tutorial.ipynb ├── README.md └── images │ ├── concurrent_orchestration.gif │ ├── connected_agents.gif │ └── sequential_orchestration.gif ├── 04-orchestrated-agents-with-tools ├── 04.1-openapi_currency_exchange_tutorial.ipynb ├── 04.2-hybrid_openapi_and_plugins_tutorial.ipynb ├── 04.3-logic_apps_hybrid_tutorial.ipynb ├── README.md ├── bank_transactions_api.py ├── images │ ├── azure_tools.gif │ ├── lightning.png │ ├── logic-app-trigger.png │ ├── logic-app.png │ ├── send-email.png │ └── sk_plugins.gif └── openapi_files │ └── currency_exchange.json ├── 05-orchestrated-agents-with-custom-openapi-tools ├── 05.1-fastapi_openapi_tutorial.ipynb ├── Dockerfile ├── README.md ├── aci_requirements.txt ├── arm │ └── main.json ├── azure.yaml ├── bank_transactions_api.py ├── definition_openapi.json ├── images │ └── sk_orchestration.gif ├── infra │ ├── main.bicep │ ├── main.parameters.json │ └── modules │ │ ├── acr-build.bicep │ │ ├── app.bicep │ │ ├── container-apps.bicep │ │ ├── container-registry.bicep │ │ ├── monitoring.bicep │ │ └── uami.bicep └── shells │ └── rebuild-acr-task.sh ├── 06-magentic-one-orchestration ├── 06.1-magentic_creative_writing_tutorial.ipynb ├── 06.2-magentic_bing_search_orchestration_tutorial.ipynb ├── README.md └── images │ └── sk_orchestration.gif ├── 07-voice-orchestration ├── 07.1-voice-currency-exchange-demo.py ├── README.md ├── images │ └── voice_agent.gif ├── openapi_files │ └── currency_exchange.json ├── requirements.txt └── voice.py ├── 08-agent-routing ├── 08.1-azure_ai_agent_routing_tutorial.ipynb ├── README.md ├── images │ └── router.gif └── plugins.py ├── Azure AI Agent Orchestration.pptx ├── LOCAL_CONFIG.MD ├── NOTEBOOK_TEST_RUNNER.md ├── README.md ├── agents_playbook_llm_helper.txt ├── exercises ├── EXERCISES.md ├── openapi_files │ └── stock_market.json └── solutions │ ├── exercise_1 │ └── exercise_1_personal_assistant.py │ └── exercise_2 │ ├── openapi_files │ └── stock_market.json │ ├── voice.py │ └── voice_stock_agent.py ├── notebook_test_runner.py ├── pyproject.toml └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/workflows/nightly-notebook-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/.github/workflows/nightly-notebook-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/.gitignore -------------------------------------------------------------------------------- /01-agent-basics/01.1-azure_ai_agents_foundry_sdk_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/01.1-azure_ai_agents_foundry_sdk_tutorial.ipynb -------------------------------------------------------------------------------- /01-agent-basics/01.2-azure_ai_agents_semantic_kernel_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/01.2-azure_ai_agents_semantic_kernel_tutorial.ipynb -------------------------------------------------------------------------------- /01-agent-basics/01.3-python_with_statement_agents_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/01.3-python_with_statement_agents_tutorial.ipynb -------------------------------------------------------------------------------- /01-agent-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/README.md -------------------------------------------------------------------------------- /01-agent-basics/images/single_agent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/images/single_agent.gif -------------------------------------------------------------------------------- /01-agent-basics/images/single_agent_with_sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/01-agent-basics/images/single_agent_with_sk.gif -------------------------------------------------------------------------------- /02-agent-custom-functions/02.1-azure_ai_agents_functions_foundry_sdk_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/02-agent-custom-functions/02.1-azure_ai_agents_functions_foundry_sdk_tutorial.ipynb -------------------------------------------------------------------------------- /02-agent-custom-functions/02.2-azure_ai_agents_semantic_kernel_plugins_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/02-agent-custom-functions/02.2-azure_ai_agents_semantic_kernel_plugins_tutorial.ipynb -------------------------------------------------------------------------------- /02-agent-custom-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/02-agent-custom-functions/README.md -------------------------------------------------------------------------------- /02-agent-custom-functions/images/sk_plugins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/02-agent-custom-functions/images/sk_plugins.gif -------------------------------------------------------------------------------- /03-orchestrated-agents/03.1-concurrent_and_sequential_orchestration_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/03.1-concurrent_and_sequential_orchestration_tutorial.ipynb -------------------------------------------------------------------------------- /03-orchestrated-agents/03.2-connected_agents_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/03.2-connected_agents_tutorial.ipynb -------------------------------------------------------------------------------- /03-orchestrated-agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/README.md -------------------------------------------------------------------------------- /03-orchestrated-agents/images/concurrent_orchestration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/images/concurrent_orchestration.gif -------------------------------------------------------------------------------- /03-orchestrated-agents/images/connected_agents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/images/connected_agents.gif -------------------------------------------------------------------------------- /03-orchestrated-agents/images/sequential_orchestration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/03-orchestrated-agents/images/sequential_orchestration.gif -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/04.1-openapi_currency_exchange_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/04.1-openapi_currency_exchange_tutorial.ipynb -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/04.2-hybrid_openapi_and_plugins_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/04.2-hybrid_openapi_and_plugins_tutorial.ipynb -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/04.3-logic_apps_hybrid_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/04.3-logic_apps_hybrid_tutorial.ipynb -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/README.md -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/bank_transactions_api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/azure_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/azure_tools.gif -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/lightning.png -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/logic-app-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/logic-app-trigger.png -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/logic-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/logic-app.png -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/send-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/send-email.png -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/images/sk_plugins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/images/sk_plugins.gif -------------------------------------------------------------------------------- /04-orchestrated-agents-with-tools/openapi_files/currency_exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/04-orchestrated-agents-with-tools/openapi_files/currency_exchange.json -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/05.1-fastapi_openapi_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/05.1-fastapi_openapi_tutorial.ipynb -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/Dockerfile -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/README.md -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/aci_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/aci_requirements.txt -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/arm/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/arm/main.json -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/azure.yaml -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/bank_transactions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/bank_transactions_api.py -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/definition_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/definition_openapi.json -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/images/sk_orchestration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/images/sk_orchestration.gif -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/main.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/main.parameters.json -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/acr-build.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/acr-build.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/app.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/container-apps.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/container-registry.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/monitoring.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/infra/modules/uami.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/infra/modules/uami.bicep -------------------------------------------------------------------------------- /05-orchestrated-agents-with-custom-openapi-tools/shells/rebuild-acr-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/05-orchestrated-agents-with-custom-openapi-tools/shells/rebuild-acr-task.sh -------------------------------------------------------------------------------- /06-magentic-one-orchestration/06.1-magentic_creative_writing_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/06-magentic-one-orchestration/06.1-magentic_creative_writing_tutorial.ipynb -------------------------------------------------------------------------------- /06-magentic-one-orchestration/06.2-magentic_bing_search_orchestration_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/06-magentic-one-orchestration/06.2-magentic_bing_search_orchestration_tutorial.ipynb -------------------------------------------------------------------------------- /06-magentic-one-orchestration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/06-magentic-one-orchestration/README.md -------------------------------------------------------------------------------- /06-magentic-one-orchestration/images/sk_orchestration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/06-magentic-one-orchestration/images/sk_orchestration.gif -------------------------------------------------------------------------------- /07-voice-orchestration/07.1-voice-currency-exchange-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/07.1-voice-currency-exchange-demo.py -------------------------------------------------------------------------------- /07-voice-orchestration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/README.md -------------------------------------------------------------------------------- /07-voice-orchestration/images/voice_agent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/images/voice_agent.gif -------------------------------------------------------------------------------- /07-voice-orchestration/openapi_files/currency_exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/openapi_files/currency_exchange.json -------------------------------------------------------------------------------- /07-voice-orchestration/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/requirements.txt -------------------------------------------------------------------------------- /07-voice-orchestration/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/07-voice-orchestration/voice.py -------------------------------------------------------------------------------- /08-agent-routing/08.1-azure_ai_agent_routing_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/08-agent-routing/08.1-azure_ai_agent_routing_tutorial.ipynb -------------------------------------------------------------------------------- /08-agent-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/08-agent-routing/README.md -------------------------------------------------------------------------------- /08-agent-routing/images/router.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/08-agent-routing/images/router.gif -------------------------------------------------------------------------------- /08-agent-routing/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/08-agent-routing/plugins.py -------------------------------------------------------------------------------- /Azure AI Agent Orchestration.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/Azure AI Agent Orchestration.pptx -------------------------------------------------------------------------------- /LOCAL_CONFIG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/LOCAL_CONFIG.MD -------------------------------------------------------------------------------- /NOTEBOOK_TEST_RUNNER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/NOTEBOOK_TEST_RUNNER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/README.md -------------------------------------------------------------------------------- /agents_playbook_llm_helper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/agents_playbook_llm_helper.txt -------------------------------------------------------------------------------- /exercises/EXERCISES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/EXERCISES.md -------------------------------------------------------------------------------- /exercises/openapi_files/stock_market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/openapi_files/stock_market.json -------------------------------------------------------------------------------- /exercises/solutions/exercise_1/exercise_1_personal_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/solutions/exercise_1/exercise_1_personal_assistant.py -------------------------------------------------------------------------------- /exercises/solutions/exercise_2/openapi_files/stock_market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/solutions/exercise_2/openapi_files/stock_market.json -------------------------------------------------------------------------------- /exercises/solutions/exercise_2/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/solutions/exercise_2/voice.py -------------------------------------------------------------------------------- /exercises/solutions/exercise_2/voice_stock_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/exercises/solutions/exercise_2/voice_stock_agent.py -------------------------------------------------------------------------------- /notebook_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/notebook_test_runner.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-ai-agents-playbook/HEAD/requirements.txt --------------------------------------------------------------------------------