Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
2304772
1
Parent(s):
ca55e17
Add logging for AI response in http_bot function
Browse files
app.py
CHANGED
|
@@ -320,6 +320,8 @@ def http_bot(
|
|
| 320 |
return
|
| 321 |
|
| 322 |
ai_response = state.return_last_message()
|
|
|
|
|
|
|
| 323 |
|
| 324 |
state.end_of_current_turn()
|
| 325 |
|
|
|
|
| 320 |
return
|
| 321 |
|
| 322 |
ai_response = state.return_last_message()
|
| 323 |
+
|
| 324 |
+
logger.info(f"==== response ====\n{ai_response}")
|
| 325 |
|
| 326 |
state.end_of_current_turn()
|
| 327 |
|