- Defines how much context a model can use in one request
- Larger windows let models handle long documents and conversations
- Guides chunking strategies for feeding large content to models
- Affects cost, since more tokens in the window mean higher usage
A token is a chunk of text, often a word or word-piece, that the model processes as a unit; token counts determine context usage.
It limits how much input and output a model can handle at once, shaping how you structure prompts and long documents.
The model cannot process the overflow, so text must be truncated, chunked, or summarised to fit within the limit.
Hello popup window