JuliaKreutzerCohere commited on
Commit
393e99a
·
verified ·
1 Parent(s): 9244f20

Upload folder using huggingface_hub

Browse files
prompts/default.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `{task_type}`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ Read the QUERY instructions carefully — this task type may be unfamiliar. Learn only from CONTEXT, then produce answers in exactly the form the QUERY asks for.
10
+
11
+ How to solve:
12
+ 1. Deduce the linguistic rules from the CONTEXT examples only.
13
+ 2. Apply those rules to every item in QUERY, in order.
14
+ 3. Match the answer unit and format shown by the instructions and CONTEXT (words, letters, digits, transcriptions, etc.).
15
+ 4. Put only the bare required answer on each answer line — no glosses, numbering, or commentary.
16
+
17
+ Draft, then verify completeness and format. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare answer per QUERY item in QUERY order — no numbering, no quotes, no extra text.
prompts/fill_blanks.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `fill_blanks`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ This is a fill-in-the-blanks task. Missing pieces may be whole words, morphemes, or phonetic segments — match the kind of unit CONTEXT uses in the corresponding positions.
10
+
11
+ How to solve:
12
+ 1. Study complete CONTEXT examples to recover the paradigm / pattern.
13
+ 2. Identify exactly what is missing in each QUERY blank (not what could be invented).
14
+ 3. Fill each blank with only the missing form, in the same style as CONTEXT (including transcription brackets if CONTEXT uses them).
15
+ 4. Return one filled form per blank, in the order blanks / items appear in QUERY.
16
+
17
+ Draft, then verify every blank has an answer. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare filled form per blank/item — no numbering, no quotes, no extra text.
prompts/match_letters.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `match_letters`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ This is a matching / multiple-choice letter task. Each QUERY item asks you to choose among labeled options (A, B, C, ...).
10
+
11
+ How to solve:
12
+ 1. Extract the mapping or rule set from CONTEXT.
13
+ 2. For each numbered QUERY item, evaluate the options against that rule set.
14
+ 3. Return only the chosen option letter (A, B, C, ...), uppercase.
15
+ 4. Do not repeat the option text, explanations, or punctuation around the letter on the answer lines.
16
+
17
+ Draft, then check you have one letter per QUERY item. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare letter per item in QUERY order — no numbering, no quotes, no extra text.
prompts/num_to_text.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `num_to_text`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ This is a number-to-text task. CONTEXT shows how digit values are written as number words (or expressions) in the target language; convert each QUERY number into that written form.
10
+
11
+ How to solve:
12
+ 1. Infer the number-word construction rules from CONTEXT (bases, multipliers, conjunctions, morphology).
13
+ 2. Apply them to each QUERY number.
14
+ 3. Return only the number written out in words / forms as in CONTEXT's language style.
15
+ 4. Do not output digits on the answer lines and do not add English glosses or commentary.
16
+
17
+ Draft, then verify each QUERY item has a written numeral form. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare written form per item in QUERY order — no numbering, no quotes, no extra text.
prompts/text_to_num.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `text_to_num`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ This is a text-to-number task. CONTEXT shows how number words (or number expressions) map to values; convert each QUERY expression into digits.
10
+
11
+ How to solve:
12
+ 1. Infer the number system from CONTEXT (bases, place values, multipliers, word order).
13
+ 2. Apply it to each QUERY expression.
14
+ 3. Return only the numeric value in ordinary digits (e.g. 42), with no units or words.
15
+ 4. Do not spell numbers out and do not add commentary on the answer lines.
16
+
17
+ Draft, then verify each QUERY item has a digit answer. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare number per item in QUERY order — no numbering, no quotes, no extra text.
prompts/translation.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CONTEXT:
2
+ {context}
3
+
4
+ TASK TYPE: `translation`
5
+
6
+ QUERY:
7
+ {query}
8
+
9
+ This is a translation task. Use only the CONTEXT examples to learn how forms map between languages (or between orthography and meaning), then translate each QUERY item.
10
+
11
+ How to solve:
12
+ 1. Align CONTEXT pairs and find systematic correspondences (roots, affixes, word order, agreement).
13
+ 2. Apply those rules to each QUERY item in order.
14
+ 3. Output only the translated form itself — in the language the QUERY asks for.
15
+ 4. Do not add glosses, English explanations, punctuation wrappers, or commentary on the answer lines.
16
+
17
+ Draft, then check completeness and format. Finally write a line that says exactly `FINAL ANSWERS:` and, below it, one bare translation per QUERY item, in QUERY order — no numbering, no quotes, no extra text.