Model architectures
The half of a model that writes output one token at a time, each new token based only on what came before it.
Formal
A stack of neural network layers in which each token may look only at earlier tokens, so the stack can guess the next token, add it to the text and repeat; decoder-only designs drop the encoder entirely.
In plain English
Like a storyteller by a campfire who can hear everything said so far but never peeks ahead, adding one word, then the next.
In practice
A product owner at a webshop sees that product texts twice as long take about twice as long to appear and cost twice as much, because the decoder must produce every token in turn.
Why it matters
Almost every large language model is decoder-only, which is why replies arrive gradually and why the length of an answer, not just the question, drives its cost.