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