Spaces:
Running
Running
| export interface Example { | |
| icon: string; | |
| displayText: string; | |
| messageText: string; | |
| } | |
| export const DEFAULT_EXAMPLES: Example[] = [ | |
| { | |
| icon: "π", | |
| displayText: "Where am I and what time is it?", | |
| messageText: "Where am I and what time is it?", | |
| }, | |
| { | |
| icon: "π", | |
| displayText: "Tell me a joke.", | |
| messageText: "Tell me a joke.", | |
| }, | |
| { | |
| icon: "π’", | |
| displayText: "Solve a math problem", | |
| messageText: "What is 123 times 456 divided by 789?", | |
| }, | |
| { | |
| icon: "π΄", | |
| displayText: "Sleep for 3 seconds", | |
| messageText: "Sleep for 3 seconds", | |
| }, | |
| { | |
| icon: "π²", | |
| displayText: "Generate a random number", | |
| messageText: "Generate a random number between 1 and 100.", | |
| }, | |
| { | |
| icon: "πΉ", | |
| displayText: "Play a video", | |
| messageText: | |
| 'Open this website: "https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1" and do nothing else.', | |
| }, | |
| ]; | |