The 62% Tax: Re-Sent Context Is Quietly Eating Your Agent Bill

By Mathew Gale · AI security + Agentic Ops · Updated 2026-08-03

Here's the number that should annoy you: 62% of what you pay for agent inference is the model being told things it already knows. You're buying the same context over, and over, and over.

The invisible tax

The model doesn't remember the last call. So every time an agent loops, it gets the whole story again. The system prompt, the task, the steps it already took, the data it pulled. None of that is new. It's a resend.

Stanford's Digital Economy Lab measured this in their 2025 Agentic AI Cost Attribution work. Re-sent context is 62% of the total agent inference bill. Not 6%, and not a rounding error you can ignore. Six of every ten dollars you spend on the agent goes to repetition.

62%. That's the share of a typical agent inference bill spent re-sending context the model already saw. The rest is the actual work.

An agentic workflow isn't a chatbot that answers once and quits. The model forgets what it just did, so you hand it everything again on the next turn. The tax is invisible because the invoice just says "tokens."

Why agents multiply it

A chatbot answers once. The user asks a question, the model replies, done. An agent doesn't stop. It plans, calls a tool, reads the result, decides, calls again. Fifteen model calls per task is normal, and each one ships the full context back to the model because the model has no memory of the call before.

The context also grows. Every tool result, every retrieved document, every intermediate step gets appended and resent on the next turn. A task that started at a few thousand tokens ends at a few hundred thousand. Agentic workflows burn 5 to 30 times more tokens per task than a single chatbot query, and most of that spend is the model re-reading itself.

The 62% math

A support agent handles one ticket. It reads the policy doc, the customer history, and the prior messages, then calls a tool, reads the result, and calls again. By call 15, the model has been handed that policy doc 15 times. It read it the first time. The other 14 reads are paid re-reads.

A research agent is worse. It retrieves 30 documents, summarizes them, retrieves more, summarizes again. Each turn resends every prior summary plus every source it might still need. The useful new text per call shrinks to a trickle while the bill grows with the loop. That gap is where the 62% lives.

Why the falling token price doesn't fix it

Token prices dropped. Ramp's data shows cost per million tokens fell from about $10 to $2.50 in a single year. Cheaper per token. Good news, right?

No. Volume blew up faster. A lower unit price just made it painless to send more of them, and agents send a lot. Your bill still balloons because you're shipping 10 times the units at a quarter of the price. Lower unit cost is not the same as lower total cost, and agents are a total-cost problem.

The wider market agrees this hurts. Gartner has median enterprise LLM bills growing 7.2 times year over year, and the FinOps Foundation found 73% of enterprises watched AI costs blow past projections. Enterprise AI inference is 85% of total AI budgets. Uber's CTO said in April 2026 that the budget he thought he would need was already blown away.

Where it compounds

The ugly version runs at 3am. A loop spins out of control. A retry storm fires. A sub-agent spawns three more sub-agents, each carrying its own copy of the context, each resending the same payload. Nobody authorized that spend. Nobody is even awake. Finout tracks exactly this: agents burn tokens overnight with no single human signing off.

That's the scariest face of the 62% tax. It isn't just waste you can see on a dashboard. It's waste that runs while you sleep, and the bill shows up the next morning.

How to actually cut it

Some of this is plumbing, not magic.

The first three are usually most of the win, and most teams never open the dashboard to check.

A note from someone who runs agents

I run a real multi-agent fleet in production, not a demo. The first time I broke out token spend by call type, I expected the model's answers to be the cost. They weren't. The resends were. I was paying my agents to re-read the same policy doc hundreds of times a day.

I spent 14 years in enterprise IT ops at Wells Fargo, and the lesson transfers: you can't govern what you can't see. We cut MTTR 40% with observability there. Same idea here. Put meters on the agents, find the re-read, stop paying for it.

The model forgetting between calls isn't a bug you patch in the model. That's how transformers work. So the fix is in how you build the loop. Cache the static, summarize the running, cap the spend. That's the whole job.

Want to see what's actually eating your agent bill?

Book a free Agent Cost Audit. We'll trace your spend by call type and show you the resend tax in your own numbers, not a benchmark.

Book Free Agent Cost Audit →

Or read how we run the fleet: Agentic Ops service →

Related: Agentic Ops Service · Prompt Injection: LLM's #1 Risk (2026)