Glossary / AI Fundamentals

Streaming

When an AI response appears piece by piece instead of waiting for the whole answer to finish.

Updated July 2, 2026

You see the answer forming while the model is still generating it. Streaming is the answer arriving while it’s being written. It can make the model feel faster, though the full work may take the same time. Streaming just sends the early pieces as soon as they’re ready, which lowers the felt latency.

Think of watching someone type a reply in a shared document. You don’t wait for them to print the final page and hand it to you. You see the first sentence, then the next, then the next. The work is still in progress, but you’re not staring at a blank page.

How it shows up

Chat tools feel more alive when they stream. If the answer is long, you can start reading before the model is done, and if it’s heading the wrong way, you can stop it earlier. Under the hood the model is doing inference, producing the response in small chunks. Streaming can also show up around tools: the model may start a thought, pause for a tool call, then continue after the tool returns. That pause doesn’t always mean the system is stuck; it may be waiting for a tool, API, browser, or file operation to finish.

Why you care

Streaming lets you supervise earlier. You can catch tone, direction, and misunderstandings before the full answer lands. If you asked for a client email and the first paragraph is clearly wrong, you don’t wait for five more. A streamed answer can still be wrong, so streaming just lets you watch the work unfold and catch problems sooner. When AI work is visible sooner, you can steer sooner, and steering early is usually cheaper than cleaning up late.