import React from 'react' import { AgentIntent, AgentIntentTiles } from './AgentIntentTiles' type Props = { title: string description?: string isAgent?: boolean isPersona?: boolean capabilityLabels?: string[] onPickPrompt: (text: string) => void agentIntent?: AgentIntent | null onAgentIntentChange?: (intent: AgentIntent | null) => void /** Callback to switch to voice mode — shown for persona projects */ onResumeVoice?: () => void } export function ChatEmptyState({ title, description, isAgent, isPersona, capabilityLabels = [], onPickPrompt, agentIntent = null, onAgentIntentChange, onResumeVoice, }: Props) { return (
Or type below to chat via text