Spaces:
Running
Running
Update presentation_api.py
Browse files- presentation_api.py +1 -1
presentation_api.py
CHANGED
@@ -128,7 +128,7 @@ async def chat(input_data: ChatInput):
|
|
128 |
yield f"{json.dumps({'type': 'tool_start', 'tool': event['name'], 'input': tool_input})}\n"
|
129 |
|
130 |
elif kind == "on_tool_end":
|
131 |
-
tool_output =
|
132 |
yield f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output})}\n"
|
133 |
|
134 |
return EventSourceResponse(
|
|
|
128 |
yield f"{json.dumps({'type': 'tool_start', 'tool': event['name'], 'input': tool_input})}\n"
|
129 |
|
130 |
elif kind == "on_tool_end":
|
131 |
+
tool_output = event['data'].get('output', '')
|
132 |
yield f"{json.dumps({'type': 'tool_end', 'tool': event['name'], 'output': tool_output})}\n"
|
133 |
|
134 |
return EventSourceResponse(
|