Terms  /  Context Quality  /  Prompt Bloat
01 · Context Quality

Prompt Bloat

Oversized, redundant context that forces unnecessary reasoning.

Prompt Bloat is what happens when Context Debt goes unaddressed and Context Load grows unchecked. The prompt is full of things the model doesn't need: repeated instructions, copy-pasted documentation, entire files when only a function signature was relevant, or the complete history of a conversation when only the last three turns matter. Every redundant token is a token the model must process, increasing cost and reducing the space available for useful work.

Example
A user asks an agent to fix a bug in a single function. The system automatically includes all 15 project files (42,000 tokens) in the context, even though only one 200-line file is relevant. The model processes 42,000 tokens, charges for the reasoning across all of them, and the fix is the same one it would have produced with 800 tokens of focused context. The remaining 41,200 tokens were pure bloat — paid for but not useful.

More in Context Quality