Spaces:
Running
on
Zero
Running
on
Zero
File size: 870 Bytes
0e59015 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
def get_example_prompts():
return [{
"label": "🖼️ Vision & Reasoning",
"children": [{
"urls": ["./assets/pokemon_battle.jpg"],
"description": "What action do you think I should take in this situation? List all the possible actions and explain why you think they are good or bad."
}]
}, {
"label": "📝 Instruction Following",
"children": [
{
"urls": [],
"description": "Write me a sentence where every word starts with the next letter in the alphabet - start with 'a' and end with 'z'."
},
{
"urls": [],
"description": "Use each number in 2,5,6,3 exactly once, along with any combination of +, -, ×, ÷ (and parentheses for grouping), to make the number 24."
},
]
}]
|