From a0106ba3c27357bf6f7e8545473f77cf25bdc9ab Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 8 Aug 2024 17:53:32 -0700 Subject: [PATCH] add groq through admin ui --- ui/litellm-dashboard/src/components/model_dashboard.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/model_dashboard.tsx b/ui/litellm-dashboard/src/components/model_dashboard.tsx index aa745a383..3f76a88e2 100644 --- a/ui/litellm-dashboard/src/components/model_dashboard.tsx +++ b/ui/litellm-dashboard/src/components/model_dashboard.tsx @@ -143,7 +143,8 @@ enum Providers { Anthropic = "Anthropic", Google_AI_Studio = "Google AI Studio", Bedrock = "Amazon Bedrock", - OpenAI_Compatible = "OpenAI-Compatible Endpoints (Groq, Together AI, Mistral AI, etc.)", + Groq = "Groq", + OpenAI_Compatible = "OpenAI-Compatible Endpoints (Together AI, Mistral AI, etc.)", Vertex_AI = "Vertex AI (Anthropic, Gemini, etc.)", Databricks = "Databricks", Ollama = "Ollama", @@ -156,6 +157,7 @@ const provider_map: Record = { Anthropic: "anthropic", Google_AI_Studio: "gemini", Bedrock: "bedrock", + Groq: "groq", OpenAI_Compatible: "openai", Vertex_AI: "vertex_ai", Databricks: "databricks",