shivrajkarewar commited on
Commit
8264e34
·
verified ·
1 Parent(s): 174f064

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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