This commit is contained in:
2026-04-10 17:41:01 +03:30
parent 523ad16b3c
commit e4ddceafa0
11 changed files with 416 additions and 50 deletions
+29
View File
@@ -0,0 +1,29 @@
namespace xAiApi.AI.Configuration
{
public class XAiApiConfiguration
{
/// <summary>
/// AI Provider Client URL ...
/// </summary>
/// <value></value>
public string Url { get; set; }
/// <summary>
/// Text Generator Model Name ...
/// </summary>
/// <value></value>
public string TextModel { get; set; }
/// <summary>
/// Code Generator Model Name ...
/// </summary>
/// <value></value>
public string CodeModel { get; set; }
/// <summary>
/// Image Generator Model Name ...
/// </summary>
/// <value></value>
public string ImageModel { get; set; }
}
}