Requesty
Back|JUN '26AGENTS / OBSERVABILITY
3 MIN READ|

The agentic long tail: 68% of AI runs are one and done, but the deepest chained 160,297 calls

Last updated

A gateway sees something application code never gets to see: the full shape of an agent run, from the first call to the last, across thousands of teams at once. We group related requests into a trace, and once you can count the calls in a trace you can answer a question most people only guess at. How autonomous is AI usage in 2026, and how deep does a single run go?

The answer is a barbell. Most runs are trivial. A small tail is wild. Both facts matter.

Most runs are one and done

Start with the boring truth, because it grounds everything else. In June, 68% of all traces were a single interaction. Someone asked one question and got one answer. Another 12% chained two or three calls. The classic "chatbot" pattern still dominates by count.

Distribution of calls per agent trace, June 2026
Distribution of calls per agent trace, June 2026

If you only looked at the median, you would conclude that agents are hype and nothing has changed. The median trace depth is 1. That would be the wrong conclusion, because the action is not in the middle of the distribution. It is in the tail.

The tail is where autonomy lives

Look at the top of the distribution and a different world appears. The deepest 1% of runs chain dozens of tool calls back to back with no human touching the loop.

Tool call depth, median versus p90 versus p99
Tool call depth, median versus p90 versus p99

And then there is the extreme edge. Every single month, one agent completely loses the plot and runs away.

Deepest single trace per month on a log scale
Deepest single trace per month on a log scale

The deepest single trace we have ever logged chained 160,297 model calls in one run. To be clear about what this is: these monthly maxima are single outlier runs, almost certainly a loop that never hit a stop condition. It is not typical behavior and I am not going to pretend it is. But it is real, it happens every month, and it is a preview of a failure mode that barely existed two years ago. When you hand a model a tool and a while-loop, the ceiling on how much it can do unsupervised is a lot higher than most teams have planned for.

How runs end tells you who the model is talking to

There is a second signal hiding in how responses finish. One in four AI responses in June did not end with an answer. It ended by calling a tool.

How AI responses end, June 2026
How AI responses end, June 2026

That is the agentic economy in a single chart. A quarter of the time, the model is not talking to a person. It is talking to your software, asking it to run code, fetch a file, or hit an API, and then it keeps going. The one and done traces are humans. The deep traces are agents. The finish reason mix is the seam between the two.

What to do with this

If you are shipping agents, the long tail is your operational risk, not the median. A few things we have learned running this at scale:

  • Put a hard ceiling on trace depth. If a run passes a few hundred calls with no human checkpoint, something is wrong and you want to catch it before it becomes 160,000.
  • Reconstruct and inspect your deep traces. You cannot debug what you cannot see. Session reconstruction stitches the calls back into one timeline.
  • Track your own tool_calls finish rate. It is the cleanest proxy for how agentic a given workload has become. Tool call analytics breaks this down for you.
  • Route agent traffic deliberately. Deep runs multiply every reliability and latency problem by the number of calls, so a route that fails 1% of the time will bite you hard at depth. Our take on this is in reliability aware routing.

We publish the per-provider operational cuts, including finish reason mix, on our open data hub at requesty.ai/data.

The headline writes itself: most AI is still one call. But the machines that work unsupervised are working a lot harder than the averages admit, and the tail is getting longer every month.

Building an agent harness? The gateway is the backbone. Start free or read the MCP gateway docs.

Related reading