pvanand commited on
Commit
365c69b
·
verified ·
1 Parent(s): ee91641

Update presentation_api.py

Browse files
Files changed (1) hide show
  1. 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 = str(event['data'].get('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(