There was an error while loading. Please reload this page.
1 parent 9caf667 commit 3635aa1Copy full SHA for 3635aa1
examples/basic/stream_function_call_args.py
@@ -62,7 +62,7 @@ async def main():
62
elif isinstance(event.data, ResponseFunctionCallArgumentsDeltaEvent):
63
if current_active_call_id and current_active_call_id in function_calls:
64
function_calls[current_active_call_id]['arguments'] += event.data.delta
65
- print(f" + {event.data.delta}", end="", flush=True)
+ print(event.data.delta, end="", flush=True)
66
67
# Function call completed
68
elif event.data.type == "response.output_item.done":
0 commit comments