Files
agent-framework/python/samples/getting_started/agents
T
Copilot 39566d1dbf Python: Add custom agent and chat client implementation examples (#849)
* Initial plan

* Add custom agent and chat client examples with complete implementations and documentation

Co-authored-by: dmytrostruk <13853051+dmytrostruk@users.noreply.github.com>

* Simplify custom examples per feedback: remove __init__.py, keep only EchoAgent/EchoingChatClient, add proper documentation, update README table format

Co-authored-by: dmytrostruk <13853051+dmytrostruk@users.noreply.github.com>

* Small fixes and formatting

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: dmytrostruk <13853051+dmytrostruk@users.noreply.github.com>
39566d1dbf ยท 2025-09-22 04:42:33 +00:00
History
..
2025-09-09 20:07:20 +00:00

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/ Create agents using Azure AI Foundry

Microsoft Copilot Studio Examples

Folder Description
copilotstudio/ Create agents using Microsoft Copilot Studio

Azure OpenAI Examples

Folder Description
azure_assistants_client/ Create agents using Azure OpenAI Assistants API
azure_chat_client/ Create agents using Azure OpenAI Chat Completions API
azure_responses_client/ Create agents using Azure OpenAI Responses API

OpenAI Examples

Folder Description
openai_assistants_client/ Create agents using OpenAI Assistants API
openai_chat_client/ Create agents using OpenAI Chat Completions API
openai_responses_client/ Create agents using OpenAI Responses API