mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 00:53:37 +00:00
Requesty is an OpenAI compatible AI gateway. The provider mirrors OpenRouter: chat completions over https://router.requesty.ai/v1/, the same project headers, and a model list read from both the managed policies (models/managed) and the full catalog (models), including the context window.
32 lines
504 B
C#
32 lines
504 B
C#
namespace AIStudio.Provider;
|
|
|
|
/// <summary>
|
|
/// Enum for all available providers.
|
|
/// </summary>
|
|
public enum LLMProviders
|
|
{
|
|
NONE = 0,
|
|
|
|
OPEN_AI = 1,
|
|
ANTHROPIC = 2,
|
|
MISTRAL = 3,
|
|
GOOGLE = 7,
|
|
X = 8,
|
|
DEEP_SEEK = 11,
|
|
ALIBABA_CLOUD = 12,
|
|
PERPLEXITY = 14,
|
|
OPEN_ROUTER = 15,
|
|
HETZNER = 16,
|
|
IONOS = 17,
|
|
LITE_LLM = 18,
|
|
REQUESTY = 19,
|
|
|
|
FIREWORKS = 5,
|
|
GROQ = 6,
|
|
HUGGINGFACE = 13,
|
|
|
|
SELF_HOSTED = 4,
|
|
|
|
HELMHOLTZ = 9,
|
|
GWDG = 10,
|
|
} |