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