mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
647db9635a
* Renaming Microsoft.Agent.Workflows to Microsoft.Agents.AI.Workflows * Removing local settings. * Removing remining old files from merge.
22 lines
735 B
C#
22 lines
735 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows;
|
|
|
|
/// <summary>
|
|
/// Debug information about the SuperStep starting to run.
|
|
/// </summary>
|
|
public sealed class SuperStepStartInfo(HashSet<string>? sendingExecutors = null)
|
|
{
|
|
/// <summary>
|
|
/// The unique identifiers of <see cref="Executor"/> instances that sent messages during the previous SuperStep.
|
|
/// </summary>
|
|
public HashSet<string> SendingExecutors { get; } = sendingExecutors ?? [];
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether there are any external messages queued during the previous SuperStep.
|
|
/// </summary>
|
|
public bool HasExternalMessages { get; init; }
|
|
}
|