namespace xAiApi.AI.Configuration
{
public class XAiApiConfiguration
{
///
/// AI Provider Client URL ...
///
///
public string Url { get; set; }
///
/// a System Message to Introduce Model ...
///
public string Introduction { get; set; }
///
/// Model Name ...
///
///
public string Model { 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; }
}
}