This commit is contained in:
2026-04-10 23:50:46 +03:30
parent 9b271d1572
commit dc96e210e7
28 changed files with 6427 additions and 1287 deletions
+3 -14
View File
@@ -1,20 +1,9 @@
using System.Collections.Generic;
using xAiService.Models;
namespace xAiService.Configurations
{
public partial class XAIServiceConfiguration
{
/// <summary>
/// List of Text Generator Models ...
/// </summary>
/// <value></value>
public Dictionary<string, XAILLMDescriptor> TextGenerators { get; set; }
/// <summary>
/// List of Image Generator Models ...
/// </summary>
/// <value></value>
public Dictionary<string, XAILLMDescriptor> ImageGenerators { get; set; }
public string Url { get; set; }
public string XPoweredValue { get; set; }
public int DefaultClientTimeout { get; set; } = 360;
}
}