Spaces:
Runtime error
Runtime error
Update main.py
Browse files
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 = {
|