mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
456e7d1b65
- Moved InProcessRuntime type into abstractions package and deleted InProcess package. - Moved several members of IAgentRuntime to be extension methods instead, e.g. multiple GetActorAsync overloads. - Added synchronous RegisterMessageHandler overloads and used them to avoid unnecessary async usage at call sites. - Removed unnecessary surface area from InProcessRuntime, e.g. StopAsync, RunUntilIdleAsync, etc. - Fixed spin loop in InProcessRuntime that would consume an entire core for the duration of the orchestration's operation. - Removed a bunch of allocation from InProcessRuntime. - Made a runtime optional for orchestrations, defaulting to using a temporary InProcessRuntime if none is provided. - Removed custom delegate types from orchestrations. - Consolidated namespaces. - Used records to simplify message classes. - Tweaked naming on AgentActor to make purpose of protected methods more clear. - Removed invocation in AgentActor.InvokeAsync of empty update / isFinal parameter. - Changed OrchestrationHandoffs to avoid needing to pass in agents duplicatively. - Made various extension methods, such as those on OrchestrationHandoffsExtensions, into instance methods.
46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.Orchestration;
|
|
using Microsoft.Extensions.AI.Agents;
|
|
|
|
namespace Orchestration;
|
|
|
|
/// <summary>
|
|
/// Demonstrates how to use cancel a <see cref="SequentialOrchestration"/> while its running.
|
|
/// </summary>
|
|
public class SequentialOrchestration_With_Cancellation(ITestOutputHelper output) : OrchestrationSample(output)
|
|
{
|
|
[Fact]
|
|
public async Task RunOrchestrationAsync()
|
|
{
|
|
// Define the agents
|
|
ChatClientAgent agent =
|
|
this.CreateAgent(
|
|
"""
|
|
If the input message is a number, return the number incremented by one.
|
|
""",
|
|
description: "A agent that increments numbers.");
|
|
|
|
// Define the orchestration
|
|
SequentialOrchestration orchestration = new(agent) { LoggerFactory = this.LoggerFactory };
|
|
|
|
// Run the orchestration
|
|
string input = "42";
|
|
Console.WriteLine($"\n# INPUT: {input}\n");
|
|
|
|
OrchestrationResult<string> result = await orchestration.InvokeAsync(input);
|
|
|
|
result.Cancel();
|
|
await Task.Delay(TimeSpan.FromSeconds(3));
|
|
|
|
try
|
|
{
|
|
Console.WriteLine($"\n# RESULT: {await result}");
|
|
}
|
|
catch (TimeoutException exception)
|
|
{
|
|
Console.WriteLine($"\n# CANCELED: {exception.Message}");
|
|
}
|
|
}
|
|
}
|