using BotSharp.Abstraction.Functions.Models; using BotSharp.Abstraction.Routing; namespace BotSharp.Abstraction.Planning; public interface IExecutor { Task Execute(IRoutingService routing, FunctionCallFromLlm inst, RoleDialogModel message, List dialogs); }