mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-07 00:51:38 +00:00

Moves some shared code from samples into core. complete/cleanup the rename to Microsoft.AutoGen adds new projects in AutoGen.Extensions
13 lines
238 B
C#
13 lines
238 B
C#
using Microsoft.AutoGen.Agents.Worker;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.AddServiceDefaults();
|
|
builder.AddAgentService();
|
|
|
|
var app = builder.Build();
|
|
|
|
app.MapDefaultEndpoints();
|
|
app.MapAgentService();
|
|
|
|
app.Run(); |