Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +13 -0
prompts.yaml
CHANGED
@@ -53,6 +53,19 @@
|
|
53 |
final_answer(f"The answer is {answer}")
|
54 |
```<end_code>
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
---
|
57 |
Task:
|
58 |
In a 1979 interview, Stanislaus Ulam discusses with Martin Sherwin about other great physicists of his time, including Oppenheimer.
|
|
|
53 |
final_answer(f"The answer is {answer}")
|
54 |
```<end_code>
|
55 |
|
56 |
+
---
|
57 |
+
Task:
|
58 |
+
"Answer the question in the variable `question` about the unit conversion stored in the variable `value`. The question is in English."
|
59 |
+
You have been provided with these additional arguments, that you can access using the keys as variables in your Python code:
|
60 |
+
{'question': 'Convert 100 F to C', 'value': 100, 'from_unit': 'F', 'to_unit': 'C'}
|
61 |
+
|
62 |
+
Thought: I will use the following tools: `convert_units` to convert the temperature from Fahrenheit to Celsius.
|
63 |
+
Code:
|
64 |
+
```py
|
65 |
+
result = convert_units(value=value, from_unit=from_unit, to_unit=to_unit)
|
66 |
+
final_answer(f"The answer is {result}")
|
67 |
+
```<end_code>
|
68 |
+
|
69 |
---
|
70 |
Task:
|
71 |
In a 1979 interview, Stanislaus Ulam discusses with Martin Sherwin about other great physicists of his time, including Oppenheimer.
|