Glossary
Agentic spend
Agentic spend is the money an autonomous AI system consumes deciding how to do its work, rather than the money a fixed application spends executing a known number of calls.
Why it matters
The distinction is not semantic. A conventional application's LLM cost is roughly a function of traffic, so it can be forecast from usage. An agent's cost is a function of the decisions it makes at runtime — how many steps it takes, how many tools it calls, whether it retries — so the same request can cost very different amounts on different days. That is why agentic spend needs governing rather than merely reporting.
Example
A chat feature that makes exactly one call per message has predictable cost per message. A research agent handling the same question may take three steps or thirty depending on what it finds, spawning sub-agents as it goes. The second is agentic spend: unbounded by construction unless something bounds it.
How it's measured
By attributing every call to the agent and the run that produced it, then looking at the distribution rather than the mean — p50 and p95 cost per run. A widening gap between them is the signal that behaviour, not traffic, is driving the bill.
Questions this page answers
- What is agentic spend?
- Agentic spend is the money an autonomous AI system consumes deciding how to do its work, rather than the money a fixed application spends executing a known number of calls. Because an agent chooses its own number of steps at runtime, the same request can cost very different amounts on different runs. That variability is what makes it a governance problem rather than a reporting one.
- What is an AI agent spend platform?
- An AI agent spend platform attributes LLM cost to the agents and runs that caused it, sets budget envelopes at that level, and enforces them before calls execute. It differs from an observability platform, which records what happened, and from a gateway, which routes traffic and meters credentials. The distinguishing test is whether it can stop a specific agent from spending more without stopping everything else sharing the same API key.