using System.Threading.Tasks; using Microsoft.Extensions.AI; namespace xAiApi.AI.Interfaces { public interface IXAIService { IChatClient TextGenreatorClient { get; } IChatClient ImageGenreatorClient { get; } // #region Actions ... /// /// Generated Text ... /// /// /// Task GetTextResponseAsync(string prompt); /// /// Generated Response ... /// /// /// Task GetResponseAsync(string prompt); #endregion } }