AI-Studio/app/MindWork AI Studio/Provider/LLMProviders.cs
Thibault Jaigu fe61acc5b2 Added Requesty as a provider
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.
2026-09-25 10:04:02 +01:00

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