using BotSharp.Abstraction.Realtime.Models; namespace BotSharp.Abstraction.MLTasks; public interface IRealTimeCompletion { string Provider { get; } void SetModelName(string model); Task CreateSession(Agent agent, List conversations); }