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