Under the hood (just enough)
The context window
The context window is the maximum number of tokens the model can attend to in one call. The whole assembled prompt plus the reply must fit inside it.
Three facts that change how you work
| Fact | What it means for you |
|---|---|
| Every turn re-sends everything. The call is stateless; turn 40 re-sends turns 1–39. | Long chats get slow and expensive (vendors cache the unchanging prefix to soften this). Start a fresh chat for a new task. |
| The reply goes back into the context, appended verbatim, then your next message after it. The transcript is the context. | Nothing is "stored in the model." If it isn't in the transcript or a file, it isn't anywhere. |
| The reply must fit too. | If you loaded most of the window, ask for a shorter answer or split the job. |