// Copyright (c) Microsoft. All rights reserved. using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Agents.AI.Workflows.Specialized; using Microsoft.Shared.Diagnostics; namespace Microsoft.Agents.AI.Workflows; /// /// Provides a builder for specifying group chat relationships between agents and building the resulting workflow. /// public sealed class GroupChatWorkflowBuilder : OrchestrationBuilderBase { private readonly Func, GroupChatManager> _managerFactory; private readonly HashSet _participants = new(AIAgentIDEqualityComparer.Instance); internal GroupChatWorkflowBuilder(Func, GroupChatManager> managerFactory) => this._managerFactory = managerFactory; /// /// Adds the specified as participants to the group chat workflow. /// /// The agents to add as participants. /// This instance of the . public GroupChatWorkflowBuilder AddParticipants(params IEnumerable agents) { Throw.IfNull(agents); foreach (var agent in agents) { if (agent is null) { Throw.ArgumentNullException(nameof(agents), "One or more target agents are null."); } this._participants.Add(agent); } return this; } /// /// Builds a composed of agents that operate via group chat, with the next /// agent to process messages selected by the group chat manager. /// /// The workflow built based on the group chat in the builder. public Workflow Build() { AIAgent[] agents = this._participants.ToArray(); // GroupChatHost owns the canonical conversation and broadcasts messages directly to every // participant. Participants therefore must not echo their incoming messages back to the host // (which would cause duplicates), but must still reframe other agents' assistant messages as // user messages so each agent's own session reads coherently. AIAgentHostOptions options = new() { ReassignOtherAgentsAsUsers = true, ForwardIncomingMessages = false }; Dictionary agentMap = agents.ToDictionary(a => a, a => a.BindAsExecutor(options)); Func> groupChatHostFactory = (id, sessionId) => new(new GroupChatHost(id, agents, agentMap, this._managerFactory)); ExecutorBinding host = groupChatHostFactory.BindExecutor(nameof(GroupChatHost)); WorkflowBuilder builder = new(host); this.ApplyMetadata(builder); foreach (var participant in agentMap.Values) { builder .AddEdge(host, participant) .AddEdge(participant, host); } this.ApplyOutputDesignations(builder, agentMap, "group chat", () => { builder.WithOutputFrom(host); if (agentMap.Count > 0) { builder.WithIntermediateOutputFrom([.. agentMap.Values]); } }); return builder.Build(); } }