YchKhan commited on
Commit
fd68761
·
verified ·
1 Parent(s): 51d8bdd

Update excel_chat.py

Browse files
Files changed (1) hide show
  1. excel_chat.py +1 -1
excel_chat.py CHANGED
@@ -82,7 +82,7 @@ def ask_llm(query, user_input, client_index, user, keys):
82
  client = Groq(api_key= os.getenv(keys[0]))
83
  chat_completion = client.chat.completions.create(
84
  messages=messages,
85
- model='mixtral-8x7b-32768',
86
  )
87
  response = chat_completion.choices[0].message.content
88
  else:
 
82
  client = Groq(api_key= os.getenv(keys[0]))
83
  chat_completion = client.chat.completions.create(
84
  messages=messages,
85
+ model='llama3-8b-8192',
86
  )
87
  response = chat_completion.choices[0].message.content
88
  else: