mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* feat: implement autonomous mode and termination conditions in handoff workflow * fixup: format * feat: enhance autonomous mode with per-agent configurations and add unit tests * fixup: remove empty file --------- Co-authored-by: Jacob Alber <jalber@lokitoth.com>
10 lines
286 B
C#
10 lines
286 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Specialized;
|
|
|
|
internal sealed record class HandoffState(
|
|
TurnToken TurnToken,
|
|
string? RequestedHandoffTargetAgentId,
|
|
string? PreviousAgentId = null,
|
|
bool IsTerminated = false);
|