From aac000c2413211023f8333832ed9a72705b32f4b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:33:16 +0000 Subject: [PATCH] feat: Update model list in settings This commit updates the list of available models in the settings UI to include Grok 4.1, GPT 5.1, Opus 4.5, and Deepseek 4.5. It also removes the old models and updates the corresponding icons. --- .../components/model-selection-form.tsx | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/components/settings/components/model-selection-form.tsx b/components/settings/components/model-selection-form.tsx index 81db97c4..be8248c9 100644 --- a/components/settings/components/model-selection-form.tsx +++ b/components/settings/components/model-selection-form.tsx @@ -12,7 +12,7 @@ import { import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"; import { Card, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; -import { Sparkles, Zap, Rocket, Cpu, Earth } from "lucide-react"; +import { Zap, Rocket, Cpu, Sparkles } from "lucide-react"; interface ModelSelectionFormProps { form: UseFormReturn; @@ -20,35 +20,35 @@ interface ModelSelectionFormProps { const models = [ { - id: "QCX-Terra", - name: "QCX-Terra", - description: "Geospatial foundational model", - icon: Earth, - badge: "Recommended", - badgeVariant: "default" as const, - }, - { - id: "Grok-3", - name: "Grok-3", - description: "Fast and efficient model for most everyday tasks and queries.", + id: "grok-4.1", + name: "Grok 4.1", + description: "The latest powerhouse model from xAI.", icon: Zap, - badge: "Fast", + badge: "New", badgeVariant: "secondary" as const, }, { - id: "claude-4-sonnet", - name: "Claude-4-sonnet", - description: "Advanced model with strong reasoning and detailed planetary knowledge.", + id: "gpt-5.1", + name: "GPT 5.1", + description: "The latest iteration of OpenAI's flagship model.", + icon: Sparkles, + badge: "New", + badgeVariant: "default" as const, + }, + { + id: "opus-4.5", + name: "Opus 4.5", + description: "The latest high-performance model from Anthropic.", icon: Rocket, - badge: "Advanced", + badge: "New", badgeVariant: "outline" as const, }, { - id: "llama-4", - name: "Llama-4", - description: "Open-source model with good performance for general planetary information.", + id: "deepseek-4.5", + name: "Deepseek 4.5", + description: "The latest from Deepseek, a powerful open-source model.", icon: Cpu, - badge: "Open Source", + badge: "New", badgeVariant: "outline" as const, }, ];