Spaces:
Running
Running
Commit
·
3b70932
1
Parent(s):
1df47ed
Update app.py
Browse files
app.py
CHANGED
@@ -9,18 +9,18 @@ openai.api_key = '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'
|
|
9 |
|
10 |
template = """Shared with you the horoscopes of today, this week, and this month for a couple.
|
11 |
Your task is to analyse them provide insights to the couple from all the horoscopes.
|
12 |
-
If you find any event or scenarios mentioned in this month's horoscope and that event is not mentioned in this week's horoscope,
|
13 |
-
If you find any event or scenarios mentioned in this week's horoscope and that event is not mentioned in today's horoscope,
|
14 |
Add a section for Today's HoroScope Summary for Husband.
|
15 |
Add a section for Today's HoroScope Summary for Wife.
|
16 |
Add a section for Couple's HoroScope Insights For This Month.
|
17 |
-
Add a section for Next Week's Prediction and Tommorow's Prediction.
|
18 |
Add a section to aware the couple for any upcoming negative traits or events or scenarios.
|
19 |
Add a section to notify about all the Lucky Dates.
|
|
|
20 |
Add a section of Couple Compatibility based on the moon signs of the couple, use your own knowledge and intelligence to deduce it.
|
21 |
-
Use BOLD headlines for all sections.
|
22 |
-
Use BULLET points for details for all sections.
|
23 |
-
Add
|
24 |
"""
|
25 |
|
26 |
def get_daily_pred(url):
|
@@ -97,7 +97,7 @@ def main():
|
|
97 |
)
|
98 |
|
99 |
st.title("Couple's Horoscope Insights Using GenAI")
|
100 |
-
st.markdown('Based on **Moon Signs**. Get your Moon Sign from here
|
101 |
|
102 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
103 |
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|
|
|
9 |
|
10 |
template = """Shared with you the horoscopes of today, this week, and this month for a couple.
|
11 |
Your task is to analyse them provide insights to the couple from all the horoscopes.
|
12 |
+
If you find any event or scenarios mentioned in this month's horoscope and that event is not mentioned in this week's horoscope, consider that as a predicting next week's scenarios.
|
13 |
+
If you find any event or scenarios mentioned in this week's horoscope and that event is not mentioned in today's horoscope, consider that for predicting tommorow's scenarios.
|
14 |
Add a section for Today's HoroScope Summary for Husband.
|
15 |
Add a section for Today's HoroScope Summary for Wife.
|
16 |
Add a section for Couple's HoroScope Insights For This Month.
|
|
|
17 |
Add a section to aware the couple for any upcoming negative traits or events or scenarios.
|
18 |
Add a section to notify about all the Lucky Dates.
|
19 |
+
Add a section for Next Week's Prediction and Tommorow's Prediction.
|
20 |
Add a section of Couple Compatibility based on the moon signs of the couple, use your own knowledge and intelligence to deduce it.
|
21 |
+
Use BOLD headlines for all sections using MARKDOWN (**bold**).
|
22 |
+
Use BULLET points for details for all sections using MARKDOWN (Unordered List).
|
23 |
+
Add EMOJIS to look interesting.
|
24 |
"""
|
25 |
|
26 |
def get_daily_pred(url):
|
|
|
97 |
)
|
98 |
|
99 |
st.title("Couple's Horoscope Insights Using GenAI")
|
100 |
+
st.markdown('Based on **Moon Signs** and **Vedic Astrology**. Get your Moon Sign from [here](https://instaastro.com/vedic-astrology/moon-sign-calculator/)')
|
101 |
|
102 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
103 |
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|