From 5b4c4d4f2e005b6de365b7c5f5b0f8ae3db90089 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 17:22:21 +0000 Subject: [PATCH] Rename "planetary copilot" to "planet computer" and clear example prompts - Replaced all occurrences of "planetary copilot" with "planet computer" in settings components and views. - Updated default system prompt to use "planet computer". - Emptied `exampleMessages` array in `components/empty-screen.tsx` to clear example prompts. - Removed unused icon imports in `components/empty-screen.tsx`. Co-authored-by: ngoiyaeric <115367894+ngoiyaeric@users.noreply.github.com> --- components/empty-screen.tsx | 24 +------------------ .../components/model-selection-form.tsx | 2 +- components/settings/components/settings.tsx | 6 ++--- .../components/system-prompt-form.tsx | 4 ++-- components/settings/settings-view.tsx | 2 +- 5 files changed, 8 insertions(+), 30 deletions(-) diff --git a/components/empty-screen.tsx b/components/empty-screen.tsx index 2c0f63e4..479ced6a 100644 --- a/components/empty-screen.tsx +++ b/components/empty-screen.tsx @@ -1,28 +1,6 @@ import { Button } from '@/components/ui/button'; -import { Globe, Thermometer, Laptop, HelpCircle } from 'lucide-react'; -const exampleMessages = [ - { - heading: 'What is a planet computer?', - message: 'What is a planet computer?', - icon: Globe - }, - { - heading: 'How does climate change affect our experience?', - message: 'How does climate change affect our experience?', - icon: Thermometer - }, - { - heading: 'What is QCX-Terra?', - message: 'What is QCX-Terra?', - icon: Laptop, - }, - { - heading: 'How do I use the computer?', - message: 'How do I use the computer?', - icon: HelpCircle, - }, -]; +const exampleMessages: { heading: string; message: string; icon: any }[] = []; export function EmptyScreen({ submitMessage, diff --git a/components/settings/components/model-selection-form.tsx b/components/settings/components/model-selection-form.tsx index bc6164ba..56b5056a 100644 --- a/components/settings/components/model-selection-form.tsx +++ b/components/settings/components/model-selection-form.tsx @@ -134,7 +134,7 @@ export function ModelSelectionForm({ form }: ModelSelectionFormProps) { - Select the AI model that will power your planetary copilot. + Select the AI model that will power your planet computer. Different models have different capabilities and performance characteristics. diff --git a/components/settings/components/settings.tsx b/components/settings/components/settings.tsx index 8806664d..146f04de 100644 --- a/components/settings/components/settings.tsx +++ b/components/settings/components/settings.tsx @@ -53,7 +53,7 @@ export type SettingsFormValues = z.infer // Default values const defaultValues: Partial = { systemPrompt: - "You are a planetary copilot, an AI assistant designed to help users with information about planets, space exploration, and astronomy. Provide accurate, educational, and engaging responses about our solar system and beyond.", + "You are a planet computer, an AI assistant designed to help users with information about planets, space exploration, and astronomy. Provide accurate, educational, and engaging responses about our solar system and beyond.", selectedModel: "Gemini 3.1 Pro", users: [], } @@ -180,7 +180,7 @@ export function Settings({ initialTab = "system-prompt" }: SettingsProps) { System Prompt - Customize the behavior and persona of your planetary copilot + Customize the behavior and persona of your planet computer @@ -192,7 +192,7 @@ export function Settings({ initialTab = "system-prompt" }: SettingsProps) { Model Selection - Choose the AI model that powers your planetary copilot + Choose the AI model that powers your planet computer diff --git a/components/settings/components/system-prompt-form.tsx b/components/settings/components/system-prompt-form.tsx index 2d8dc110..78a98231 100644 --- a/components/settings/components/system-prompt-form.tsx +++ b/components/settings/components/system-prompt-form.tsx @@ -19,13 +19,13 @@ export function SystemPromptForm({ form }: SystemPromptFormProps) { System Prompt