Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ def predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly
|
|
77 |
client = Groq()
|
78 |
client = Groq(api_key = os.getenv("GROQ_API_KEY"))
|
79 |
chatresponse = client.chat.completions.create(
|
80 |
-
model="
|
81 |
messages=[
|
82 |
{"role": "system", "content": "You are a Horoscope Analyser. Think step by step. Answer in details with professional and dramatic tone"},
|
83 |
{"role": "user", "content": template},
|
@@ -194,7 +194,7 @@ def main():
|
|
194 |
layout="wide"
|
195 |
)
|
196 |
|
197 |
-
st.title("Couple's Horoscope Insights
|
198 |
st.markdown('Based on **Moon Signs** and **Vedic Astrology**. Get your Moon Sign from [here](https://instaastro.com/vedic-astrology/moon-sign-calculator/)')
|
199 |
|
200 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
|
|
77 |
client = Groq()
|
78 |
client = Groq(api_key = os.getenv("GROQ_API_KEY"))
|
79 |
chatresponse = client.chat.completions.create(
|
80 |
+
model="deepseek-r1-distill-llama-70b",
|
81 |
messages=[
|
82 |
{"role": "system", "content": "You are a Horoscope Analyser. Think step by step. Answer in details with professional and dramatic tone"},
|
83 |
{"role": "user", "content": template},
|
|
|
194 |
layout="wide"
|
195 |
)
|
196 |
|
197 |
+
st.title("Couple's Horoscope Insights")
|
198 |
st.markdown('Based on **Moon Signs** and **Vedic Astrology**. Get your Moon Sign from [here](https://instaastro.com/vedic-astrology/moon-sign-calculator/)')
|
199 |
|
200 |
signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|