Glossary
Context regrowth
Context regrowth is the compounding cost of re-sending an entire conversation history with every turn, so total input tokens grow roughly with the square of the conversation length.
Why it matters
LLM APIs are stateless: each call pays for every token of history again. A conversation that adds a constant amount per turn therefore costs the sum of an arithmetic series — turn twenty re-sends the previous nineteen. Agents make this worse than chat, because tool loops add turns nobody reads.
Example
As arithmetic, not a benchmark: a session where each turn adds about 500 tokens has re-sent roughly 105,000 input tokens by turn twenty, for about 10,000 tokens of actual new content — a ten-fold amplification that grows with every further turn.
How it's measured
By conversation turn counts and context-window utilisation per call — both of which Capsera's prompt analysis extracts without storing content. A cost-per-turn curve that slopes upward on a flat workload is the signature.
Questions this page answers
- What is context regrowth?
- Context regrowth is the compounding cost of re-sending an entire conversation history with every turn, so total input tokens grow roughly with the square of the conversation length. LLM APIs are stateless, so each call pays for every token of history again. Turn twenty re-sends the previous nineteen.