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