Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,8 @@ headers = {"Authorization": f"Bearer {groq_api_key}"}
|
|
| 15 |
# Function to interact with Groq API
|
| 16 |
def chat_with_groq(user_input):
|
| 17 |
body = {
|
| 18 |
-
"model": "llama-3.1-8b-instant",
|
|
|
|
| 19 |
"messages": [{"role": "user", "content": user_input}]
|
| 20 |
}
|
| 21 |
|
|
|
|
| 15 |
# Function to interact with Groq API
|
| 16 |
def chat_with_groq(user_input):
|
| 17 |
body = {
|
| 18 |
+
#"model": "llama-3.1-8b-instant",
|
| 19 |
+
"model": "deepseek-r1-distill-qwen-32b",
|
| 20 |
"messages": [{"role": "user", "content": user_input}]
|
| 21 |
}
|
| 22 |
|