Round 3 of cleanup (#186)

- Enable warnings as errors
- Make the remaining src projects NativeAOT compatible
- Use Throw helpers
This commit is contained in:
Stephen Toub
2025-07-20 23:07:50 -04:00
committed by GitHub
parent ccd7a44ec7
commit 6c12b2c0f8
36 changed files with 223 additions and 182 deletions
@@ -84,7 +84,7 @@ public class GroupChatOrchestration_With_HumanInTheLoop(ITestOutputHelper output
/// </remarks>
private sealed class CustomRoundRobinGroupChatManager : RoundRobinGroupChatManager
{
public override ValueTask<GroupChatManagerResult<bool>> ShouldRequestUserInput(IReadOnlyCollection<ChatMessage> history, CancellationToken cancellationToken = default)
protected override ValueTask<GroupChatManagerResult<bool>> ShouldRequestUserInput(IReadOnlyCollection<ChatMessage> history, CancellationToken cancellationToken = default)
{
string? lastAgent = history.LastOrDefault()?.AuthorName;