mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Python: added inline yaml sample (#2582)
* added inline yaml sample * fixed some typos and added intro comment * added description params and pass through to client * add azure assistants * fix tests * observabiltiy mypy fix * for some reason mypy doesn't accept a subclass --------- Co-authored-by: Evan Mattson <35585003+moonbox3@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
Unverified
parent
42ffe59592
commit
d774b64df0
@@ -47,7 +47,17 @@ Shows how to create an agent that can search and retrieve information from Micro
|
||||
|
||||
**Key concepts**: Azure AI Foundry integration, MCP server usage, async patterns, resource management
|
||||
|
||||
### 3. **Azure OpenAI Responses Agent** ([`azure_openai_responses_agent.py`](./azure_openai_responses_agent.py))
|
||||
### 3. **Inline YAML Agent** ([`inline_yaml.py`](./inline_yaml.py))
|
||||
|
||||
Shows how to create an agent using an inline YAML string rather than a file.
|
||||
|
||||
- Uses Azure AI Foundry v2 Client with instructions.
|
||||
|
||||
**Requirements**: `pip install agent-framework-azure-ai --pre`
|
||||
|
||||
**Key concepts**: Inline YAML definition.
|
||||
|
||||
### 4. **Azure OpenAI Responses Agent** ([`azure_openai_responses_agent.py`](./azure_openai_responses_agent.py))
|
||||
|
||||
Illustrates a basic agent using Azure OpenAI with structured responses.
|
||||
|
||||
@@ -58,7 +68,7 @@ Illustrates a basic agent using Azure OpenAI with structured responses.
|
||||
|
||||
**Key concepts**: Azure OpenAI integration, credential management, structured outputs
|
||||
|
||||
### 4. **OpenAI Responses Agent** ([`openai_responses_agent.py`](./openai_responses_agent.py))
|
||||
### 5. **OpenAI Responses Agent** ([`openai_responses_agent.py`](./openai_responses_agent.py))
|
||||
|
||||
Demonstrates the simplest possible agent using OpenAI directly.
|
||||
|
||||
@@ -243,6 +253,7 @@ Each sample can be run independently. Make sure you have the required environmen
|
||||
# Run a specific sample
|
||||
python get_weather_agent.py
|
||||
python microsoft_learn_agent.py
|
||||
python inline_yaml.py
|
||||
python azure_openai_responses_agent.py
|
||||
python openai_responses_agent.py
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user