Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Workflows/TurnToken.cs
T
Stephen Toub 77e5f527c4 .NET: Clean up stale mentions of M.E.AI.Agents (#997)
* Clean up stale mentions of M.E.AI.Agents

* Unused usings
2025-09-30 08:36:06 +00:00

18 lines
644 B
C#

// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
/// <summary>
/// Sent to an <see cref="AIAgent"/>-based executor to request
/// a response to accumulated <see cref="Extensions.AI.ChatMessage"/>.
/// </summary>
/// <param name="emitEvents">Whether to raise AgentRunEvents for this executor.</param>
public class TurnToken(bool? emitEvents = null)
{
/// <summary>
/// Gets a value indicating whether events are emitted by the receiving executor. If the
/// value is not set, defaults to the configuration in the executor.
/// </summary>
public bool? EmitEvents => emitEvents;
}