mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
69225b4aa2
* change namespaces for agents and extension methods of the Microsoft.Agents.AI.OpenAI package * remove unnecessary namespace * remove unused namespaces * fix compilation issues and rrolled back removed run methods * sort usings * add extension methods for AIAgent to work with OpenAI Responses primitives * Move OpenAIChatClientAgent and OpenAIResponseClientAgent to samples * sort usings * sort usings
69225b4aa2
ยท
2025-12-09 12:58:44 +00:00
History
Creating an Agent from a ChatClient
This sample demonstrates how to create an AI agent directly from an OpenAI.Chat.ChatClient instance using the OpenAIChatClientAgent class.
What This Sample Shows
- Direct ChatClient Creation: Shows how to create an
OpenAI.Chat.ChatClientfromOpenAI.OpenAIClientand then use it to instantiate an agent - OpenAIChatClientAgent: Demonstrates using the OpenAI SDK primitives instead of the ones from Microsoft.Extensions.AI and Microsoft.Agents.AI abstractions
- Full Agent Capabilities: Shows both regular and streaming invocation of the agent
Running the Sample
-
Set the required environment variables:
set OPENAI_API_KEY=your_api_key_here set OPENAI_MODEL=gpt-4o-mini -
Run the sample:
dotnet run