baohuynhbk14 commited on
Commit
2304772
·
1 Parent(s): ca55e17

Add logging for AI response in http_bot function

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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