* Python: fix OpenAI Azure routing and provider samples Prefer OpenAI when OPENAI_API_KEY is present unless Azure is explicitly requested. Clarify constructor docs, keep deprecated Azure wrappers compatible with stricter settings validation, and refresh the provider samples and tests to use the current client patterns. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix bandit * Python: align OpenAI embedding Azure routing Extend the shared OpenAI-vs-Azure routing and credential behavior to the embedding client, add Azure embedding regression coverage, and refresh the embedding samples to use the generic client path. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: fix embedding client pyright check Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: thin OpenAI embedding wrapper Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: document embedding overload routing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: fix callable OpenAI key routing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: fix Azure credential routing tests Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: address OpenAI review feedback Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: narrow Azure routing markers Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: refine OpenAI model fallback order Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: narrow Azure deployment docs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: remove embedding routing wording Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: run embedding Azure integration tests Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * changed variable name * Python: expand OpenAI package README Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * clarified readme * Python: fix Azure OpenAI integration setup Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: correct Azure integration env mapping Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * updated code to fix int tests * test updates * test fix * fix test setup * updates to tests and setup * remove openai assistants int tests * improvements in int tests * fix env var * fix env vars * fix azure responses test * trigger actions --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
3.6 KiB
Custom Agent and Chat Client Examples
This folder contains examples demonstrating how to implement custom agents and chat clients using the Microsoft Agent Framework.
Examples
| File | Description |
|---|---|
custom_agent.py |
Shows how to create custom agents by extending the BaseAgent class. Demonstrates the EchoAgent implementation with both streaming and non-streaming responses, proper session management, and message history handling. |
custom_chat_client.py |
Demonstrates how to create custom chat clients by extending the BaseChatClient class. Shows a EchoingChatClient implementation and how to integrate it with Agent using the as_agent() method. |
Key Takeaways
Custom Agents
- Custom agents give you complete control over the agent's behavior
- You must implement both
run()for both thestream=Trueandstream=Falsecases - Use
self._normalize_messages()to handle different input message formats - Store messages in
session.stateto properly manage conversation history
Custom Chat Clients
- Custom chat clients allow you to integrate any backend service or create new LLM providers
- You must implement
_inner_get_response()with a stream parameter to handle both streaming and non-streaming responses - Custom chat clients can be used with
Agentto leverage all agent framework features - Use the
as_agent()method to easily create agents from your custom chat clients
Both approaches allow you to extend the framework for your specific use cases while maintaining compatibility with the broader Agent Framework ecosystem.
Understanding Raw Client Classes
The framework provides Raw...Client classes (e.g., RawOpenAIChatClient, RawOpenAIChatCompletionClient, RawAzureAIClient) that are intermediate implementations without middleware, telemetry, or function invocation support.
Warning: Raw Clients Should Not Normally Be Used Directly
The Raw...Client classes should not normally be used directly. They do not include the middleware, telemetry, or function invocation support that you most likely need. If you do use them, you should carefully consider which additional layers to apply.
Layer Ordering
There is a defined ordering for applying layers that you should follow:
- FunctionInvocationLayer - Handles the tool/function calling loop and should stay outermost
- ChatMiddlewareLayer - Wraps each model call in the loop and stays outside telemetry
- ChatTelemetryLayer - Must be inside the function calling loop so each model call gets its own telemetry span
- Raw...Client - The base implementation (e.g.,
RawOpenAIChatClient)
Example of correct layer composition:
class MyCustomClient(
FunctionInvocationLayer[TOptions],
ChatMiddlewareLayer[TOptions],
ChatTelemetryLayer[TOptions],
RawOpenAIChatClient[TOptions], # or BaseChatClient for custom implementations
Generic[TOptions],
):
"""Custom client with all layers correctly applied."""
pass
Use Fully-Featured Clients Instead
For most use cases, use the fully-featured public client classes which already have all layers correctly composed:
OpenAIChatCompletionClient- OpenAI Chat Completions API with all layersOpenAIChatClient- OpenAI Responses API with all layersAzureOpenAIChatClient- Azure OpenAI Chat with all layersAzureOpenAIResponsesClient- Azure OpenAI Responses with all layersAzureAIClient- Azure AI Project with all layers
These clients handle the layer composition correctly and provide the full feature set out of the box.