BotSharp/src/Infrastructure/BotSharp.Abstraction/IChatCompletionHandler.cs
2023-05-28 20:06:05 -05:00

13 lines
303 B
C#

using BotSharp.Abstraction.Models;
namespace BotSharp.Abstraction;
public interface IChatCompletionHandler
{
string GetInstruction();
List<RoleDialogModel> GetChatSamples();
Task GetChatCompletionsAsync(List<RoleDialogModel> conversations,
Func<string, Task> onChunkReceived);
}