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