mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-07 09:01:29 +00:00
13 lines
239 B
C#
13 lines
239 B
C#
using Microsoft.AutoGen.Agents.Runtime;
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.AddServiceDefaults();
|
|
builder.AddAgentService();
|
|
|
|
var app = builder.Build();
|
|
|
|
app.MapDefaultEndpoints();
|
|
app.MapAgentService();
|
|
|
|
app.Run();
|