forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
841 lines (738 loc) · 38.1 KB
/
Copy pathProgram.cs
File metadata and controls
841 lines (738 loc) · 38.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
// @region[weather-tool-backend]
using Microsoft.Agents.AI;
using Microsoft.Agents.AI.Hosting.AGUI.AspNetCore;
using Microsoft.AspNetCore.Http.Json;
using Microsoft.Extensions.AI;
using Microsoft.Extensions.Options;
using OpenAI;
using System.ClientModel;
using System.ComponentModel;
using System.Net.Http;
using System.Text.Json;
using System.Text.Json.Serialization;
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
builder.Services.ConfigureHttpJsonOptions(options =>
{
options.SerializerOptions.TypeInfoResolverChain.Add(SalesAgentSerializerContext.Default);
// Serialize our enum types (SalesStage, Currency, FlightStatus) as their
// member name strings rather than numeric ordinals. This keeps the wire
// format human-readable and stable across enum re-ordering.
options.SerializerOptions.Converters.Add(new JsonStringEnumConverter());
});
builder.Services.AddAGUI();
WebApplication app = builder.Build();
// STOPGAP: Extract x-* prefixed headers from incoming AG-UI requests into AsyncLocal
// so AimockHeaderPolicy can forward them to outgoing OpenAI calls.
// TODO(copilotkit-sdk-dotnet): migrate to SDK-level header propagation
app.UseMiddleware<AimockHeaderMiddleware>();
// Create the agent factory and map the AG-UI agent endpoint
var loggerFactory = app.Services.GetRequiredService<ILoggerFactory>();
var jsonOptions = app.Services.GetRequiredService<IOptions<JsonOptions>>();
var agentFactory = new SalesAgentFactory(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/", agentFactory.CreateSalesAgent());
var d5ParityFactory = new D5ParityAgentFactory(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/headless-complete", d5ParityFactory.CreateHeadlessCompleteAgent());
app.MapAGUI("/voice", d5ParityFactory.CreateVoiceAgent());
app.MapAGUI("/gen-ui-agent", d5ParityFactory.CreateGenUiAgent());
app.MapAGUI("/gen-ui-tool-based", d5ParityFactory.CreateGenUiToolBasedAgent());
app.MapAGUI("/shared-state-streaming", d5ParityFactory.CreateSharedStateStreamingAgent());
app.MapAGUI("/readonly-state-agent-context", d5ParityFactory.CreateReadonlyStateAgentContext());
app.MapAGUI("/tool-rendering", d5ParityFactory.CreateToolRenderingAgent(reasoning: false));
app.MapAGUI("/tool-rendering-reasoning-chain", d5ParityFactory.CreateToolRenderingAgent(reasoning: true));
// Interrupt-adapted agent: mounted on its own path so the Next.js runtime
// can proxy the `gen-ui-interrupt` and `interrupt-headless` demo names to
// it. The two demos share this single backend — the differentiation happens
// on the frontend (in-chat picker vs. headless/app-surface picker).
var interruptAgentFactory = new InterruptAgentFactory(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/interrupt-adapted", interruptAgentFactory.CreateInterruptAgent());
// Multimodal demo agent (vision-capable gpt-4o-mini, no tools).
// The Microsoft AG-UI ASP.NET adapter currently rejects AG-UI content arrays
// before the agent can see image/document parts, so this one endpoint parses
// the request body directly and emits the small AG-UI SSE event subset the
// chat UI needs for text streaming.
app.MapPost("/multimodal", (HttpContext context) => MultimodalEndpoint.HandleAsync(
context,
agentFactory.CreateMultimodalChatClient(),
loggerFactory.CreateLogger("MultimodalEndpoint")));
// Beautiful Chat flagship demo.
app.MapAGUI("/beautiful-chat", agentFactory.CreateBeautifulChatAgent());
// Agent Config demo — wraps a basic ChatClientAgent in AgentConfigAgent.
app.MapAGUI("/agent-config", agentFactory.CreateAgentConfigAgent());
// Reasoning demo — wraps a basic ChatClientAgent in ReasoningAgent via a
// static factory that builds its own chat client off the shared OpenAI client.
app.MapAGUI("/reasoning", agentFactory.CreateReasoningAgent());
// Declarative Gen UI (instance factory — builds its own chat client).
var declarativeGenUiAgent = new DeclarativeGenUiAgent(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/declarative-gen-ui", declarativeGenUiAgent.Create());
// A2UI fixed-schema demo (instance factory).
var a2uiFixedSchemaAgent = new A2uiFixedSchemaAgent(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/a2ui-fixed-schema", a2uiFixedSchemaAgent.Create());
// Open Generative UI — basic + advanced.
var openGenUiFactory = new OpenGenUiAgentFactory(builder.Configuration);
app.MapAGUI("/open-gen-ui", openGenUiFactory.CreateAgent());
var openGenUiAdvancedFactory = new OpenGenUiAdvancedAgentFactory(builder.Configuration);
app.MapAGUI("/open-gen-ui-advanced", openGenUiAdvancedFactory.CreateAgent());
// BYOC demos (hashbrown + json-render).
var byocHashbrownFactory = new ByocHashbrownAgentFactory(builder.Configuration, loggerFactory);
app.MapAGUI("/byoc-hashbrown", byocHashbrownFactory.CreateAgent());
var byocJsonRenderFactory = new ByocJsonRenderAgentFactory(builder.Configuration, loggerFactory);
app.MapAGUI("/byoc-json-render", byocJsonRenderFactory.CreateAgent());
// MCP Apps demo.
var mcpAppsFactory = new McpAppsAgentFactory(builder.Configuration, loggerFactory);
app.MapAGUI("/mcp-apps", mcpAppsFactory.CreateMcpAppsAgent());
// In-app HITL demo.
var hitlInAppFactory = new HitlInAppAgentFactory(builder.Configuration, loggerFactory);
app.MapAGUI("/hitl-in-app", hitlInAppFactory.CreateHitlInAppAgent());
// In-chat HITL demo (useHumanInTheLoop). The `book_call` tool is defined
// entirely on the frontend via the hook; this backend is a plain
// ChatClientAgent with a system prompt that nudges the model to call it.
// See agent/HitlInChatAgent.cs.
var hitlInChatFactory = new HitlInChatAgentFactory(builder.Configuration, loggerFactory);
app.MapAGUI("/hitl-in-chat", hitlInChatFactory.CreateHitlInChatAgent());
// Shared State (Read + Write) demo. UI owns `preferences`, agent owns
// `notes` via a `set_notes` tool. See agent/SharedStateReadWriteAgent.cs
// for the pattern.
var sharedStateReadWriteFactory = new SharedStateReadWriteAgentFactory(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/shared-state-read-write", sharedStateReadWriteFactory.CreateAgent());
// Sub-Agents demo. Supervisor delegates to research / writing / critique
// sub-agents via tools, recording each delegation in shared state for the
// UI's live delegation log. See agent/SubagentsAgent.cs.
var subagentsFactory = new SubagentsAgentFactory(builder.Configuration, loggerFactory, jsonOptions.Value.SerializerOptions);
app.MapAGUI("/subagents", subagentsFactory.CreateAgent());
app.MapGet("/health", () => Results.Ok(new { status = "ok" }));
await app.RunAsync();
// =================
// State Management
// =================
// Stage of a deal in the sales pipeline. Modeled as an enum so callers and
// the LLM's structured output both get a closed set of legal values, rather
// than a free-form string that can drift. Serialized as the
// enum member name via JsonStringEnumConverter on the JsonSerializerOptions.
public enum SalesStage
{
Prospect,
Qualified,
Proposal,
Negotiation,
ClosedWon,
ClosedLost,
}
// Currency code for deal values. Small closed set covers the demo use cases.
// Previously `Value` was an `int` with no currency indication at all; we now
// carry currency + decimal amount together.
public enum Currency
{
USD,
EUR,
GBP,
JPY,
}
public record SalesTodo
{
/// <summary>
/// The stable identifier for this todo.
/// </summary>
/// <remarks>
/// The empty string is a load-bearing sentinel meaning "no id yet;
/// server should assign one". <see cref="SalesState.ReplaceTodos"/>
/// backfills any todo with <c>Id == ""</c> by generating a fresh Guid
/// (see that method's documentation). Callers that want to express
/// "pending, please assign" should use <see cref="NewPending"/> rather
/// than constructing with an arbitrary placeholder string.
///
/// <see langword="required"/> is retained for compile-time presence so
/// callers have to acknowledge the id contract, but runtime validation
/// does NOT reject the empty-string sentinel — that would break the
/// server-assigned-id path described above.
/// </remarks>
[JsonPropertyName("id")]
public required string Id { get; init; }
/// <summary>
/// Factory for "pending" todos: creates a SalesTodo with a
/// freshly-generated Guid-derived id so the empty-string sentinel never
/// leaks into code that doesn't understand the backfill contract.
/// </summary>
public static SalesTodo NewPending(
string title = "",
SalesStage stage = SalesStage.Prospect,
decimal value = 0m,
Currency currency = Currency.USD,
DateOnly? dueDate = null,
string assignee = "") => new()
{
// 16 hex chars = 64 bits of entropy. 8 chars was ~32 bits and
// has a non-trivial collision risk at tens of thousands of
// todos; 16 pushes collision risk well past demo scale.
Id = Guid.NewGuid().ToString("n")[..16],
Title = title,
Stage = stage,
Value = value,
Currency = currency,
DueDate = dueDate,
Assignee = assignee,
};
[JsonPropertyName("title")]
public string Title { get; init; } = "";
[JsonPropertyName("stage")]
public SalesStage Stage { get; init; } = SalesStage.Prospect;
// Deal value as a decimal (money) with explicit currency. Previously an
// `int` with no sign or currency semantics. The init accessor validates
// non-negative — negative deal values are not a legal business state in
// this demo.
[JsonPropertyName("value")]
public decimal Value
{
get => _value;
init
{
if (value < 0m)
{
throw new ArgumentOutOfRangeException(
nameof(value),
value,
"SalesTodo.Value must be non-negative.");
}
_value = value;
}
}
private readonly decimal _value;
[JsonPropertyName("currency")]
public Currency Currency { get; init; } = Currency.USD;
// Nullable DateOnly — previously a free-form string that accepted any
// input. System.Text.Json serializes DateOnly as ISO-8601 "YYYY-MM-DD".
[JsonPropertyName("dueDate")]
public DateOnly? DueDate { get; init; }
[JsonPropertyName("assignee")]
public string Assignee { get; init; } = "";
/// <summary>
/// Whether this deal is finished (won or lost). Derived from
/// <see cref="Stage"/> so that the pair cannot disagree: a Prospect deal
/// cannot be "completed", and a ClosedWon/ClosedLost deal cannot be
/// "incomplete". Previously <c>Completed</c> was an independent bool and
/// contradictions like <c>{Stage=ClosedWon, Completed=false}</c> were
/// representable.
/// </summary>
[JsonPropertyName("completed")]
public bool Completed => Stage is SalesStage.ClosedWon or SalesStage.ClosedLost;
}
// SalesState is the server-side in-memory store, SalesStateSnapshot is the
// wire-format JSON Schema sent to the model. Previously both carried near-
// identical List<SalesTodo>. We consolidate: SalesState holds a
// read-only list behind an encapsulated replacement API, and
// SalesStateSnapshot is a minimal record that wraps the same list for
// serialization.
public sealed class SalesState
{
private IReadOnlyList<SalesTodo> _todos = Array.Empty<SalesTodo>();
/// <summary>
/// Current published todo list. Reads are lock-free: reference reads of
/// a field are atomic on .NET, and the single writer
/// (<see cref="ReplaceTodos"/>) publishes a new fully-materialized list
/// by a single reference assignment. We use <see cref="Volatile.Read{T}"/>
/// to prevent the JIT from hoisting the read past a synchronization
/// boundary on the reader side.
/// </summary>
public IReadOnlyList<SalesTodo> Todos => Volatile.Read(ref _todos);
/// <summary>
/// Atomically replaces the todo list, backfilling any todo whose
/// <see cref="SalesTodo.Id"/> is empty (or null) with a freshly-generated
/// Guid-derived id. This is the explicit contract for callers that want
/// server-assigned ids: pass a SalesTodo with <c>Id = ""</c> and this
/// method generates a stable id for it. Non-empty ids are preserved as-is.
/// </summary>
/// <remarks>
/// Generated ids are 16 hex chars (64 bits of entropy), derived from a
/// fresh <see cref="Guid"/>. The write is a single reference assignment
/// via <see cref="Volatile.Write{T}"/>, which is atomic and visible to
/// readers without a lock.
/// </remarks>
public void ReplaceTodos(IEnumerable<SalesTodo> todos)
{
ArgumentNullException.ThrowIfNull(todos);
var materialized = todos.Select(t => t with
{
// 16 hex chars = 64 bits. Previously 8 (32 bits) had a non-
// trivial collision probability at tens of thousands of todos.
Id = string.IsNullOrEmpty(t.Id) ? Guid.NewGuid().ToString("n")[..16] : t.Id,
}).ToArray();
Volatile.Write(ref _todos, materialized);
}
}
// =================
// Flight Data
// =================
// Flight operational status. StatusColor was previously a separate string
// field that could disagree with Status; we now derive color
// from this enum deterministically in FlightInfo.StatusColor.
public enum FlightStatus
{
OnTime,
Delayed,
Cancelled,
Boarding,
}
public record FlightInfo
{
[JsonPropertyName("airline")]
public string Airline { get; init; } = "";
[JsonPropertyName("airlineLogo")]
public string AirlineLogo { get; init; } = "";
[JsonPropertyName("flightNumber")]
public string FlightNumber { get; init; } = "";
[JsonPropertyName("origin")]
public string Origin { get; init; } = "";
[JsonPropertyName("destination")]
public string Destination { get; init; } = "";
[JsonPropertyName("date")]
public string Date { get; init; } = "";
[JsonPropertyName("departureTime")]
public string DepartureTime { get; init; } = "";
[JsonPropertyName("arrivalTime")]
public string ArrivalTime { get; init; } = "";
[JsonPropertyName("duration")]
public string Duration { get; init; } = "";
// Status as enum. Previously `Status` and `StatusColor` were
// independent free-form strings that could disagree (e.g. "On Time" with
// color "red"). Now StatusColor is derived from Status and the pair is
// guaranteed consistent.
[JsonPropertyName("status")]
public FlightStatus Status { get; init; } = FlightStatus.OnTime;
[JsonPropertyName("statusColor")]
public string StatusColor => Status switch
{
FlightStatus.OnTime => "green",
FlightStatus.Delayed => "yellow",
FlightStatus.Cancelled => "red",
FlightStatus.Boarding => "blue",
_ => "gray",
};
// Price as decimal (money) + separate Currency enum. The
// old shape carried both a display string like "$342" AND a currency
// code "USD" — redundant and easy to get out of sync.
[JsonPropertyName("price")]
public decimal Price { get; init; }
[JsonPropertyName("currency")]
public Currency Currency { get; init; } = Currency.USD;
}
// =================
// Agent Factory
// =================
public class SalesAgentFactory
{
private const string DefaultOpenAiEndpoint = "https://models.inference.ai.azure.com";
private readonly IConfiguration _configuration;
private readonly SalesState _state;
private readonly OpenAIClient _openAiClient;
private readonly ILogger _logger;
private readonly ILoggerFactory _loggerFactory;
private readonly JsonSerializerOptions _jsonSerializerOptions;
public SalesAgentFactory(IConfiguration configuration, ILoggerFactory loggerFactory, JsonSerializerOptions jsonSerializerOptions)
{
_configuration = configuration;
_state = new();
_loggerFactory = loggerFactory;
_logger = loggerFactory.CreateLogger<SalesAgentFactory>();
_jsonSerializerOptions = jsonSerializerOptions;
// Get the GitHub token from configuration
var githubToken = _configuration["GitHubToken"]
?? throw new InvalidOperationException(
"GitHubToken not found in configuration. " +
"Please set it using: dotnet user-secrets set GitHubToken \"<your-token>\" " +
"or get it using: gh auth token");
// Log the resolved OpenAI endpoint at startup so operators can tell
// whether we're hitting a custom OPENAI_BASE_URL or falling back to the
// GitHub Models / Azure default. Previously the fallback was silent.
var endpointEnv = Environment.GetEnvironmentVariable("OPENAI_BASE_URL");
var endpoint = endpointEnv ?? DefaultOpenAiEndpoint;
if (string.IsNullOrEmpty(endpointEnv))
{
_logger.LogInformation(
"OPENAI_BASE_URL not set; using default OpenAI endpoint: {Endpoint}", endpoint);
}
else
{
_logger.LogInformation("Using OpenAI endpoint from OPENAI_BASE_URL: {Endpoint}", endpoint);
}
_openAiClient = new(
new ApiKeyCredential(githubToken),
AimockHeaderPolicy.CreateOpenAIClientOptions(endpoint));
}
public AIAgent CreateSalesAgent()
{
var chatClient = _openAiClient.GetChatClient("gpt-4o-mini").AsIChatClient();
var chatClientAgent = new ChatClientAgent(
chatClient,
name: "SalesAgent",
description: @"A helpful assistant that helps manage a sales pipeline.
You have tools available to get, update, and query sales data.
You can search for flights and generate dynamic UI.
When discussing deals or the pipeline, ALWAYS use the get_sales_todos tool to see the current state before mentioning, updating, or discussing deals with the user.",
tools: [
AIFunctionFactory.Create(GetSalesTodos, options: new() { Name = "get_sales_todos", SerializerOptions = _jsonSerializerOptions }),
AIFunctionFactory.Create(ManageSalesTodos, options: new() { Name = "manage_sales_todos", SerializerOptions = _jsonSerializerOptions }),
AIFunctionFactory.Create(QueryData, options: new() { Name = "query_data", SerializerOptions = _jsonSerializerOptions }),
AIFunctionFactory.Create(GetWeather, options: new() { Name = "get_weather", SerializerOptions = _jsonSerializerOptions }),
AIFunctionFactory.Create(SearchFlights, options: new() { Name = "search_flights", SerializerOptions = _jsonSerializerOptions }),
AIFunctionFactory.Create(GenerateA2ui, options: new() { Name = "generate_a2ui", SerializerOptions = _jsonSerializerOptions })
]);
return new SharedStateAgent(chatClientAgent, _jsonSerializerOptions, _loggerFactory.CreateLogger<SharedStateAgent>());
}
// Factory method for the Multimodal demo's vision-capable agent. Reuses
// the shared OpenAIClient so we don't re-resolve credentials for each
// mount. No tools — the chat model consumes attachments natively.
public AIAgent CreateMultimodalAgent() => MultimodalAgentFactory.Create(_openAiClient);
public IChatClient CreateMultimodalChatClient() =>
_openAiClient.GetChatClient("gpt-4o-mini").AsIChatClient();
// Factory method for the Beautiful Chat flagship demo. Holds its own
// per-factory tool surface + in-memory todo store so it doesn't
// interfere with the sales pipeline state owned by the main agent.
public AIAgent CreateBeautifulChatAgent()
{
var factory = new BeautifulChatAgentFactory(
_configuration,
_openAiClient,
_jsonSerializerOptions,
_loggerFactory.CreateLogger<BeautifulChatAgentFactory>());
return factory.Create();
}
// Factory method for the Agent Config demo. Wraps a neutral ChatClientAgent
// (no tools) in AgentConfigAgent so the tone/expertise/responseLength
// directives read from AG-UI shared state steer the inner model per-turn.
public AIAgent CreateAgentConfigAgent()
{
var chatClient = _openAiClient.GetChatClient("gpt-4o-mini").AsIChatClient();
var inner = new ChatClientAgent(
chatClient,
name: "AgentConfigInner",
description: "You are a helpful assistant. Follow the tone, expertise, and response-length directives in the system message for each turn.",
tools: []);
return new AgentConfigAgent(inner, _loggerFactory.CreateLogger<AgentConfigAgent>());
}
// Factory method for the Reasoning demo. Delegates to the static
// ReasoningAgentFactory.Create(...) which expects an IChatClient +
// ILoggerFactory and wraps a ChatClientAgent in a DelegatingAIAgent that
// surfaces reasoning-chain events.
public AIAgent CreateReasoningAgent()
{
var chatClient = _openAiClient.GetChatClient("gpt-4o-mini").AsIChatClient();
return ReasoningAgentFactory.Create(chatClient, _loggerFactory);
}
// =================
// Tools
// =================
[Description("Get the current sales pipeline")]
private List<SalesTodo> GetSalesTodos()
{
var todos = _state.Todos;
_logger.LogInformation("Getting sales todos: {Count} items", todos.Count);
// Return a snapshot list copy — callers (AIFunctionFactory) serialize
// this and we don't want concurrent ReplaceTodos mutating mid-serialize.
return todos.ToList();
}
[Description("Update the sales pipeline")]
private string ManageSalesTodos([Description("The updated list of sales todos")] List<SalesTodo> todos)
{
ArgumentNullException.ThrowIfNull(todos);
_logger.LogInformation("Updating sales todos: {Count} items", todos.Count);
_state.ReplaceTodos(todos);
return "Pipeline updated";
}
[Description("Query financial data for charts")]
private string QueryData([Description("The query to run")] string query)
{
_logger.LogInformation("Querying data: {Query}", query);
var categories = new[] { "Engineering", "Marketing", "Sales", "Support", "Design" };
var random = new Random();
var results = categories.Select(c => new { category = c, value = random.Next(10000, 100000), quarter = "Q1 2026" });
return JsonSerializer.Serialize(results);
}
[Description("Get the weather for a given location. Ensure location is fully spelled out.")]
private WeatherInfo GetWeather([Description("The location to get the weather for")] string location)
{
_logger.LogInformation("Getting weather for: {Location}", location);
return new()
{
City = location,
Temperature = 20,
Conditions = "sunny",
Humidity = 50,
WindSpeed = 10,
FeelsLike = 25
};
}
// @endregion[weather-tool-backend]
[Description("Search for available flights between two cities. Returns flight data with A2UI rendering.")]
private object SearchFlights(
[Description("Origin airport code or city")] string origin,
[Description("Destination airport code or city")] string destination)
{
_logger.LogInformation("Searching flights from {Origin} to {Destination}", origin, destination);
var flights = new List<FlightInfo>
{
new() { Airline = "United Airlines", AirlineLogo = "UA", FlightNumber = "UA 2451",
Origin = origin, Destination = destination, Date = "2026-05-15",
DepartureTime = "08:00", ArrivalTime = "16:35", Duration = "5h 35m",
Status = FlightStatus.OnTime, Price = 342m, Currency = Currency.USD },
new() { Airline = "Delta Air Lines", AirlineLogo = "DL", FlightNumber = "DL 1087",
Origin = origin, Destination = destination, Date = "2026-05-15",
DepartureTime = "10:30", ArrivalTime = "19:15", Duration = "5h 45m",
Status = FlightStatus.OnTime, Price = 289m, Currency = Currency.USD },
new() { Airline = "JetBlue Airways", AirlineLogo = "B6", FlightNumber = "B6 524",
Origin = origin, Destination = destination, Date = "2026-05-15",
DepartureTime = "14:15", ArrivalTime = "22:50", Duration = "5h 35m",
Status = FlightStatus.OnTime, Price = 315m, Currency = Currency.USD },
};
var flightSchema = new object[]
{
new { id = "root", component = "Row",
children = new { componentId = "flight-card", path = "/flights" }, gap = 16 },
new { id = "flight-card", component = "FlightCard",
airline = new { path = "airline" }, airlineLogo = new { path = "airlineLogo" },
flightNumber = new { path = "flightNumber" }, origin = new { path = "origin" },
destination = new { path = "destination" }, date = new { path = "date" },
departureTime = new { path = "departureTime" }, arrivalTime = new { path = "arrivalTime" },
duration = new { path = "duration" }, status = new { path = "status" },
price = new { path = "price" },
action = new { @event = new { name = "book_flight",
context = new { flightNumber = new { path = "flightNumber" },
origin = new { path = "origin" }, destination = new { path = "destination" },
price = new { path = "price" } } } } }
};
var operations = new object[]
{
new { version = "v0.9", createSurface = new { surfaceId = "flight-search-results",
catalogId = "copilotkit://app-dashboard-catalog" } },
new { version = "v0.9", updateComponents = new { surfaceId = "flight-search-results",
components = flightSchema } },
new { version = "v0.9", updateDataModel = new { surfaceId = "flight-search-results",
path = "/", value = new { flights } } }
};
return new { a2ui_operations = operations };
}
[Description("Generate dynamic A2UI components using a secondary LLM call")]
private async Task<object> GenerateA2ui(
[Description("Conversation context to generate UI from.")] string context = "",
CancellationToken cancellationToken = default)
{
context ??= "";
// Correlation id so server logs can be tied to the structured error
// we return to the caller / LLM. Callers can quote this in bug
// reports without leaking stack traces or internal paths. 16 hex
// chars = 64 bits of entropy — matches ``SalesTodo.NewPending``'s
// ``Id`` field for the same rationale; 8 chars (~32 bits) has a
// non-trivial collision risk at operational scale and we want
// errorIds to uniquely correlate log lines even across busy
// deployments.
var errorId = Guid.NewGuid().ToString("n")[..16];
var userContent = string.IsNullOrWhiteSpace(context)
? "Show me a sales dashboard with total revenue, new customers, and conversion rate metrics. Include a pie chart of revenue by category and a bar chart of monthly sales."
: context;
_logger.LogInformation("Generating A2UI (errorId={ErrorId}) for: {Request}", errorId, userContent);
// The outbound LLM call is awaited directly rather than blocked via
// .GetAwaiter().GetResult(), which would tie up a thread-pool thread
// for the full network round-trip.
//
// Exception handling is deliberately narrow: we catch only the
// expected failure modes (transport, upstream non-success, malformed
// JSON, shape mismatch, cancellation). Programmer errors like
// NullReferenceException or resource-exhaustion errors like
// OutOfMemoryException propagate unchanged so they surface in logs
// rather than being silently remapped to "upstream error". The
// user-facing structured error we return does NOT include
// ex.Message verbatim — we log the full exception server-side with
// the correlation id so operators can correlate without exposing
// provider internals to the caller.
string? content;
try
{
content = await A2uiSecondaryToolCaller.GetDesignToolArgumentsAsync(
_configuration,
"Generate a useful A2UI dashboard.",
userContent,
cancellationToken).ConfigureAwait(false);
}
catch (HttpRequestException ex)
{
_logger.LogError(ex, "GenerateA2ui (errorId={ErrorId}): upstream transport failure", errorId);
return StructuredError("upstream_unavailable", "The upstream AI service is currently unreachable. Please retry.", "Retry the request in a few seconds.", errorId);
}
catch (ClientResultException ex)
{
// Thrown by OpenAI / Microsoft.Extensions.AI when the upstream
// responds with a non-success status (rate limit, bad request,
// auth failure, etc.). We know the status but do not surface it
// verbatim to the model — avoids leaking provider internals.
_logger.LogError(ex, "GenerateA2ui (errorId={ErrorId}): upstream returned error status {Status}", errorId, ex.Status);
return StructuredError("upstream_error", "The upstream AI service returned an error.", "Try rephrasing the request or retrying later.", errorId);
}
catch (OperationCanceledException)
{
// Cancellation is a normal control-flow signal. Log at Information
// level with the correlation id so operators can tie the log entry
// to any client-side retry, but don't treat it as an error. Rethrow
// to preserve ambient cancellation semantics for the caller.
_logger.LogInformation("GenerateA2ui (errorId={ErrorId}): cancelled", errorId);
throw;
}
// result.Text can legitimately return null (upstream returned no text
// content — e.g. model refused, empty completion, content filter).
// BuildA2uiResponseFromContent requires non-null input; catching the
// null here returns a structured error instead of letting an NRE
// escape uncaught and break the structured-error contract.
if (string.IsNullOrEmpty(content))
{
_logger.LogError("GenerateA2ui (errorId={ErrorId}): upstream returned no text content", errorId);
return StructuredError("empty_llm_output", "Model returned no text content", "Retry or check model availability", errorId);
}
return BuildA2uiResponseFromContent(content, errorId, _logger);
}
/// <summary>
/// Parses an LLM-produced string into an A2UI operations payload, or a
/// structured error if the content is malformed, null, or empty. Exposed
/// as <c>internal static</c> so unit tests can exercise each error branch
/// (empty_llm_output, JsonException, shape mismatch, ArgumentException)
/// directly without standing up an OpenAI client.
/// </summary>
/// <remarks>
/// Null/empty content is reported as a structured <c>empty_llm_output</c>
/// error rather than thrown as an NRE. This matches the contract of the
/// <see cref="GenerateA2ui"/> caller (which guards null at the call site)
/// and ensures the helper itself is robust to defensive / test callers
/// that pass through whatever the upstream produced.
/// </remarks>
internal static object BuildA2uiResponseFromContent(string? content, string errorId, ILogger logger)
{
ArgumentNullException.ThrowIfNull(errorId);
ArgumentNullException.ThrowIfNull(logger);
if (string.IsNullOrEmpty(content))
{
logger.LogError("GenerateA2ui (errorId={ErrorId}): content was null or empty", errorId);
return StructuredError("empty_llm_output", "Model returned no text content", "Retry or check model availability", errorId);
}
// JsonDocument.Parse can throw JsonException on malformed input.
// This is isolated from the parse-the-shape errors below so we can
// return a precise remediation message for each failure mode.
JsonDocument? jsonDoc;
try
{
jsonDoc = JsonDocument.Parse(content);
}
catch (JsonException ex)
{
logger.LogError(ex, "GenerateA2ui (errorId={ErrorId}): LLM returned malformed JSON", errorId);
return StructuredError("malformed_llm_output", "The UI generator produced output that wasn't valid JSON.", "Ask the user to rephrase their request — the model sometimes adds explanatory text around the JSON.", errorId);
}
using (jsonDoc)
{
try
{
var args = jsonDoc.RootElement;
if (args.ValueKind != JsonValueKind.Object)
{
logger.LogError("GenerateA2ui (errorId={ErrorId}): LLM output was JSON but not an object (kind={Kind})", errorId, args.ValueKind);
return StructuredError("malformed_llm_output", "The UI generator output was JSON but not the expected object shape.", "Retry or adjust the prompt.", errorId);
}
var surfaceId = args.TryGetProperty("surfaceId", out var sid) ? sid.GetString() ?? "dynamic-surface" : "dynamic-surface";
var catalogId = args.TryGetProperty("catalogId", out var cid) ? cid.GetString() ?? "copilotkit://app-dashboard-catalog" : "copilotkit://app-dashboard-catalog";
if (!args.TryGetProperty("components", out var componentsElement) || componentsElement.ValueKind != JsonValueKind.Array)
{
logger.LogError("GenerateA2ui (errorId={ErrorId}): LLM output missing 'components' array", errorId);
return StructuredError("malformed_llm_output", "The UI generator output didn't include a components array.", "Retry the request.", errorId);
}
var ops = new List<object>
{
new { version = "v0.9", createSurface = new { surfaceId, catalogId } },
new
{
version = "v0.9",
updateComponents = new
{
surfaceId,
components = JsonSerializer.Deserialize<object[]>(componentsElement.GetRawText()),
},
},
};
if (args.TryGetProperty("data", out var dataElement) && dataElement.ValueKind != JsonValueKind.Null)
{
ops.Add(new
{
version = "v0.9",
updateDataModel = new
{
surfaceId,
path = "/",
value = JsonSerializer.Deserialize<object>(dataElement.GetRawText()),
},
});
}
return new { a2ui_operations = ops };
}
catch (JsonException ex)
{
logger.LogError(ex, "GenerateA2ui (errorId={ErrorId}): shape deserialization failed", errorId);
return StructuredError("malformed_llm_output", "The UI generator output didn't match the expected structure.", "Retry the request.", errorId);
}
catch (ArgumentException ex)
{
logger.LogError(ex, "GenerateA2ui (errorId={ErrorId}): argument validation failed", errorId);
return StructuredError("invalid_argument", "One of the arguments was invalid.", "Check the request shape and retry.", errorId);
}
}
}
// Structured error payload returned to the LLM/caller. We deliberately
// keep this short and categorical — no raw exception messages, no paths,
// no internal identifiers beyond the correlation id.
internal static object StructuredError(string category, string message, string remediation, string errorId) =>
new
{
error = category,
message,
remediation,
errorId,
};
}
// =================
// Data Models
// =================
// SalesStateSnapshot is the wire-format shape: what the model emits via
// JSON Schema and what we serialize as DataContent on the outbound side.
// Previously this was a separate mutable class that duplicated SalesState.
// To avoid the previous duplication, this is an immutable record wrapping the same list type as
// SalesState exposes, with explicit JsonPropertyName so the schema name
// doesn't drift from PascalCase to camelCase under default policies.
public sealed record SalesStateSnapshot(
[property: JsonPropertyName("todos")] IReadOnlyList<SalesTodo> Todos)
{
public SalesStateSnapshot() : this(Array.Empty<SalesTodo>()) { }
}
public class WeatherInfo
{
[JsonPropertyName("temperature")]
public int Temperature { get; init; }
[JsonPropertyName("conditions")]
public string Conditions { get; init; } = string.Empty;
[JsonPropertyName("humidity")]
public int Humidity { get; init; }
[JsonPropertyName("wind_speed")]
public int WindSpeed { get; init; }
[JsonPropertyName("feels_like")]
public int FeelsLike { get; init; }
[JsonPropertyName("city")]
public string City { get; init; } = "";
}
public partial class Program { }
// =================
// Serializer Context
// =================
[JsonSerializable(typeof(SalesStateSnapshot))]
[JsonSerializable(typeof(SalesTodo))]
[JsonSerializable(typeof(List<SalesTodo>))]
[JsonSerializable(typeof(IReadOnlyList<SalesTodo>))]
[JsonSerializable(typeof(SalesStage))]
[JsonSerializable(typeof(Currency))]
[JsonSerializable(typeof(WeatherInfo))]
[JsonSerializable(typeof(FlightInfo))]
[JsonSerializable(typeof(List<FlightInfo>))]
[JsonSerializable(typeof(FlightStatus))]
[JsonSerializable(typeof(DateOnly))]
internal sealed partial class SalesAgentSerializerContext : JsonSerializerContext;