mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-07 17:11:06 +00:00
12 lines
238 B
C#
12 lines
238 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(); |