Files
xAiService/Configurations/XAIServiceConfiguration.cs
T
2026-04-09 17:01:45 +03:30

20 lines
563 B
C#

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; }
}
}