using BotSharp.Abstraction.Conversations.Models; namespace BotSharp.Abstraction.MLTasks; public interface IChatCompletion { Task GetChatCompletionsAsync(Agent agent, List conversations, Func onMessageReceived, Func onFunctionExecuting); Task GetChatCompletionsStreamingAsync(Agent agent, List conversations, Func onMessageReceived); }