Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/app/chat/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ interface ChatMessage {
}

const EXAMPLES = [
{ q: "Explain Van Gogh's The Starry Night", icon: "01" },
{ q: "How do you read the periodic table?", icon: "02" },
{ q: "Tell me about the Taj Mahal", icon: "03" },
{ q: "How many shots on target did Inter have in the 2010 Champions League final?", icon: "01" },
{ q: "Which district in Nagaland has the RTO code NL-03?", icon: "02" },
{ q: "Explain Van Gogh's The Starry Night", icon: "03" },
{ q: "介绍一下兵马俑", icon: "04" },
]

Expand Down
7 changes: 5 additions & 2 deletions web/components/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ const EXAMPLE_QUERIES = [
"兵马俑",
]

// The first two are verified "ChatGPT gets these wrong" questions: the answers
// live in table/infobox cells (match-stats table, RTO code box) that parametric
// memory and text scraping both fumble — but reading the rendered page nails.
const ASK_EXAMPLES = [
"How many shots on target did Inter have in the 2010 Champions League final?",
"Which district in Nagaland has the RTO code NL-03?",
"Explain Van Gogh's The Starry Night",
"How do you read the periodic table?",
"Tell me about the Taj Mahal",
"介绍一下兵马俑",
]

Expand Down
Loading