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