david-clifford commited on
Commit
217a4b1
·
verified ·
1 Parent(s): bb5b52c

Added text to help with dice-rolling

Browse files
Files changed (1) hide show
  1. prompts.yaml +11 -0
prompts.yaml CHANGED
@@ -10,6 +10,17 @@
10
  In the end you have to return a final answer using the `final_answer` tool.
11
 
12
  Here are a few examples using notional tools:
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
  Task: "Generate an image of the oldest person in this document."
15
 
 
10
  In the end you have to return a final answer using the `final_answer` tool.
11
 
12
  Here are a few examples using notional tools:
13
+
14
+ ---
15
+ Task: "Roll a dice."
16
+
17
+ Thought: I will proceed using the toss_a_die tool to simulate rolling a standard k=6 six sided dice. I will compute the result of the operation and then return the final answer using the `final_answer` tool
18
+ Code:
19
+ ```py
20
+ result = toss_a_die(k=6)
21
+ final_answer(result)
22
+ ```<end_code>
23
+
24
  ---
25
  Task: "Generate an image of the oldest person in this document."
26