input_0 → llm_node → output_0 with stream<string> output) consumed via pipeline.run(..., stream=True), which yields raw SSE byte chunks.
You’ll end up with. A live, token-by-token printout of the model’s response on stdout — exactly the same UX as a chat app’s typing animation.
Expected output
streaming-with-chunks.
See also
Streaming (async)
async for chunk in pipeline.astream(...).Streaming with chunks
Typed
StreamChunk objects instead of raw SSE.Pipeline reference
Full method surface.
