BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs
2023-12-15 11:54:44 -06:00

9 lines
259 B
C#

using BotSharp.Abstraction.Instructs.Models;
namespace BotSharp.Abstraction.Instructs;
public interface IInstructService
{
Task<InstructResult> Execute(string agentId, RoleDialogModel message, string? templateName = null, string? instruction = null);
}