using BotSharp.Abstraction.Routing.Models; namespace BotSharp.Abstraction.Routing; public interface IRoutingService { Agent Router { get; } RoutingItem[] GetRoutingItems(); RoutingRule[] GetRulesByName(string name); RoutingRule[] GetRulesByAgentId(string id); List GetHandlers(); void ResetRecursiveCounter(); Task InvokeAgent(string agentId, List dialogs); Task InstructLoop(RoleDialogModel message); /// /// Talk to a specific Agent directly, bypassing the Router /// /// /// /// Task ExecuteOnce(Agent agent, RoleDialogModel message); }