mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e7cd03b32e
* Small fix in dotnet conformance tests * Added CopilotStudioAgent implementation * Added examples * Updated package README * Small fixes * Small improvements * Fixed dotnet tests * Add unit tests * Updated tests * Small updates * Small test fixes * Revert "Small test fixes" This reverts commit983ac44a70. * Small fixes in documentation * Updated test configuration * Revert "Updated test configuration" This reverts commit2a16fea815. * Small fix * Reverted TODO item * Small suppressions * More fixes * Small fixes * Fixed tests * Removed disallow_any_unimported rule in all packages * Fixes
34 lines
1.4 KiB
Markdown
34 lines
1.4 KiB
Markdown
# Agent Examples
|
|
|
|
This folder contains examples demonstrating how to create and use agents with different chat clients from the Agent Framework. Each sub-folder focuses on a specific provider and client type, showing various capabilities like function tools, code interpreter, thread management, and more.
|
|
|
|
## Examples by Provider
|
|
|
|
### Azure AI Foundry Examples
|
|
|
|
| Folder | Description |
|
|
|--------|-------------|
|
|
| **[`foundry/`](foundry/)** | Create agents using Azure AI Foundry |
|
|
|
|
### Microsoft Copilot Studio Examples
|
|
|
|
| Folder | Description |
|
|
|--------|-------------|
|
|
| **[`copilotstudio/`](copilotstudio/)** | Create agents using Microsoft Copilot Studio |
|
|
|
|
### Azure OpenAI Examples
|
|
|
|
| Folder | Description |
|
|
|--------|-------------|
|
|
| **[`azure_assistants_client/`](azure_assistants_client/)** | Create agents using Azure OpenAI Assistants API |
|
|
| **[`azure_chat_client/`](azure_chat_client/)** | Create agents using Azure OpenAI Chat Completions API |
|
|
| **[`azure_responses_client/`](azure_responses_client/)** | Create agents using Azure OpenAI Responses API |
|
|
|
|
### OpenAI Examples
|
|
|
|
| Folder | Description |
|
|
|--------|-------------|
|
|
| **[`openai_assistants_client/`](openai_assistants_client/)** | Create agents using OpenAI Assistants API |
|
|
| **[`openai_chat_client/`](openai_chat_client/)** | Create agents using OpenAI Chat Completions API |
|
|
| **[`openai_responses_client/`](openai_responses_client/)** | Create agents using OpenAI Responses API |
|