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