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>
156 lines
6.3 KiB
C#
156 lines
6.3 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.DurableTask;
|
|
|
|
/// <summary>
|
|
/// Builder for configuring durable agents.
|
|
/// </summary>
|
|
public sealed class DurableAgentsOptions
|
|
{
|
|
// Agent names are case-insensitive
|
|
private readonly Dictionary<string, Func<IServiceProvider, AIAgent>> _agentFactories = new(StringComparer.OrdinalIgnoreCase);
|
|
private readonly Dictionary<string, TimeSpan?> _agentTimeToLive = new(StringComparer.OrdinalIgnoreCase);
|
|
|
|
internal DurableAgentsOptions()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the default time-to-live (TTL) for agent entities.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If an agent entity is idle for this duration, it will be automatically deleted.
|
|
/// Defaults to 14 days. Set to <see langword="null"/> to disable TTL for agents without explicit TTL configuration.
|
|
/// </remarks>
|
|
public TimeSpan? DefaultTimeToLive { get; set; } = TimeSpan.FromDays(14);
|
|
|
|
/// <summary>
|
|
/// Gets or sets the minimum delay for scheduling TTL deletion signals. Defaults to 5 minutes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This property is primarily useful for testing (where shorter delays are needed) or for
|
|
/// shorter-lived agents in workflows that need more rapid cleanup. The maximum allowed value is 5 minutes.
|
|
/// Reducing the minimum deletion delay below 5 minutes can be useful for testing or for ensuring rapid cleanup of short-lived agent sessions.
|
|
/// However, this can also increase the load on the system and should be used with caution.
|
|
/// </remarks>
|
|
/// <exception cref="ArgumentOutOfRangeException">Thrown when the value exceeds 5 minutes.</exception>
|
|
public TimeSpan MinimumTimeToLiveSignalDelay
|
|
{
|
|
get;
|
|
set
|
|
{
|
|
const int MaximumDelayMinutes = 5;
|
|
if (value > TimeSpan.FromMinutes(MaximumDelayMinutes))
|
|
{
|
|
throw new ArgumentOutOfRangeException(
|
|
nameof(value),
|
|
value,
|
|
$"The minimum time-to-live signal delay cannot exceed {MaximumDelayMinutes} minutes.");
|
|
}
|
|
|
|
field = value;
|
|
}
|
|
} = TimeSpan.FromMinutes(5);
|
|
|
|
/// <summary>
|
|
/// Adds an AI agent factory to the options.
|
|
/// </summary>
|
|
/// <param name="name">The name of the agent.</param>
|
|
/// <param name="factory">The factory function to create the agent.</param>
|
|
/// <param name="timeToLive">Optional time-to-live for this agent's entities. If not specified, uses <see cref="DefaultTimeToLive"/>.</param>
|
|
/// <returns>The options instance.</returns>
|
|
/// <exception cref="ArgumentNullException">Thrown when <paramref name="name"/> or <paramref name="factory"/> is null.</exception>
|
|
public DurableAgentsOptions AddAIAgentFactory(string name, Func<IServiceProvider, AIAgent> factory, TimeSpan? timeToLive = null)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(name);
|
|
ArgumentNullException.ThrowIfNull(factory);
|
|
this._agentFactories.Add(name, factory);
|
|
if (timeToLive.HasValue)
|
|
{
|
|
this._agentTimeToLive[name] = timeToLive;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a list of AI agents to the options.
|
|
/// </summary>
|
|
/// <param name="agents">The list of agents to add.</param>
|
|
/// <returns>The options instance.</returns>
|
|
/// <exception cref="ArgumentNullException">Thrown when <paramref name="agents"/> is null.</exception>
|
|
public DurableAgentsOptions AddAIAgents(params IEnumerable<AIAgent> agents)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(agents);
|
|
foreach (AIAgent agent in agents)
|
|
{
|
|
this.AddAIAgent(agent);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds an AI agent to the options.
|
|
/// </summary>
|
|
/// <param name="agent">The agent to add.</param>
|
|
/// <param name="timeToLive">Optional time-to-live for this agent's entities. If not specified, uses <see cref="DefaultTimeToLive"/>.</param>
|
|
/// <returns>The options instance.</returns>
|
|
/// <exception cref="ArgumentNullException">Thrown when <paramref name="agent"/> is null.</exception>
|
|
/// <exception cref="ArgumentException">
|
|
/// Thrown when <paramref name="agent.Name"/> is null or whitespace or when an agent with the same name has already been registered.
|
|
/// </exception>
|
|
public DurableAgentsOptions AddAIAgent(AIAgent agent, TimeSpan? timeToLive = null)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(agent);
|
|
|
|
if (string.IsNullOrWhiteSpace(agent.Name))
|
|
{
|
|
throw new ArgumentException($"{nameof(agent.Name)} must not be null or whitespace.", nameof(agent));
|
|
}
|
|
|
|
if (this._agentFactories.ContainsKey(agent.Name))
|
|
{
|
|
throw new ArgumentException($"An agent with name '{agent.Name}' has already been registered.", nameof(agent));
|
|
}
|
|
|
|
this._agentFactories.Add(agent.Name, sp => agent);
|
|
if (timeToLive.HasValue)
|
|
{
|
|
this._agentTimeToLive[agent.Name] = timeToLive;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the agents that have been added to this builder.
|
|
/// </summary>
|
|
/// <returns>A read-only collection of agents.</returns>
|
|
internal IReadOnlyDictionary<string, Func<IServiceProvider, AIAgent>> GetAgentFactories()
|
|
{
|
|
return this._agentFactories.AsReadOnly();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the time-to-live for a specific agent, or the default TTL if not specified.
|
|
/// </summary>
|
|
/// <param name="agentName">The name of the agent.</param>
|
|
/// <returns>The time-to-live for the agent, or the default TTL if not specified.</returns>
|
|
internal TimeSpan? GetTimeToLive(string agentName)
|
|
{
|
|
return this._agentTimeToLive.TryGetValue(agentName, out TimeSpan? ttl) ? ttl : this.DefaultTimeToLive;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether an agent with the specified name is registered.
|
|
/// </summary>
|
|
/// <param name="agentName">The name of the agent to locate. Cannot be null.</param>
|
|
/// <returns>true if an agent with the specified name is registered; otherwise, false.</returns>
|
|
internal bool ContainsAgent(string agentName)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(agentName);
|
|
return this._agentFactories.ContainsKey(agentName);
|
|
}
|
|
}
|