Skip to content

Commit

Permalink
fix: Hide groq
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Oct 17, 2024
1 parent 8876981 commit e55b727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/components/SelectModel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ interface SelectModelProps {
setSelectedModel: (model: ModelOptions) => void;
}

const modelOptionsAndLabels: Record<ModelOptions, string> = {
const modelOptionsAndLabels: Partial<Record<ModelOptions, string>> = {
"openai/gpt-4o-mini": "GPT 4o Mini",
"anthropic/claude-3-haiku-20240307": "Claude 3 Haiku",
"groq/llama3-70b-8192": "Llama3 70b (Groq)",
// "groq/llama3-70b-8192": "Llama3 70b (Groq)",
"google_genai/gemini-pro": "Gemini Pro",
};

Expand Down

0 comments on commit e55b727

Please sign in to comment.