mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
cbcdb2d29e
* .NET: [Feature Branch] Add basic durable workflow support (#3648) * Add basic durable workflow support. * PR feedback fixes * Add conditional edge sample. * PR feedback fixes. * Minor cleanup. * Minor cleanup * Minor formatting improvements. * Improve comments/documentation on the execution flow. * .NET: [Feature Branch] Add Azure Functions hosting support for durable workflows (#3935) * Adding azure functions workflow support. * - PR feedback fixes. - Add example to demonstrate complex Object as payload. * rename instanceId to runId. * Use custom ITaskOrchestrator to run orchestrator function. * .NET: [Feature Branch] Adding support for events & shared state in durable workflows (#4020) * Adding support for events & shared state in durable workflows. * PR feedback fixes * PR feedback fixes. * Add YieldOutputAsync calls to 05_WorkflowEvents sample executors The integration test asserts that WorkflowOutputEvent is found in the stream, but the sample executors only used AddEventAsync for custom events and never called YieldOutputAsync. Since WorkflowOutputEvent is only emitted via explicit YieldOutputAsync calls, the assertion would fail. Added YieldOutputAsync to each executor to match the test expectation and demonstrate the API in the sample. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix deserialization to use shared serializer options. * PR feedback updates. * Sample cleanup * PR feedback fixes * Addressing PR review feedback for DurableStreamingWorkflowRun - Use -1 instead of 0 for taskId in TaskFailedException when task ID is not relevant. - Add [NotNullWhen(true)] to TryParseWorkflowResult out parameter following .NET TryXXX conventions. --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * .NET: [Feature Branch] Add nested sub-workflow support for durable workflows (#4190) * .NET: [Feature Branch] Add nested sub-workflow support for durable workflows * fix readme path * Switch Orchestration output from string to DurableWorkflowResult. * PR feedback fixes * Minor cleanup based on PR feedback. * .NET: [Feature Branch] Add Human In the Loop support for durable workflows (#4358) * Add Azure Functions HITL workflow sample Add 06_WorkflowHITL Azure Functions sample demonstrating Human-in-the-Loop workflow support with HTTP endpoints for status checking and approval responses. The sample includes: - ExpenseReimbursement workflow with RequestPort for manager approval - Custom HTTP endpoint to check workflow status and pending approvals - Custom HTTP endpoint to send approval responses via RaiseEventAsync - demo.http file with step-by-step interaction examples * PR feedback fixes * Minor comment cleanup * Minor comment clReverted the `!context.IsReplaying` guards on `PendingEvents.Add`/`RemoveAll` and `SetCustomStatus` in `ExecuteRequestPortAsync`. The guards broke fan-out scenarios where parallel RequestPorts need to be discoverable after replay. `SetCustomStatus` is idempotent metadata that doesn't affect replay determinism.eanup * fix for PR feedback * PR feedback updates * Improvements to samples * Improvements to README * Update samples to use parallel request ports. * Unit tests * Introduce local variables to improve readability of Workflows.Workflows access patter * Use GitHub-style callouts and add PowerShell command variants in HITL sample README * Add changelog entries for durable workflow support (#4436) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Bump Microsoft.DurableTask.Worker to 1.19.1 to fix version downgrade Microsoft.Azure.Functions.Worker.Extensions.DurableTask 1.13.1 requires Microsoft.DurableTask.Worker >= 1.19.1 via its transitive dependency on Microsoft.DurableTask.Worker.Grpc 1.19.1. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix broken markdown links in durable workflow sample READMEs - Create Workflow/README.md with environment setup docs - Fix ../README.md -> ../../README.md in ConsoleApps 01, 02, 03, 08 - Fix SubWorkflows relative path (3 levels -> 4 levels up) - Fix dead Durable Task Scheduler URL Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix build errors from main merge: Throw conflict, ExecuteAsync rename, GetNewSessionAsync rename - Remove InjectSharedThrow from DurableTask csproj (uses Workflows' internal Throw via InternalsVisibleTo) - Update ExecuteAsync -> ExecuteCoreAsync with WorkflowTelemetryContext.Disabled - Update GetNewSessionAsync -> CreateSessionAsync Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Move durable workflow samples to 04-hosting/DurableWorkflows Aligns with main branch sample reorganization where durable samples live under 04-hosting/ (alongside DurableAgents/). - Move samples/Durable/Workflow/ -> samples/04-hosting/DurableWorkflows/ - Add Directory.Build.props matching DurableAgents pattern - Update slnx project paths - Update integration test sample paths - Update README cd paths and cross-references Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix build errors: remove duplicate base class members, update renamed APIs - Remove duplicate OutputLog, WriteInputAsync, CreateTestTimeoutCts, etc. from ConsoleAppSamplesValidation (already in SamplesValidationBase) - Update AddFanInEdge -> AddFanInBarrierEdge in workflow samples - Update GetNewSessionAsync -> CreateSessionAsync in workflow samples - Update SourceId -> ExecutorId (obsolete) in workflow samples Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix dotnet format issues: add UTF-8 BOM and remove unused using - Add UTF-8 BOM to 20 .cs files across DurableTask, AzureFunctions, unit tests, and workflow samples - Remove unnecessary using directive in 07_SubWorkflows/Executors.cs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix typo PaymentProcesser -> PaymentProcessor and garbled arrows in README Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix GetExecutorName to handle agent names with underscores Split on last underscore instead of first, and validate that the suffix is a 32-char hex string (sanitized GUID) before stripping it. This prevents truncation of agent names like 'my_agent' when the executor ID is 'my_agent_<guid>'. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Align DurableTask.Client.AzureManaged to 1.19.1 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Bump DurableTask and Azure Functions extension package versions - DurableTask.* packages: 1.19.1 -> 1.22.0 - Functions.Worker.Extensions.DurableTask: 1.13.1 -> 1.16.0 - Functions.Worker.Extensions.DurableTask.AzureManaged: 1.0.1 -> 1.5.0 (telemetry bug fix) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Bump DurableTask SDK packages to 1.22.0 - DurableTask.Client: 1.19.1 -> 1.22.0 - DurableTask.Client.AzureManaged: 1.19.1 -> 1.22.0 - DurableTask.Worker: 1.19.1 -> 1.22.0 - DurableTask.Worker.AzureManaged: 1.19.1 -> 1.22.0 - Azure Functions extensions kept at original versions (1.13.1/1.0.1) due to host-side DurableTask.Core 3.7.0 incompatibility with newer extensions Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Update Microsoft.Azure.Functions.Worker.Extensions.DurableTask to "1.16.0" * Add the local.settings.json files to the sample which were previously ignored. This aligns with our other samples. * Increase timeout for tests as CI has them failing transiently. * increaset timeout value for azure functions integration tests. * Add YieldsOutput(string) to workflow shared state sample executors ValidateOrder and EnrichOrder call YieldOutputAsync with string messages, but only their TOutput (OrderDetails) was in the allowed yield types. This caused TargetInvocationException in the WorkflowSharedState sample validation integration test. * Downgrade the durable packages to 1.18.0 * Downgrading Worker.Extensions.DurableTask to 1.12.1 --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
246 lines
9.4 KiB
C#
246 lines
9.4 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.AI.Workflows;
|
|
|
|
namespace Microsoft.Agents.AI.DurableTask.Workflows;
|
|
|
|
/// <summary>
|
|
/// Analyzes workflow structure to extract executor metadata and build graph information
|
|
/// for message-driven execution.
|
|
/// </summary>
|
|
internal static class WorkflowAnalyzer
|
|
{
|
|
private const string AgentExecutorTypeName = "AIAgentHostExecutor";
|
|
private const string AgentAssemblyPrefix = "Microsoft.Agents.AI";
|
|
private const string ExecutorTypePrefix = "Executor";
|
|
|
|
/// <summary>
|
|
/// Analyzes a workflow instance and returns a list of executors with their metadata.
|
|
/// </summary>
|
|
/// <param name="workflow">The workflow instance to analyze.</param>
|
|
/// <returns>A list of executor information in workflow order.</returns>
|
|
internal static List<WorkflowExecutorInfo> GetExecutorsFromWorkflowInOrder(Workflow workflow)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(workflow);
|
|
|
|
return workflow.ReflectExecutors()
|
|
.Select(kvp => CreateExecutorInfo(kvp.Key, kvp.Value))
|
|
.ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Builds the workflow graph information needed for message-driven execution.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// Extracts routing information including successors, predecessors, edge conditions,
|
|
/// and output types. Supports cyclic workflows through message-driven superstep execution.
|
|
/// </para>
|
|
/// <para>
|
|
/// The returned <see cref="WorkflowGraphInfo"/> is consumed by <c>DurableEdgeMap</c>
|
|
/// to build the runtime routing layer:
|
|
/// <c>Successors</c> become <c>IDurableEdgeRouter</c> instances,
|
|
/// <c>Predecessors</c> become fan-in counts, and
|
|
/// <c>EdgeConditions</c> / <c>ExecutorOutputTypes</c> are passed into
|
|
/// <c>DurableDirectEdgeRouter</c> for conditional routing with typed deserialization.
|
|
/// </para>
|
|
/// </remarks>
|
|
/// <param name="workflow">The workflow instance to analyze.</param>
|
|
/// <returns>A graph info object containing routing information.</returns>
|
|
internal static WorkflowGraphInfo BuildGraphInfo(Workflow workflow)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(workflow);
|
|
|
|
Dictionary<string, ExecutorBinding> executors = workflow.ReflectExecutors();
|
|
|
|
WorkflowGraphInfo graphInfo = new()
|
|
{
|
|
StartExecutorId = workflow.StartExecutorId
|
|
};
|
|
|
|
InitializeExecutorMappings(graphInfo, executors);
|
|
PopulateGraphFromEdges(graphInfo, workflow.Edges);
|
|
|
|
return graphInfo;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether the specified executor type is an agentic executor.
|
|
/// </summary>
|
|
/// <param name="executorType">The executor type to check.</param>
|
|
/// <returns><c>true</c> if the executor is an agentic executor; otherwise, <c>false</c>.</returns>
|
|
internal static bool IsAgentExecutorType(Type executorType)
|
|
{
|
|
string typeName = executorType.FullName ?? executorType.Name;
|
|
string assemblyName = executorType.Assembly.GetName().Name ?? string.Empty;
|
|
|
|
return typeName.Contains(AgentExecutorTypeName, StringComparison.OrdinalIgnoreCase)
|
|
&& assemblyName.Contains(AgentAssemblyPrefix, StringComparison.OrdinalIgnoreCase);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a <see cref="WorkflowExecutorInfo"/> from an executor binding.
|
|
/// </summary>
|
|
/// <param name="executorId">The unique identifier of the executor.</param>
|
|
/// <param name="binding">The executor binding containing type and configuration information.</param>
|
|
/// <returns>A new <see cref="WorkflowExecutorInfo"/> instance with extracted metadata.</returns>
|
|
private static WorkflowExecutorInfo CreateExecutorInfo(string executorId, ExecutorBinding binding)
|
|
{
|
|
bool isAgentic = IsAgentExecutorType(binding.ExecutorType);
|
|
RequestPort? requestPort = (binding is RequestPortBinding rpb) ? rpb.Port : null;
|
|
Workflow? subWorkflow = (binding is SubworkflowBinding swb) ? swb.WorkflowInstance : null;
|
|
|
|
return new WorkflowExecutorInfo(executorId, isAgentic, requestPort, subWorkflow);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes the graph info with empty collections for each executor.
|
|
/// </summary>
|
|
/// <param name="graphInfo">The graph info to initialize.</param>
|
|
/// <param name="executors">The dictionary of executor bindings.</param>
|
|
private static void InitializeExecutorMappings(WorkflowGraphInfo graphInfo, Dictionary<string, ExecutorBinding> executors)
|
|
{
|
|
foreach ((string executorId, ExecutorBinding binding) in executors)
|
|
{
|
|
graphInfo.Successors[executorId] = [];
|
|
graphInfo.Predecessors[executorId] = [];
|
|
graphInfo.ExecutorOutputTypes[executorId] = GetExecutorOutputType(binding.ExecutorType);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Populates the graph info with successor/predecessor relationships and edge conditions.
|
|
/// </summary>
|
|
/// <param name="graphInfo">The graph info to populate.</param>
|
|
/// <param name="edges">The dictionary of edges grouped by source executor ID.</param>
|
|
private static void PopulateGraphFromEdges(WorkflowGraphInfo graphInfo, Dictionary<string, HashSet<Edge>> edges)
|
|
{
|
|
foreach ((string sourceId, HashSet<Edge> edgeSet) in edges)
|
|
{
|
|
List<string> successors = graphInfo.Successors[sourceId];
|
|
|
|
foreach (Edge edge in edgeSet)
|
|
{
|
|
AddSuccessorsFromEdge(graphInfo, sourceId, edge, successors);
|
|
TryAddEdgeCondition(graphInfo, edge);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds successor relationships from an edge to the graph info.
|
|
/// </summary>
|
|
/// <param name="graphInfo">The graph info to update.</param>
|
|
/// <param name="sourceId">The source executor ID.</param>
|
|
/// <param name="edge">The edge containing connection information.</param>
|
|
/// <param name="successors">The list of successors to append to.</param>
|
|
private static void AddSuccessorsFromEdge(
|
|
WorkflowGraphInfo graphInfo,
|
|
string sourceId,
|
|
Edge edge,
|
|
List<string> successors)
|
|
{
|
|
foreach (string sinkId in edge.Data.Connection.SinkIds)
|
|
{
|
|
if (!graphInfo.Successors.ContainsKey(sinkId))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
successors.Add(sinkId);
|
|
graphInfo.Predecessors[sinkId].Add(sourceId);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Extracts and adds an edge condition to the graph info if present.
|
|
/// </summary>
|
|
/// <param name="graphInfo">The graph info to update.</param>
|
|
/// <param name="edge">The edge that may contain a condition.</param>
|
|
private static void TryAddEdgeCondition(WorkflowGraphInfo graphInfo, Edge edge)
|
|
{
|
|
DirectEdgeData? directEdge = edge.DirectEdgeData;
|
|
|
|
if (directEdge?.Condition is not null)
|
|
{
|
|
graphInfo.EdgeConditions[(directEdge.SourceId, directEdge.SinkId)] = directEdge.Condition;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Extracts the output type from an executor type by walking the inheritance chain.
|
|
/// </summary>
|
|
/// <param name="executorType">The executor type to analyze.</param>
|
|
/// <returns>
|
|
/// The TOutput type for Executor<TInput, TOutput>,
|
|
/// or <c>null</c> for Executor<TInput> (void output) or non-executor types.
|
|
/// </returns>
|
|
private static Type? GetExecutorOutputType(Type executorType)
|
|
{
|
|
Type? currentType = executorType;
|
|
|
|
while (currentType is not null)
|
|
{
|
|
Type? outputType = TryExtractOutputTypeFromGeneric(currentType);
|
|
if (outputType is not null || IsVoidExecutorType(currentType))
|
|
{
|
|
return outputType;
|
|
}
|
|
|
|
currentType = currentType.BaseType;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Attempts to extract the output type from a generic executor type.
|
|
/// </summary>
|
|
/// <param name="type">The type to inspect.</param>
|
|
/// <returns>The TOutput type if this is an Executor<TInput, TOutput>; otherwise, <c>null</c>.</returns>
|
|
private static Type? TryExtractOutputTypeFromGeneric(Type type)
|
|
{
|
|
if (!type.IsGenericType)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
Type genericDefinition = type.GetGenericTypeDefinition();
|
|
Type[] genericArgs = type.GetGenericArguments();
|
|
|
|
bool isExecutorType = genericDefinition.Name.StartsWith(ExecutorTypePrefix, StringComparison.Ordinal);
|
|
if (!isExecutorType)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Executor<TInput, TOutput> - return TOutput
|
|
if (genericArgs.Length == 2)
|
|
{
|
|
return genericArgs[1];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether the type is a void-returning executor (Executor<TInput>).
|
|
/// </summary>
|
|
/// <param name="type">The type to check.</param>
|
|
/// <returns><c>true</c> if this is an Executor with a single type parameter; otherwise, <c>false</c>.</returns>
|
|
private static bool IsVoidExecutorType(Type type)
|
|
{
|
|
if (!type.IsGenericType)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Type genericDefinition = type.GetGenericTypeDefinition();
|
|
Type[] genericArgs = type.GetGenericArguments();
|
|
|
|
// Executor<TInput> with 1 type parameter indicates void return
|
|
return genericArgs.Length == 1
|
|
&& genericDefinition.Name.StartsWith(ExecutorTypePrefix, StringComparison.Ordinal);
|
|
}
|
|
}
|