namespace xAiApi.AI.Configuration { public class XAiApiConfiguration { /// /// AI Provider Client URL ... /// /// public string Url { get; set; } /// /// Text Generator Model Name ... /// /// public string TextModel { get; set; } /// /// Code Generator Model Name ... /// /// public string CodeModel { get; set; } /// /// Image Generator Model Name ... /// /// public string ImageModel { get; set; } } }