{#if hasModel} Start a conversation {:else} No model selected {/if}

{#if hasModel && selectedModel} Chatting with {selectedModel.name} {:else} Select a model from the sidebar to start chatting {/if}

{#if hasModel}
{@render SuggestionCard({ type: "question", icon: "lightbulb", title: "Ask a question", description: "Get explanations on any topic" })} {@render SuggestionCard({ type: "code", icon: "code", title: "Write code", description: "Generate or debug code" })} {@render SuggestionCard({ type: "content", icon: "pencil", title: "Create content", description: "Draft emails or articles" })} {@render SuggestionCard({ type: "conversation", icon: "chat", title: "Have a conversation", description: "Discuss ideas and brainstorm" })}
{#if activeQuickPrompt}

{activeQuickPrompt} mode active

{/if} {/if}
{#snippet SuggestionCard(props: { type: PromptType; icon: string; title: string; description: string })} {@const active = isActive(props.type)} {/snippet}