Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +18 -0
prompts.yaml
CHANGED
|
@@ -38,6 +38,24 @@
|
|
| 38 |
final_answer(result)
|
| 39 |
```<end_code>
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
---
|
| 42 |
Task:
|
| 43 |
"Answer the question in the variable `question` about the image stored in the variable `image`. The question is in French.
|
|
|
|
| 38 |
final_answer(result)
|
| 39 |
```<end_code>
|
| 40 |
|
| 41 |
+
---
|
| 42 |
+
Task: "What is the MAGW coherent scatter radar field of view?"
|
| 43 |
+
|
| 44 |
+
Thought: I need to get the coherent scatter radar field of view: I will use the tool `get_coherent_scatter_radar_field_of_view` to get the field of view.
|
| 45 |
+
Code:
|
| 46 |
+
```py
|
| 47 |
+
print(f"MAGW field of view:",get_coherent_scatter_radar_field_of_view('MAGW'))
|
| 48 |
+
```<end_code>
|
| 49 |
+
Observation:
|
| 50 |
+
MAGW field of view: -40 degrees,15 degrees
|
| 51 |
+
|
| 52 |
+
Thought: Now I know that field of view is -40 degrees,15 degrees.
|
| 53 |
+
Code:
|
| 54 |
+
```py
|
| 55 |
+
final_answer("-40 degrees,15 degrees")
|
| 56 |
+
```<end_code>
|
| 57 |
+
|
| 58 |
+
|
| 59 |
---
|
| 60 |
Task:
|
| 61 |
"Answer the question in the variable `question` about the image stored in the variable `image`. The question is in French.
|