Spaces:
Running
Running
Update main.py
Browse files
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"
|