Spaces:
Running
Running
File size: 920 Bytes
c675f75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
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.',
},
];
|