Ministrals_demo / example_prompts.py
Jofthomas's picture
Update example_prompts.py
565a170 verified
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."
},
]
}]