diff --git a/ui/litellm-dashboard/src/components/model_dashboard.tsx b/ui/litellm-dashboard/src/components/model_dashboard.tsx index 7dea2037c..904f8a9cb 100644 --- a/ui/litellm-dashboard/src/components/model_dashboard.tsx +++ b/ui/litellm-dashboard/src/components/model_dashboard.tsx @@ -137,20 +137,26 @@ interface ProviderSettings { } enum Providers { - OpenAI = "OpenAI", + Anthropic = "Anthropic", + Anyscale = "Anyscale", Azure = "Azure", Azure_AI_Studio = "Azure AI Studio", - Anthropic = "Anthropic", - Google_AI_Studio = "Google AI Studio", Bedrock = "Amazon Bedrock", - OpenAI_Compatible = "OpenAI-Compatible Endpoints (Groq, Mistral AI, etc.)", - Vertex_AI = "Vertex AI (Anthropic, Gemini, etc.)", + Codestral = "Codestral API (MistralAI)", Databricks = "Databricks", - TogetherAI = "TogetherAI", + Google_AI_Studio = "Google AI Studio", Groq = "Groq", + MistralAI = "MistralAI", Ollama = "Ollama", + OpenAI = "OpenAI", + OpenAI_Compatible = "OpenAI-Compatible Endpoints (vLLM etc.)", + OpenRouter = "OpenRouter", + PerplexityAI = "PerplexityAI", + TogetherAI = "TogetherAI", + Vertex_AI = "Vertex AI (Anthropic, Gemini, etc.)", } + const provider_map: Record = { OpenAI: "openai", Azure: "azure", @@ -161,6 +167,11 @@ const provider_map: Record = { OpenAI_Compatible: "openai", Vertex_AI: "vertex_ai", TogetherAI: "together_ai", + MistralAI: "mistral", + Codestral: "codestral", + PerplexityAI:"perplexity", + OpenRouter: "openrouter", + Anyscale: "anyscale", Groq: "groq", Databricks: "databricks", Ollama: "ollama",