Update weather dashboard suggestion to request HTML code output (#4523)

The previous prompt "Show me a live weather dashboard, no API key needed"
was too vague. The new wording explicitly asks for HTML code, which
produces more useful and consistent responses.
This commit is contained in:
Daniel Han 2026-03-22 06:09:48 -07:00 committed by GitHub
commit 62e3de181f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -116,7 +116,7 @@ const ThreadScrollToBottom: FC = () => {
const SUGGESTION_TOOLS: Record<string, Array<"thinking" | "search" | "code">> = {
"How do you fine-tune an audio model with Unsloth?": ["thinking", "search"],
"Show me a live weather dashboard, no API key needed": ["thinking", "code", "search"],
"Create a live weather dashboard in HTML using no API key. Show me the code": ["thinking", "code", "search"],
"Solve the integral of x·sin(x), and verify it step by step": ["thinking", "code"],
"Draw an SVG of a cute sloth": ["thinking", "code", "search"],
};

View file

@ -37,9 +37,9 @@ const DEFAULT_SUGGESTIONS = [
prompt: "How do you fine-tune an audio model with Unsloth?",
},
{
title: "Show me a live weather dashboard, no API key needed",
title: "Create a live weather dashboard in HTML using no API key. Show me the code",
label: "Weather dashboard",
prompt: "Show me a live weather dashboard, no API key needed",
prompt: "Create a live weather dashboard in HTML using no API key. Show me the code",
},
{
title: "Solve the integral of x·sin(x), and verify it",