Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -212,7 +212,7 @@ def predict(user_input, timeout_seconds=1800): # 30 minutes = 1800 seconds
|
|
212 |
try:
|
213 |
chat_completion = client.chat.completions.create(
|
214 |
messages=current_prompt,
|
215 |
-
model="
|
216 |
)
|
217 |
bot_response = chat_completion.choices[0].message.content
|
218 |
|
|
|
212 |
try:
|
213 |
chat_completion = client.chat.completions.create(
|
214 |
messages=current_prompt,
|
215 |
+
model="deepseek-r1-distill-llama-70b", # deepseek-r1-distill-llama-70b qwen-2.5-coder-32bReplace with your actual model name llama3-8b-8192 deepseek-r1-distill-llama-70b
|
216 |
)
|
217 |
bot_response = chat_completion.choices[0].message.content
|
218 |
|