mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
190ca75b6a
* Add workflow builder edge tests Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/3c3d5324-cdcd-4a38-8c67-94e4e78e29c5 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Strengthen workflow edge helper tests Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Normalize edge helper bad input validation Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Clarify edge helper target validation Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Use explicit target parameter names Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Document workflow edge test helpers Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Clarify null element validation messages Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Add repeated chain executor coverage Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Preserve Throw helper validation style Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Cover empty switch case targets Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Relax builder null assertion parameter checks Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Inline ValidateTargets into call sites Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/cb9a6a6a-02c7-41a8-a4b4-da16ad62ef86 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Refactor ForwardExcept with TFM-specialized TryGetNonEnumeratedCount Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/b081f61f-93ce-45dc-abbd-82c465395470 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Use TFM-specialized count check: TryGetNonEnumeratedCount for NET6+, ICollection pattern for NETFX Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/8ec28a43-e7b7-456e-8d8e-921511b4accc Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Apply TFM-specialized count check to ForwardMessage as well Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/9238ea32-a3e8-4b83-9683-484ad400071f Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Address review feedback: simplify Throw.IfNull in SwitchBuilder per westey-m suggestion Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/299950fd-4457-47f3-a373-f65d601b7ea5 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Use indexed parameter name in SwitchBuilder Throw.IfNull: executors[index] Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/c5655707-5b0b-44f3-98a9-5f3961e32cfe Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Revert #if NET6_0_OR_GREATER back to #if NET; inline executorIndex++ Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/c5655707-5b0b-44f3-98a9-5f3961e32cfe Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Add comment explaining unusual Throw.IfNull use for null elements inside collection Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/c5655707-5b0b-44f3-98a9-5f3961e32cfe Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> Co-authored-by: Jacob Alber <jaalber@microsoft.com>
115 lines
4.2 KiB
C#
115 lines
4.2 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using Microsoft.Shared.Diagnostics;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows;
|
|
|
|
/// <summary>
|
|
/// Provides a builder for constructing a switch-like control flow that maps predicates to one or more executors.
|
|
/// Enables the configuration of case-based and default execution logic for dynamic input handling.
|
|
/// </summary>
|
|
public sealed class SwitchBuilder
|
|
{
|
|
private readonly List<ExecutorBinding> _executors = [];
|
|
private readonly Dictionary<string, int> _executorIndicies = [];
|
|
private readonly List<(Func<object?, bool> Predicate, HashSet<int> OutgoingIndicies)> _caseMap = [];
|
|
private readonly HashSet<int> _defaultIndicies = [];
|
|
|
|
/// <summary>
|
|
/// Adds a case to the switch builder that associates a predicate with one or more executors.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Cases are evaluated in the order they are added.
|
|
/// </remarks>
|
|
/// <param name="predicate">A function that determines whether the associated executors should be considered for execution. The function
|
|
/// receives an input object and returns <see langword="true"/> to select the case; otherwise, <see
|
|
/// langword="false"/>.</param>
|
|
/// <param name="executors">One or more executors to associate with the predicate. Each executor will be invoked if the predicate matches.
|
|
/// Cannot be null.</param>
|
|
/// <returns>The current <see cref="SwitchBuilder"/> instance, allowing for method chaining.</returns>
|
|
public SwitchBuilder AddCase<T>(Func<T?, bool> predicate, params IEnumerable<ExecutorBinding> executors)
|
|
{
|
|
Throw.IfNull(predicate);
|
|
Throw.IfNull(executors);
|
|
|
|
HashSet<int> indicies = [];
|
|
int executorIndex = 0;
|
|
|
|
foreach (ExecutorBinding executor in executors)
|
|
{
|
|
// Explicit name: null element inside the collection argument.
|
|
Throw.IfNull(executor, $"{nameof(executors)}[{executorIndex++}]");
|
|
|
|
if (!this._executorIndicies.TryGetValue(executor.Id, out int index))
|
|
{
|
|
index = this._executors.Count;
|
|
this._executors.Add(executor);
|
|
this._executorIndicies[executor.Id] = index;
|
|
}
|
|
|
|
indicies.Add(index);
|
|
}
|
|
|
|
Func<object?, bool> casePredicate = WorkflowBuilder.CreateConditionFunc(predicate)!;
|
|
this._caseMap.Add((casePredicate, indicies));
|
|
|
|
return this;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds one or more executors to be used as the default case when no other predicates match.
|
|
/// </summary>
|
|
/// <param name="executors"></param>
|
|
/// <returns></returns>
|
|
public SwitchBuilder WithDefault(params IEnumerable<ExecutorBinding> executors)
|
|
{
|
|
Throw.IfNull(executors);
|
|
|
|
int executorIndex = 0;
|
|
|
|
foreach (ExecutorBinding executor in executors)
|
|
{
|
|
// Explicit name: null element inside the collection argument.
|
|
Throw.IfNull(executor, $"{nameof(executors)}[{executorIndex++}]");
|
|
|
|
if (!this._executorIndicies.TryGetValue(executor.Id, out int index))
|
|
{
|
|
index = this._executors.Count;
|
|
this._executors.Add(executor);
|
|
this._executorIndicies[executor.Id] = index;
|
|
}
|
|
|
|
this._defaultIndicies.Add(index);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
internal WorkflowBuilder ReduceToFanOut(WorkflowBuilder builder, ExecutorBinding source)
|
|
{
|
|
List<(Func<object?, bool> Predicate, HashSet<int> OutgoingIndicies)> caseMap = this._caseMap;
|
|
HashSet<int> defaultIndicies = this._defaultIndicies;
|
|
|
|
return builder.AddFanOutEdge<object>(source, this._executors, EdgeSelector);
|
|
|
|
IEnumerable<int> EdgeSelector(object? input, int targetCount)
|
|
{
|
|
Debug.Assert(targetCount == this._executors.Count);
|
|
|
|
for (int i = 0; i < caseMap.Count; i++)
|
|
{
|
|
(Func<object?, bool> predicate, HashSet<int> outgoingIndicies) = caseMap[i];
|
|
if (predicate(input))
|
|
{
|
|
return outgoingIndicies;
|
|
}
|
|
}
|
|
|
|
return defaultIndicies;
|
|
}
|
|
}
|
|
}
|