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

9 lines
231 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-10-28 20:59:26 +00:00
Task<InstructResult> Execute(string agentId, RoleDialogModel message, string? templateName = null);
2023-09-01 22:26:25 +00:00
}