BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs
2023-09-01 17:26:25 -05:00

11 lines
352 B
C#

namespace BotSharp.Abstraction.Instructs;
public interface IInstructService
{
Task<bool> ExecuteInstructionRecursively(Agent agent,
List<RoleDialogModel> wholeDialogs,
Func<RoleDialogModel, Task> onMessageReceived,
Func<RoleDialogModel, Task> onFunctionExecuting,
Func<RoleDialogModel, Task> onFunctionExecuted);
}