db620d33df
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
dotnet-build-and-test / dotnet-test-functions (push) Has been cancelled
dotnet-build-and-test / paths-filter (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Debug, windows-latest, net9.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net8.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-foundry-hosted-it (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test-check (push) Has been cancelled
dotnet-build-and-test / Integration Test Report (push) Has been cancelled
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.AI;
|
|
using Microsoft.Agents.AI.Workflows;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace WorkflowGroupChatToolApprovalSample;
|
|
|
|
/// <summary>
|
|
/// Custom GroupChatManager that selects the next speaker based on the conversation flow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This simple selector follows a predefined flow:
|
|
/// 1. QA Engineer runs tests
|
|
/// 2. DevOps Engineer checks staging and creates rollback plan
|
|
/// 3. DevOps Engineer deploys to production (triggers approval)
|
|
/// </remarks>
|
|
internal sealed class DeploymentGroupChatManager : GroupChatManager
|
|
{
|
|
private readonly IReadOnlyList<AIAgent> _agents;
|
|
|
|
public DeploymentGroupChatManager(IReadOnlyList<AIAgent> agents)
|
|
{
|
|
this._agents = agents;
|
|
}
|
|
|
|
protected override ValueTask<AIAgent> SelectNextAgentAsync(
|
|
IReadOnlyList<ChatMessage> history,
|
|
CancellationToken cancellationToken = default)
|
|
{
|
|
if (history.Count == 0)
|
|
{
|
|
throw new InvalidOperationException("Conversation is empty; cannot select next speaker.");
|
|
}
|
|
|
|
// First speaker after initial user message
|
|
if (this.IterationCount == 0)
|
|
{
|
|
AIAgent qaAgent = this._agents.First(a => a.Name == "QAEngineer");
|
|
return new ValueTask<AIAgent>(qaAgent);
|
|
}
|
|
|
|
// Subsequent speakers are DevOps Engineer
|
|
AIAgent devopsAgent = this._agents.First(a => a.Name == "DevOpsEngineer");
|
|
return new ValueTask<AIAgent>(devopsAgent);
|
|
}
|
|
}
|