namespace BotSharp.Abstraction.Routing; public interface IRoutingService { Agent Router { get; } void ResetRecursiveCounter(); Task InvokeAgent(string agentId, List dialogs); Task InstructLoop(RoleDialogModel message); Task ExecuteOnce(Agent agent, RoleDialogModel message); }