Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/stream_tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class MyStreamingSynapse(bt.StreamingSynapse):
return self.completion

# implement your `process_streaming_response` logic to actually yield objects to the streamer
# this effectively defines the async generator that you'll recieve on the client side
# this effectively defines the async generator that you'll receive on the client side
async def process_streaming_response(self, response: MyStreamingSynapse):
# this is an example of how you might process a streaming response
# iterate over the response content and yield each line
Expand Down