Spaces:
Sleeping
Sleeping
Update excel_chat.py
Browse files- excel_chat.py +3 -1
excel_chat.py
CHANGED
|
@@ -78,8 +78,10 @@ def ask_llm(query, user_input, client_index, user, keys):
|
|
| 78 |
model=model_map[client_index],
|
| 79 |
messages=messageC
|
| 80 |
)
|
|
|
|
| 81 |
responseContent = response.choices[0].message.content
|
| 82 |
-
|
|
|
|
| 83 |
|
| 84 |
elif "Groq" in client_index:
|
| 85 |
try:
|
|
|
|
| 78 |
model=model_map[client_index],
|
| 79 |
messages=messageC
|
| 80 |
)
|
| 81 |
+
print(responseContent)
|
| 82 |
responseContent = response.choices[0].message.content
|
| 83 |
+
|
| 84 |
+
return responseContent,keys
|
| 85 |
|
| 86 |
elif "Groq" in client_index:
|
| 87 |
try:
|