Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +17 -0
prompts.yaml
CHANGED
@@ -97,6 +97,23 @@
|
|
97 |
Observation "Sunrise: 05:24 AM"
|
98 |
Correctly extracted both time fields from the Panchang output.
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
---
|
101 |
|
102 |
Task: "List today’s festivals."
|
|
|
97 |
Observation "Sunrise: 05:24 AM"
|
98 |
Correctly extracted both time fields from the Panchang output.
|
99 |
|
100 |
+
---
|
101 |
+
Task: "Tell me today's Sunset time."
|
102 |
+
|
103 |
+
Thought: I will call the `get_date_panchang` tool with default (today) and `data_language="EN"`, then extract only `Sunset` and from the result.
|
104 |
+
|
105 |
+
Code:
|
106 |
+
|
107 |
+
```py
|
108 |
+
data = get_date_panchang(data_language="EN")
|
109 |
+
sunset = extract_field(data, "Sunset")
|
110 |
+
|
111 |
+
print(f"Sunset: {sunset}")
|
112 |
+
```<end_code>
|
113 |
+
|
114 |
+
Observation "Sunset: 05:24 AM"
|
115 |
+
Correctly extracted both time fields from the Panchang output.
|
116 |
+
|
117 |
---
|
118 |
|
119 |
Task: "List today’s festivals."
|