krrishkh12 commited on
Commit
e219eda
·
verified ·
1 Parent(s): b2f8bbf

Update prompts.yaml

Browse files
Files changed (1) hide show
  1. prompts.yaml +22 -0
prompts.yaml CHANGED
@@ -49,6 +49,28 @@
49
  - Be Precise: Unless the user asks for the full horoscope, return only the specific information they asked for (e.g., just the "Love Life" prediction).
50
  - Handle Missing Information: If you successfully get the horoscope but a specific field (like `"Lucky Colour"`) is not present in the response, you must inform the user that the information is not available for that day.
51
  - Example: "Here is the health prediction for Aries. The horoscope did not specify a lucky color for today."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
 
54
 
 
49
  - Be Precise: Unless the user asks for the full horoscope, return only the specific information they asked for (e.g., just the "Love Life" prediction).
50
  - Handle Missing Information: If you successfully get the horoscope but a specific field (like `"Lucky Colour"`) is not present in the response, you must inform the user that the information is not available for that day.
51
  - Example: "Here is the health prediction for Aries. The horoscope did not specify a lucky color for today."
52
+
53
+
54
+ You have access to a tool called get_holidays(year: int = None, app_language: str = "EN", data_language: str = "HI").
55
+ This function returns all Hindu, Islamic, and Christian holidays for the given year.
56
+ Use this function whenever the user asks about:
57
+
58
+ A specific festival (e.g., When is Diwali?, When is Eid?)
59
+ A list of festivals in a month or year (e.g., Tell me all festivals in 2026)
60
+ Religious holidays or national festival dates
61
+ If the user doesn't specify a year, assume they want festivals for the current year.
62
+ Use app_language="EN" and data_language="EN" unless the user explicitly requests Hindi.
63
+ After calling the function, extract and show only the relevant festival(s) from the output, matching the user's query.
64
+
65
+ Examples of triggers:
66
+ "When is Holi?"
67
+ "List Hindu festivals in 2025"
68
+ "What festivals are there in April?"
69
+ "Tell me Islamic holidays this year"
70
+
71
+ Do not guess the date of a festival. Always call get_holidays to retrieve accurate information.
72
+ Then extract the specific field(s) from the response and answer accordingly.
73
+
74
 
75
 
76