BotSharp/src/Infrastructure/BotSharp.Abstraction/Templating/IResponseTemplateService.cs

9 lines
253 B
C#
Raw Normal View History

2023-08-30 23:29:01 +00:00
namespace BotSharp.Abstraction.Templating;
public interface IResponseTemplateService
{
2023-08-31 11:40:51 +00:00
Task<string> RenderFunctionResponse(string agentId, RoleDialogModel message);
Task<string> RenderIntentResponse(string agentId, RoleDialogModel message);
2023-08-30 23:29:01 +00:00
}