Agents Just Became AI's Biggest Customer — Now the Industry Is Racing to Make That Affordable
OpenRouter data shows agentic workloads now burn 5-15x more tokens than a normal chat turn and have overtaken human usage entirely, growing roughly 14x since February. Writer answered with a cheaper Palmyra X6 harness, OpenAI is pushing everyone off the Assistants API onto the cost-optimized Responses API, and Toyota is running 50+ production agents that prove the economics can work at scale.
Three stories from the past two weeks don't share a company or a model release, but they share a number: tokens. One shows just how much more expensive an agent turn is than a chat turn. One shows two vendors racing to close that gap with cheaper, purpose-built agent infrastructure. And one shows a Fortune 10 company already running the economics at scale. Read together, they're less "new model dropped" and more "the industry just noticed what agents actually cost, and is scrambling to fix it."
1. Agents Have Become AI's Biggest Customer
OpenRouter's platform data shows agentic token consumption jumped roughly 14x since February 2026, rising from about 0.51 trillion to 7.3 trillion tokens a month, while ordinary human chat usage grew only about 2.8x over the same stretch. Agent traffic crossed human traffic in raw token volume around February 1 and hasn't looked back. The reason isn't subtle: a single agent task — plan, call a tool, read the result, call another tool, revise — burns somewhere between 5x and 15x the tokens of one human turn, because every intermediate step re-reads context that a chat reply never has to. The one bit of good news in the data is that nearly 70% of that volume is cached prompts billed at a steep discount, so real spend isn't rising as fast as the raw token count implies — but it's still rising, and it's rising because of a workload type that barely existed at this volume a year ago.
2. The Industry's Answer: Purpose-Built, Cheaper Agent Infrastructure
Two vendors shipped direct responses to that cost curve in the same week. Writer released Palmyra X6, a flagship model built on top of Z.ai's open-weight GLM-5.2, paired with a rebuilt agent "harness" and new governance tooling aimed squarely at runaway token spend from marketing and revenue-team workflows. The company claims 52% lower cost and 48% faster output on multistep agent tasks versus its prior stack — notable less for the specific number than for the fact that a model vendor is now marketing "cheaper per agent task" as the headline feature, not raw benchmark scores.
OpenAI moved on a different lever: it's sunsetting the Assistants API (retirement landed August 26) in favor of the Responses API, which it's positioning as the permanent home for all new agent capabilities. The pitch is architectural, not cosmetic — better cache utilization across multi-step calls, and automatic routing to a cheaper model tier when a lighter one can handle the step. OpenAI's builder's guide for GPT-5.6 makes the same point from a different angle: on Agents' Last Exam, GPT-5.6 Sol at "low" reasoning effort beat GPT-5.5 at "high" effort with the same harness, meaning the cheapest configuration is sometimes also the better one.
// Assistants API: persistent thread state, one call per step
const thread = await openai.beta.threads.create();
await openai.beta.threads.messages.create(thread.id, { role: 'user', content: query });
const run = await openai.beta.threads.runs.create(thread.id, { assistant_id });
// Responses API: chainable, cache-friendly, model tier is a parameter
const response = await openai.responses.create({
model: 'gpt-5.6-sol',
reasoning: { effort: 'low' }, // cheaper tier, often equal or better on agent tasks
input: previousResponse.output, // chains directly, reuses cached context
});
If your stack still calls the Assistants API, the sunset date has already passed — this is a live migration, not a future one.
3. Proof the Economics Work at Production Scale
The clearest evidence this isn't just vendor marketing is Toyota North America, which has moved past 50 production agents built on LangChain's Deep Agents and LangSmith. The most concrete example, GearPull, sits on top of terabytes of manufacturing data in vector databases and serves every North American plant: an engineer types a problem description and gets a troubleshooting answer in about 10 seconds, a workflow the company says has already produced millions of dollars in documented savings. That's the counterweight to the token-cost story above — the same agentic workloads driving up OpenRouter's numbers are, at least in this case, generating returns that comfortably outrun the extra tokens they consume.
What This Means for Builders
None of these three stories is a reason to panic, but together they're a reason to check your assumptions. If you're running agent loops in production, your token bill is probably growing faster than your chat traffic would suggest, and it's worth confirming how much of that spend is actually hitting cache versus recomputing context on every step. If you're still on the Assistants API, migrate now rather than after something breaks. And if you're building an internal agent business case, Toyota's GearPull is a useful reference point: the payoff shows up not from the agent being smarter, but from it being fast and narrow enough that the token cost stops mattering.
— Maya
Frequently asked questions
How many more tokens does an AI agent use compared to a normal chatbot conversation?
According to OpenRouter platform data, a typical agentic task consumes roughly 5x to 15x more tokens than a single human chat turn, because each step in an agent loop — planning, tool calls, reading results, revising — re-reads accumulated context that a one-shot chat reply never needs. Total agentic token volume on OpenRouter grew about 14x between February and August 2026, from roughly 0.51 trillion to 7.3 trillion tokens a month, overtaking human chat usage in the process. About 70% of that volume is cached prompts billed at a discount, which keeps real cost growth below the raw token growth rate.
What is Writer's Palmyra X6 and why does it matter for agent costs?
Palmyra X6 is Writer's new flagship model, built as a post-trained version of Z.ai's open-weight GLM-5.2, released alongside a rebuilt agent orchestration "harness" and new governance tools for controlling token spend. Writer claims the combination cuts agent task costs by 52% and improves speed by 48% versus its previous stack, targeting enterprise marketing and revenue teams running multistep workflows in production. It matters because it signals model vendors are now competing on cost-per-agent-task, not just benchmark scores.
Do I need to migrate off the OpenAI Assistants API?
Yes — OpenAI retired the Assistants API on August 26, 2026, and is directing all new agent development to the Responses API, which offers better cache utilization across multi-step calls and lets developers route individual steps to cheaper model tiers. OpenAI's builder's guide for GPT-5.6 notes that on its Agents' Last Exam benchmark, GPT-5.6 Sol at "low" reasoning effort outperformed GPT-5.5 at "high" effort with the same harness, meaning the cheaper configuration was also the better one.
I'm Maya — I write most of what you'll read here. I spent years as a copywriter before I got a little obsessed with what these AI tools can actually do, so now I spend my days poking at chatbots, breaking them, and writing up what's worth your time. Everything here is something I've actually tried. If a prompt didn't work for me, it doesn't make the cut.
Want to try any of this?
Smillee's free and there's no signup — open it and paste in whatever you're working on.
Start chatting →More from the blog
- Trends
A Stealth Model Beat GPT-5.6 at Coding, ChatGPT Went to 300,000 Teachers, and Claude Kept Falling Over
A free, anonymous model called Ox Alpha topped coding benchmarks for a week before Z.ai revealed it as GLM-5.3-Flash. OpenAI expanded ChatGPT for Teachers to 55 more school districts under a 16-state privacy agreement. And Anthropic logged its sixth Claude API disruption of the month. Three stories about provenance, compliance, and reliability — the parts of shipping a chatbot that don't show up in a benchmark chart.
- Trends
Claude's Agent Toolkit Goes GA, Perplexity Rebuilds Itself as an Agent Platform, and Anthropic Bets on Trust Infrastructure
Computer use, the new browser use tool, the Skills API, and the Files API all left beta on the Claude Platform this week, while Perplexity repositioned its API around four building blocks for agent developers and Anthropic launched a $5M wellbeing research grant plus a free learning hub. Three signals that the chatbot platforms are quietly turning into agent infrastructure providers.
- Trends
The Speed War Hits Chatbots, State AGs Write a Liability Playbook, and Reddit Vanishes From ChatGPT
Google and OpenAI both shipped speed-first releases on the same day — Gemini 3.7 Flash and a Cerebras-powered Ultrafast tier for GPT-5.6 Sol — while Kentucky and Pennsylvania opened two distinct state-AG legal theories against companion chatbots, and Reddit's presence in ChatGPT answers collapsed after a retrieval change. Three signals about how fragile the current chatbot stack still is, on latency, liability, and the sources it quietly depends on.