// Copyright (c) Microsoft. All rights reserved.
using Microsoft.Extensions.AI.Agents;
namespace Microsoft.Agents.Orchestration.GroupChat;
///
/// An orchestration that broadcasts the input message to each agent.
///
public sealed class GroupChatOrchestration : GroupChatOrchestration
{
///
/// Initializes a new instance of the class.
///
/// The manages the flow of the group-chat.
/// The agents to be orchestrated.
public GroupChatOrchestration(GroupChatManager manager, params Agent[] members)
: base(manager, members)
{
}
}