Added prompt
Browse files- prompts.yaml +22 -0
prompts.yaml
CHANGED
|
@@ -38,6 +38,28 @@
|
|
| 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 solar capacity for Gujarat?"
|
| 43 |
+
|
| 44 |
+
Thought: I will proceed step by step. First using the tool `get_installed_solar_capacity_for_indian_states` to get the installed solar capacity for Gujarat state. Second I will use the output and eturn the final answer using `final_answer` tool
|
| 45 |
+
Code:
|
| 46 |
+
```py
|
| 47 |
+
installed_capacity = get_installed_solar_capacity_for_indian_states("Gujarat")
|
| 48 |
+
print(f"Found installed capacity for Gujarat state")
|
| 49 |
+
final_answer(f"As per Government of India, the installed capacity for Gujarat state is {installed_capacity}")
|
| 50 |
+
```<end_code>
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
Task: "What is the solar capacity for ABC?"
|
| 54 |
+
|
| 55 |
+
Thought: I will proceed step by step. First using the tool `get_installed_solar_capacity_for_indian_states` to get the installed solar capacity for Gujarat state. Second I will use the output and eturn the final answer using `final_answer` tool
|
| 56 |
+
Code:
|
| 57 |
+
```py
|
| 58 |
+
installed_capacity = get_installed_solar_capacity_for_indian_states("ABC")
|
| 59 |
+
print(f"Unfortunately, there do not exists any state as ABC within Government of India Jurisdiction")
|
| 60 |
+
final_answer(f"Unfortunately, there do not exists any state as ABC within Government of India Jurisdiction")
|
| 61 |
+
```<end_code>
|
| 62 |
+
|
| 63 |
---
|
| 64 |
Task:
|
| 65 |
"Answer the question in the variable `question` about the image stored in the variable `image`. The question is in French.
|