# Why does each turn get pricier as an agent's run goes on?

Because each step in a multi-step run carries the previous steps' tool output and reasoning forward into the next call's prompt, so the input side of the bill grows even though the task itself hasn't gotten any bigger. A ten-step tool-using loop can end up sending far more input tokens in total than the same steps would cost run independently: one benchmark measured a naive 10-step file-reading agent at 43.3 times the token cost of a single-pass version of the same task (Augment Code).

That's the specific shape of a prompt that grew, the kind of thing cost_drift is built to catch. It shows up as a gradual, turn-over-turn climb rather than a sudden jump, which is why cost_drift checks a rolling recent baseline as well as one pinned at the last deploy: a creep like this would slip past a comparison built only to catch a sudden break.

---

Sources:
- Augment Code: AI agent loop token cost and context constraints: https://www.augmentcode.com/guides/ai-agent-loop-token-cost-context-constraints (fetched 2026-08-25)

Source: https://tessary.ai/answers/tessary-cost-drift/why-does-each-turn-get-pricier-as-a-run-goes-on
More on Tessary cost drift: https://tessary.ai/answers/tessary-cost-drift
From Tessary, agent reliability for AI agents in production: https://tessary.ai
