BotSharp/src/Infrastructure/BotSharp.Abstraction/Templating/IResponseTemplateService.cs
2023-08-31 06:40:51 -05:00

9 lines
253 B
C#

namespace BotSharp.Abstraction.Templating;
public interface IResponseTemplateService
{
Task<string> RenderFunctionResponse(string agentId, RoleDialogModel message);
Task<string> RenderIntentResponse(string agentId, RoleDialogModel message);
}