Library for creating agents using Microsoft Agent SDK
$ dotnet add package Microsoft.Agents.Hosting.AspNetCore| Version | Date | Changelog |
|---|---|---|
| 1.2.0 | 2025-08-19 | Detailed Changelog |
| 1.3.0 | 2025-10-22 | Detailed Changelog |
builder.AddAgent<TAgent>();
Or
builder.AddAgent(sp =>
{
var options = new AgentApplicationOptions()
{
};
var app = new AgentApplication(options);
return app;
});