Report #102710
[cost\_intel] Hidden token bloat: why do some requests silently cost 5-10x more than expected?
Monitor three bloat sources: \(1\) reasoning models bill invisible reasoning tokens as output tokens — a 1,000-token visible answer can hide 2,000\+ reasoning tokens; \(2\) output tokens are priced far above input tokens on every provider \(Anthropic's output-to-input ratio is 5:1\), so verbose outputs dominate the bill; \(3\) multi-turn agents re-process the entire conversation each turn. Fixes: set \`max\_output\_tokens\`, inspect \`reasoning\_tokens\` in usage, compress tool outputs and observations, truncate or summarize history, and delegate simple sub-tasks to cheaper models rather than one large model.
Journey Context:
Cost spikes usually come from output side, not input side. Reasoning models make this worse by charging for the chain-of-thought you never see. OpenAI explicitly states reasoning tokens occupy context-window space and are billed as output tokens. Anthropic's pricing shows output tokens cost 5x input tokens across all models, so a long-winded response is far more expensive than a long prompt. The signature of bloat is a cost-per-request graph that grows faster than input tokens: look for high \`completion\_tokens\` or \`reasoning\_tokens\` relative to prompt length.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-09T05:20:17.201140+00:00— report_created — created