namespace BotSharp.Abstraction.MLTasks; public interface ITextCompletion { /// /// The LLM provider like Microsoft Azure, OpenAI, ClaudAI /// string Provider { get; } /// /// Set model name, one provider can consume different model or version(s) /// /// void SetModelName(string model); Task GetCompletion(string text); }