Datasets:
Create prompt_templates.md
Browse files- metadata/prompt_templates.md +48 -0
metadata/prompt_templates.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Prompt Templates
|
| 2 |
+
|
| 3 |
+
This file documents the public prompt serialization used by the current release build. Separate source-side task-meta prompting is intentionally disabled in this public release.
|
| 4 |
+
|
| 5 |
+
## Standard multiple-choice template
|
| 6 |
+
|
| 7 |
+
```text
|
| 8 |
+
{question}
|
| 9 |
+
|
| 10 |
+
A: {choice_A}
|
| 11 |
+
B: {choice_B}
|
| 12 |
+
...
|
| 13 |
+
|
| 14 |
+
Choose exactly one option label.
|
| 15 |
+
|
| 16 |
+
Output protocol:
|
| 17 |
+
- You may include brief reasoning before the final answer.
|
| 18 |
+
- The final line must be exactly: <ANSWER>A</ANSWER>
|
| 19 |
+
- Do not output anything after </ANSWER>.
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## `T8` Temporal Ordering template
|
| 23 |
+
|
| 24 |
+
```text
|
| 25 |
+
You are shown 3 frames from a robot manipulation task.
|
| 26 |
+
The frames are labeled X, Y, Z (these labels are arbitrary identifiers, not positional, and not time-ordered).
|
| 27 |
+
Determine the correct chronological order of these frames (from earliest to latest).
|
| 28 |
+
Choose exactly one 3-letter permutation, for example: YXZ means Y happened first, then X, then Z.
|
| 29 |
+
|
| 30 |
+
Output protocol:
|
| 31 |
+
- You may include brief reasoning before the final answer.
|
| 32 |
+
- The final line must be exactly: <ANSWER>XYZ</ANSWER>
|
| 33 |
+
- Do not output anything after </ANSWER>.
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## `T9` Temporal Priority template
|
| 37 |
+
|
| 38 |
+
```text
|
| 39 |
+
A single comparison image shows two labeled robot-manipulation panels from the same episode.
|
| 40 |
+
The left-right placement of the panels and the labels are arbitrary identifiers and do not indicate temporal order.
|
| 41 |
+
Which labeled panel happened earlier in the real manipulation sequence, X or Y?
|
| 42 |
+
Choose exactly one label: X or Y.
|
| 43 |
+
|
| 44 |
+
Output protocol:
|
| 45 |
+
- You may include brief reasoning before the final answer.
|
| 46 |
+
- The final line must be exactly: <ANSWER>X</ANSWER>
|
| 47 |
+
- Do not output anything after </ANSWER>.
|
| 48 |
+
```
|