mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
331c750515
* refactor: remove unused internals * feat: Execution Mode for sharing a workflow among concurrent runs * feat: Update WorkflowHostAgent to support concurrent execution * Also update AsAgent APIs to support injecting a CheckpointManager and an IWorkflowExecutionEnvironment * fix: Make Read logic consistent in DeclarativeWorkflowContext
71 lines
2.6 KiB
C#
71 lines
2.6 KiB
C#
// 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;
|
|
|
|
/// <summary>
|
|
/// Provides a builder for specifying group chat relationships between agents and building the resulting workflow.
|
|
/// </summary>
|
|
public sealed class GroupChatWorkflowBuilder
|
|
{
|
|
private readonly Func<IReadOnlyList<AIAgent>, GroupChatManager> _managerFactory;
|
|
private readonly HashSet<AIAgent> _participants = new(AIAgentIDEqualityComparer.Instance);
|
|
|
|
internal GroupChatWorkflowBuilder(Func<IReadOnlyList<AIAgent>, GroupChatManager> managerFactory) =>
|
|
this._managerFactory = managerFactory;
|
|
|
|
/// <summary>
|
|
/// Adds the specified <paramref name="agents"/> as participants to the group chat workflow.
|
|
/// </summary>
|
|
/// <param name="agents">The agents to add as participants.</param>
|
|
/// <returns>This instance of the <see cref="GroupChatWorkflowBuilder"/>.</returns>
|
|
public GroupChatWorkflowBuilder AddParticipants(params IEnumerable<AIAgent> 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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Builds a <see cref="Workflow"/> composed of agents that operate via group chat, with the next
|
|
/// agent to process messages selected by the group chat manager.
|
|
/// </summary>
|
|
/// <returns>The workflow built based on the group chat in the builder.</returns>
|
|
public Workflow Build()
|
|
{
|
|
AIAgent[] agents = this._participants.ToArray();
|
|
Dictionary<AIAgent, ExecutorIsh> agentMap = agents.ToDictionary(a => a, a => (ExecutorIsh)new AgentRunStreamingExecutor(a, includeInputInOutput: true));
|
|
|
|
Func<string, string, ValueTask<Executor>> groupChatHostFactory =
|
|
(string id, string runId) => new(new GroupChatHost(id, agents, agentMap, this._managerFactory));
|
|
|
|
ExecutorIsh host = groupChatHostFactory.ConfigureFactory(nameof(GroupChatHost));
|
|
WorkflowBuilder builder = new(host);
|
|
|
|
foreach (var participant in agentMap.Values)
|
|
{
|
|
builder
|
|
.AddEdge(host, participant)
|
|
.AddEdge(participant, host);
|
|
}
|
|
|
|
return builder.WithOutputFrom(host).Build();
|
|
}
|
|
}
|