BotSharp/src/Infrastructure/BotSharp.Abstraction/Planning/IExecutor.cs
2024-11-25 18:06:26 -06:00

13 lines
321 B
C#

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