-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprompts.json
More file actions
36 lines (36 loc) · 1.24 KB
/
Copy pathprompts.json
File metadata and controls
36 lines (36 loc) · 1.24 KB
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
{
"version": 1,
"description": "Fixed prompt set for olladroid bench.sh. Changing this file breaks cross-device comparability — bump the version if you do.",
"prompts": [
{
"id": "hello",
"prompt": "Hello! Reply with a short friendly greeting.",
"num_predict": 20,
"notes": "Minimal input, short output. First call is cold (model load included)."
},
{
"id": "math",
"prompt": "What is 47 * 13? Answer with just the number, nothing else.",
"num_predict": 20,
"notes": "Short exact answer. Stresses the model's arithmetic grounding."
},
{
"id": "list",
"prompt": "List 10 common fruits, one per line, no numbering, no commentary.",
"num_predict": 80,
"notes": "Structured output, tests format adherence."
},
{
"id": "python",
"prompt": "Write a Python function that returns the reverse of a string. Just the function, no explanation.",
"num_predict": 100,
"notes": "Code generation. Representative of the main 'useful' use case on a phone."
},
{
"id": "explain",
"prompt": "Explain how a hash table works in two sentences.",
"num_predict": 120,
"notes": "Natural language reasoning, longer output."
}
]
}