Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ def chat_with_groq(message, history):
|
|
| 29 |
# Call Groq API
|
| 30 |
chat_completion = client.chat.completions.create(
|
| 31 |
messages=messages,
|
| 32 |
-
model="
|
| 33 |
)
|
| 34 |
|
| 35 |
reply = chat_completion.choices[0].message.content
|
|
|
|
| 29 |
# Call Groq API
|
| 30 |
chat_completion = client.chat.completions.create(
|
| 31 |
messages=messages,
|
| 32 |
+
model="mixtral-8x7b-32768", # your working model
|
| 33 |
)
|
| 34 |
|
| 35 |
reply = chat_completion.choices[0].message.content
|