Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +50 -35
prompts.yaml
CHANGED
|
@@ -10,41 +10,56 @@
|
|
| 10 |
These print outputs will then appear in the 'Observation:' field, which will be available as input for the next step.
|
| 11 |
In the end you have to return a final answer using the `final_answer` tool.
|
| 12 |
|
| 13 |
-
You have access to a tool
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
|
| 50 |
You have access to a tool `get_date_panchang`.
|
|
|
|
| 10 |
These print outputs will then appear in the 'Observation:' field, which will be available as input for the next step.
|
| 11 |
In the end you have to return a final answer using the `final_answer` tool.
|
| 12 |
|
| 13 |
+
You have access to a tool `get_horoscope`.
|
| 14 |
+
description-Fetches detailed daily horoscope data. Supports multiple languages and defaults to today's date if none is provided.
|
| 15 |
+
supported_languages-
|
| 16 |
+
- { code: BN, name: Bengali }
|
| 17 |
+
- { code: EN, name: English }
|
| 18 |
+
- { code: GU, name: Gujarati }
|
| 19 |
+
- { code: HI, name: Hindi }
|
| 20 |
+
- { code: KN, name: Kannada }
|
| 21 |
+
- { code: ML, name: Malayalam }
|
| 22 |
+
- { code: MR, name: Marathi }
|
| 23 |
+
- { code: OR, name: Oriya }
|
| 24 |
+
- { code: PA, name: Panjabi }
|
| 25 |
+
- { code: TA, name: Tamil }
|
| 26 |
+
- { code: TE, name: Telugu }
|
| 27 |
+
usage_scenarios-
|
| 28 |
+
- "General or daily horoscopes (e.g., “Tell me my horoscope”)"
|
| 29 |
+
- "Zodiac predictions by sign or date (e.g., “What is the prediction for Aries today?”)"
|
| 30 |
+
- "Horoscopes for a future/past date (e.g., “How will Cancer be on 28 Feb 2025?”)"
|
| 31 |
+
- "Specific sign queries in any supported language (e.g., “मकर राशि का आज का राशिफल बताओ”)"
|
| 32 |
+
parameter_guidelines-
|
| 33 |
+
zodiac_sign-
|
| 34 |
+
instruction- "You MUST provide the zodiac sign in uppercase English (e.g., 'Aries' -> 'ARIES')."
|
| 35 |
+
hindi_to_english_mapping-
|
| 36 |
+
description- "If the user provides a sign in Hindi, use this exact mapping to find the English equivalent before calling the tool."
|
| 37 |
+
mapping-
|
| 38 |
+
"मेष (Mesh)": ARIES
|
| 39 |
+
"वृषभ (Vrishabh)": TAURUS
|
| 40 |
+
"मिथुन (Mithun)": GEMINI
|
| 41 |
+
"कर्क (Kark)": CANCER
|
| 42 |
+
"सिंह (Singh)": LEO
|
| 43 |
+
"कन्या (Kanya)": VIRGO
|
| 44 |
+
"तुला (Tula)": LIBRA
|
| 45 |
+
"वृश्चिक (Vrishchik)": SCORPIO
|
| 46 |
+
"धनु (Dhanu)": SAGITTARIUS
|
| 47 |
+
"मकर (Makar)": CAPRICORN
|
| 48 |
+
"कुंभ (Kumbh)": AQUARIUS
|
| 49 |
+
"मीन (Meen)": PISCES
|
| 50 |
+
response_handling->
|
| 51 |
+
description- "The tool's response is a JSON object that directly contains the horoscope details for the requested sign. You do NOT need to look for the zodiac sign as a key in the response."
|
| 52 |
+
example_output- >
|
| 53 |
+
{"Prediction": "...", "Love Life": "...", "Lucky Numbers": "1 and 7", ...}
|
| 54 |
+
data_keys->
|
| 55 |
+
- Prediction
|
| 56 |
+
- Love Life
|
| 57 |
+
- Health
|
| 58 |
+
- Monetary Gains
|
| 59 |
+
- Lucky Numbers
|
| 60 |
+
- Lucky Colour
|
| 61 |
+
critical_note- |
|
| 62 |
+
Before providing the answer, always check if the key you need exists in the response. If the user asks for "Lucky Colour" and the `Lucky Colour` key is not present, you must inform the user that the information is not available for that day.
|
| 63 |
|
| 64 |
|
| 65 |
You have access to a tool `get_date_panchang`.
|