question-examples.ts
938 bytes
| 1 | export const QUESTION_EXAMPLES = [ |
|---|---|
| 2 | { |
| 3 | category: 'Career', |
| 4 | short: 'Compare two job offers', |
| 5 | question: |
| 6 | 'I have two job offers. One pays more at a risky startup, while the other offers stability and a stronger manager. Help me decide what to prioritize.', |
| 7 | }, |
| 8 | { |
| 9 | category: 'Buying', |
| 10 | short: 'Choose the right laptop', |
| 11 | question: |
| 12 | 'Help me choose between a MacBook Air and a Windows ultrabook for travel, light creative work, and a budget of $1,500.', |
| 13 | }, |
| 14 | { |
| 15 | category: 'Ideas', |
| 16 | short: 'Stress-test an idea', |
| 17 | question: |
| 18 | 'Stress-test this business idea and give me a clear go or no-go recommendation: a weekly meal-planning service for busy families.', |
| 19 | }, |
| 20 | { |
| 21 | category: 'Work', |
| 22 | short: 'Make a team decision', |
| 23 | question: |
| 24 | 'My small team is deciding whether to build this feature now or improve onboarding first. Compare the tradeoffs and recommend one.', |
| 25 | }, |
| 26 | ] as const; |
| 27 | |