Spaces:
Sleeping
Sleeping
Update excel_chat.py
Browse files- 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='
|
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:
|