File size: 1,358 Bytes
0e59015
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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."
        }, {
            "urls": ["https://math-coaching.com/img/fiche/46/expressions-mathematiques.jpg"],
            "description": "Thanks to your calculator, compute the results for the equations that involve numbers displayed in the image."
        }, {
            "urls": ["https://i.ytimg.com/vi/5Y3xLHeyKZU/hqdefault.jpg"],
            "description": "Solve the equations. If they contain only numbers, use your calculator, else only think. Answer in the language of the image."
        }]
    }, {
        "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."
            },
        ]
    }]