Zenaique
Glossary · Production

Streaming

Also known as: Token streaming, SSE streaming

Send tokens to the client as they're generated instead of buffering the full response. Much better UX.

Returning model tokens to the client as they're generated rather than waiting for the full response. Implemented via server-sent events (SSE) or chunked HTTP. Drops time-to-first-token from seconds to ~hundreds of ms.

In practice

Default UX expectation for chat apps. Interviews probe SSE vs WebSocket, backpressure, and how to interleave tool calls with streaming.

Related topics

Related terms