You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 261 B

1234567891011121314
  1. using Microsoft.AI.Agents.Worker;
  2. var builder = WebApplication.CreateBuilder(args);
  3. builder.AddServiceDefaults();
  4. builder.AddAgentService();
  5. var app = builder.Build();
  6. app.MapAgentService();
  7. app.UseExceptionHandler();
  8. app.MapDefaultEndpoints();
  9. app.Run();