BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs

9 lines
259 B
C#
Raw Normal View History

2023-09-08 17:03:49 +00:00
using BotSharp.Abstraction.Instructs.Models;
2023-09-01 22:26:25 +00:00
namespace BotSharp.Abstraction.Instructs;
public interface IInstructService
{
2023-12-15 17:54:44 +00:00
Task<InstructResult> Execute(string agentId, RoleDialogModel message, string? templateName = null, string? instruction = null);
2023-09-01 22:26:25 +00:00
}