pvanand commited on
Commit
5dc7f33
·
verified ·
1 Parent(s): 2f9be62

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -175,7 +175,7 @@ async def chat(input_data: ChatInput):
175
  tool_output = event['data'].get('output', '').content
176
  artifact_output = event['data'].get('output', '').artifact.get('artifacts_data') if event['data'].get('output', '').artifact else None
177
  yield f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output, 'artifacts_data': artifact_output})}\n"
178
- print(f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output, 'artifacts_data': artifact_output})}\n")
179
  return EventSourceResponse(
180
  generate(),
181
  media_type="text/event-stream"
 
175
  tool_output = event['data'].get('output', '').content
176
  artifact_output = event['data'].get('output', '').artifact.get('artifacts_data') if event['data'].get('output', '').artifact else None
177
  yield f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output, 'artifacts_data': artifact_output})}\n"
178
+ #print(f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output, 'artifacts_data': artifact_output})}\n")
179
  return EventSourceResponse(
180
  generate(),
181
  media_type="text/event-stream"