Install
dotnet add package Microsoft.Agents.AIGA 1.0 unified .NET SDK that merges Semantic Kernel and AutoGen. Build C# agents with ChatClientAgent, orchestrate multi-agent workflows, integrate with Azure AI services via managed identity, and stream via SignalR or SSE.
Install
dotnet add package Microsoft.Agents.AIVersion
v1.0.1 · April 2026 · .NET 8.0+
Best for
Enterprise .NET agents, Azure-native deployments, RBAC, multi-agent orchestration.
IChatClient: Azure OpenAI, OpenAI, Anthropic Claude, Amazon Bedrock, Google Gemini, Ollama.using Microsoft.Agents.AI;using Azure.AI.OpenAI;
var client = new AzureOpenAIClient( new Uri(Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT")!), new DefaultAzureCredential());
var agent = new ChatClientAgent( chatClient: client.GetChatClient("gpt-4o"), instructions: "You are a helpful assistant.");
var response = await agent.RunAsync("What is 15 + 27?");Console.WriteLine(response.Text);Ready? Start Zero → Hero Step 1 →
| Date | Version | Changes |
|---|---|---|
| 2026-04-21 | 1.0.1 | Index redesigned with Zero → Hero + Jump-to-topic grid. |
| April 10, 2026 | 1.0.1 | Patch release. |
| April 3-7, 2026 | 1.0 GA | GA; stable APIs; first-party connectors; Azure App Service. |
| November 2025 | 1.0 Preview | Initial .NET guide. |
Other languages: Python.