13 lines
230 B
C#
13 lines
230 B
C#
namespace xAiModels.Constants
|
|
{
|
|
/// <summary>
|
|
/// Specifiy Provider Type ...
|
|
/// </summary>
|
|
public enum XAiModelProviderType
|
|
{
|
|
None,
|
|
Ollama,
|
|
DeepSeek,
|
|
HuggingFace
|
|
}
|
|
} |