This commit is contained in:
2026-08-01 10:52:50 +03:30
parent 5824eda6cb
commit 2696a9850c
6 changed files with 135 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
using xAiModels.Constants;
namespace xAiModels.Models
{
/// <summary>
/// Describe a Provided Model ...
/// </summary>
public class XAiModelDescriptor
{
/// <summary>
/// Provider Name ...
/// </summary>
public string Name { get; set; }
/// <summary>
/// LLM Provider Url ...
/// </summary>
public string Url { get; set; }
/// <summary>
/// Model Name ...
/// </summary>
public string LLM { get; set; }
/// <summary>
/// Api Key for Connection ...
/// </summary>
public string ApiKey { get; set; }
/// <summary>
/// Specified Model Provider Type ...
/// </summary>
public XAiModelProviderType Provider { get; set; } = XAiModelProviderType.Ollama;
}
}