Spaces:
Sleeping
Sleeping
Commit
·
a29b89a
1
Parent(s):
842c735
Update app.py
Browse files
app.py
CHANGED
@@ -97,8 +97,7 @@ def main():
|
|
97 |
)
|
98 |
|
99 |
st.title("Couple's Horoscope Insights Using GenAI")
|
100 |
-
st.
|
101 |
-
st.markdown('Get your Moon Sign from here: https://instaastro.com/vedic-astrology/moon-sign-calculator/')
|
102 |
|
103 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
104 |
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|
@@ -139,9 +138,9 @@ def main():
|
|
139 |
if st.button("Show Insights"):
|
140 |
with st.spinner("Generating Insights..."):
|
141 |
prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
|
142 |
-
st.info("Today's is: " + strtime + " Male (Husband's) Moon Sign: " + m_sign + " Wife's Moon Sign: " + f_sign)
|
143 |
#st.success("Insight generated!")
|
144 |
-
st.markdown(
|
145 |
|
146 |
if __name__ == '__main__':
|
147 |
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: https://instaastro.com/vedic-astrology/moon-sign-calculator/')
|
|
|
101 |
|
102 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
103 |
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|
|
|
138 |
if st.button("Show Insights"):
|
139 |
with st.spinner("Generating Insights..."):
|
140 |
prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
|
141 |
+
st.info("Today's is: " + strtime + "| Male (Husband's) Moon Sign: " + m_sign + "| Wife's Moon Sign: " + f_sign)
|
142 |
#st.success("Insight generated!")
|
143 |
+
st.markdown(prediction)
|
144 |
|
145 |
if __name__ == '__main__':
|
146 |
main()
|