pvanand commited on
Commit
2cda7d3
1 Parent(s): 3767b3a

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -1
main.py CHANGED
@@ -466,7 +466,8 @@ async def followup_agent(query: FollowupQueryModel, background_tasks: Background
466
  for content in chat_with_llama_stream(limited_conversation, model=query.model_id):
467
  full_response += content
468
  yield content
469
-
 
470
  response_content, clarification = parse_followup_response(full_response)
471
 
472
  result = {
 
466
  for content in chat_with_llama_stream(limited_conversation, model=query.model_id):
467
  full_response += content
468
  yield content
469
+
470
+ logger.info(f"LLM RAW response for query: {query.query}: {full_response}")
471
  response_content, clarification = parse_followup_response(full_response)
472
 
473
  result = {