using BotSharp.Abstraction.Instructs.Models; namespace BotSharp.Abstraction.Instructs; public interface IInstructService { Task ExecuteInstruction(Agent agent, RoleDialogModel message, Func onMessageReceived, Func onFunctionExecuting, Func onFunctionExecuted); }