Devlooped.Agents.AI
0.9.0-beta
Prefix Reserved
See the version list below for details.
dotnet add package Devlooped.Agents.AI --version 0.9.0-beta
NuGet\Install-Package Devlooped.Agents.AI -Version 0.9.0-beta
<PackageReference Include="Devlooped.Agents.AI" Version="0.9.0-beta" />
<PackageVersion Include="Devlooped.Agents.AI" Version="0.9.0-beta" />
<PackageReference Include="Devlooped.Agents.AI" />
paket add Devlooped.Agents.AI --version 0.9.0-beta
#r "nuget: Devlooped.Agents.AI, 0.9.0-beta"
#:package Devlooped.Agents.AI@0.9.0-beta
#addin nuget:?package=Devlooped.Agents.AI&version=0.9.0-beta&prerelease
#tool nuget:?package=Devlooped.Agents.AI&version=0.9.0-beta&prerelease
Extensions for Microsoft.Agents.AI, such as configuration-driven auto-reloading agents.
Open Source Maintenance Fee
To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an Open Source Maintenance Fee. While the source code is freely available under the terms of the License, this package and other aspects of the project require adherence to the Maintenance Fee.
To pay the Maintenance Fee, become a Sponsor at the proper OSMF tier. A single fee covers all of Devlooped packages.
Overview
Microsoft.Agents.AI (aka Agent Framework is a comprehensive API for building AI agents. Its programatic model (which follows closely the Microsoft.Extensions.AI approach) provides maximum flexibility with little prescriptive structure.
This package provides additional extensions to make developing agents easier and more declarative.
Configurable Agents
Tweaking agent options such as description, instructions, chat client to use and its options, etc. is very common during development/testing. This package provides the ability to drive those settings from configuration (with auto-reload support). This makes it far easier to experiment with various combinations of agent instructions, chat client providers and options, and model parameters without changing code, recompiling or even restarting the application:
This example shows integration with configurable chat clients feature from the
Devlooped.Extensions.AI package, but any IChatClient registered in the DI container
with a matching key can be used.
{
"AI": {
"Agents": {
"MyAgent": {
"Description": "An AI agent that helps with customer support.",
"Instructions": "You are a helpful assistant for customer support.",
"Client": "Grok",
"Options": {
"ModelId": "grok-4",
"Temperature": 0.5,
}
}
},
"Clients": {
"Grok": {
"Endpoint": "https://api.grok.ai/v1",
"ModelId": "grok-4-fast-non-reasoning",
"ApiKey": "xai-asdf"
}
}
}
}
var host = new HostApplicationBuilder(args);
host.Configuration.AddJsonFile("appsettings.json, optional: false, reloadOnChange: true);
// 👇 implicitly calls AddChatClients
host.AddAIAgents();
var app = host.Build();
var agent = app.Services.GetRequiredKeyedService<AIAgent>("MyAgent");
Agents are also properly registered in the corresponding Microsoft Agent Framework AgentCatalog:
var catalog = app.Services.GetRequiredService<AgentCatalog>();
await foreach (AIAgent agent in catalog.GetAgentsAsync())
{
var metadata = agent.GetService<AIAgentMetadata>();
Console.WriteLine($"Agent: {agent.Name} by {metadata.ProviderName}");
}
Sponsors
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Devlooped.Extensions.AI (>= 0.9.0-beta)
- Microsoft.Agents.AI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.AzureAI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.Hosting (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.OpenAI (>= 1.0.0-preview.251009.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.9)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Logging (>= 9.0.9)
-
net8.0
- Devlooped.Extensions.AI (>= 0.9.0-beta)
- Microsoft.Agents.AI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.AzureAI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.Hosting (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.OpenAI (>= 1.0.0-preview.251009.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.9)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Logging (>= 9.0.9)
-
net9.0
- Devlooped.Extensions.AI (>= 0.9.0-beta)
- Microsoft.Agents.AI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.AzureAI (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.Hosting (>= 1.0.0-preview.251009.1)
- Microsoft.Agents.AI.OpenAI (>= 1.0.0-preview.251009.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.9)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.9)
- Microsoft.Extensions.Logging (>= 9.0.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.9.0-rc.2 | 128 | 11/5/2025 |
| 0.9.0-rc.1 | 138 | 10/29/2025 |
| 0.9.0-rc | 125 | 10/27/2025 |
| 0.9.0-beta | 52 | 10/17/2025 |
