← Blog
Core AI Competence22 min read

Token Economics 101: Why AI Features Fail on Cost, Not Capability

A feature that works perfectly in a demo can still be unshippable once real cost and speed at scale are considered. Token pricing mechanics, model tiering, and latency budgets, explained with illustrative numbers.

A product manager demos an AI feature that works beautifully. Accurate, fast in the room, everyone is impressed. Three weeks later, the same feature gets quietly shelved, not because it stopped working, but because someone finally ran the real numbers: at the volume the business actually needed, it would cost more per month than the team's entire software budget, or it would take eight seconds per request when users needed an answer in under two.

This happens more often than it should, because most people evaluating an AI feature only ever see it work once, in a demo, at a scale of one. Token economics, the discipline of thinking about AI cost and speed the way you would think about any other real business input, closes this gap. It is not deep technical knowledge. It is arithmetic, applied consistently, before a feature ships rather than after.

A note before we go further: any dollar figures in this guide are clearly labeled illustrative examples, used to teach the mechanics, not claims about current real world pricing, which changes often enough that stating specific numbers here would be actively misleading within months. The mechanics themselves do not change nearly as fast.

By the end of this guide, you will understand how token based pricing actually works, why input and output tokens are usually priced differently, and what "model tiering" means as a real cost lever rather than a vague best practice.

You will also understand latency budgets, how long a real user will actually wait, and have a simple, real cost estimation method, built into this guide, that you can apply to any AI feature before it ships rather than after.

Why "it works" and "it ships" are different questions

An AI feature that works correctly on every test case can still fail as a business decision, for two reasons that have nothing to do with accuracy: it costs too much to run at real volume, or it takes too long to respond for the situation it is actually used in. Both of these are cost dimensions in a real sense, one measured in money, one measured in time, and both are frequently ignored during the exciting, early "does this even work" phase of building an AI feature.

Employers hiring for AI product and operations roles have increasingly been burned by this exact pattern: a genuinely capable feature, built and demoed successfully, that turned out to be financially or operationally unviable once real usage numbers were applied. This has made cost and latency awareness a specific, testable interview topic, distinct from asking whether a candidate can get an AI feature to work at all.

This matters specifically in procurement and operations contexts because these workflows often run at real volume, thousands of invoices, thousands of contract clauses, not the single example used in a demo. A cost that looks trivial per single use can become a serious line item once multiplied by realistic monthly volume, and a candidate who can do that multiplication before anyone asks is demonstrating exactly the judgment this guide is about.

There is a career incentive here too, distinct from simply avoiding an embarrassing cancellation. A candidate who can reliably answer "is this actually worth shipping, at real cost and real volume" becomes someone leadership trusts with bigger, more ambiguous decisions, not just AI feature ones. Cost literacy is a business skill wearing an AI costume, and it transfers well beyond any single feature or tool.

Input tokens versus output tokens: input is what you send in, usually cheaper, output is what the model generates back, usually costs more per token.
What you send in is one cost. What the model generates back is typically a separate, often higher, cost.

How token based pricing actually works

Recall from the earlier guide on how LLMs work that a model reads and writes in tokens, roughly word sized chunks of text. Nearly every commercial AI provider prices its models per token, typically with a separate, usually higher, rate for output tokens, what the model generates, than for input tokens, what you send it. This matters practically: a task that asks a model to read a lot and respond briefly costs differently than one that asks it to read briefly and generate a long response, even if both involve roughly the same total token count.

The second major cost lever is model tier. Providers generally offer several model sizes: smaller, faster, cheaper models for straightforward tasks, and larger, more capable, more expensive models for tasks requiring deep reasoning. Using a frontier tier model for a task a smaller model would handle just as reliably is a real, avoidable cost, the AI equivalent of hiring a senior specialist to do data entry.

Model tiering: a small fast model is cheap for simple tasks, a mid model is balanced, a frontier model is most capable and most expensive, reserved for hard reasoning only.
Match the model size to the task, not to whichever model is most impressive.

Latency budgets: the cost measured in time, not money

Latency, how long a request takes to complete, is a second, equally real cost, and it has a budget the same way money does, set by how long an actual user is willing to wait for the situation they are in. A person waiting on a live chat expects a response within a couple of seconds before it starts to feel broken. Someone who submitted a batch of a thousand invoices for overnight processing will happily wait twenty minutes, since nobody is staring at a screen waiting for it.

The practical implication is that latency budget should shape model choice just as much as cost does. A live, user facing feature generally needs a fast, often smaller, model, or a careful design that shows partial results while a slower model works. A background, batch processed task can often afford a slower, more capable model, since nobody is waiting on it in real time. Using the wrong tool for the wrong latency context, a slow frontier model on a live chat interface, or an unnecessarily fast, expensive setup for an overnight batch job, wastes either money or user patience for no benefit.

Latency budget: a human waits under two seconds without noticing, a background task can take minutes, match the model choice to how long a real user will wait.
A live interaction and a background task have completely different latency budgets.
Why a working feature still fails to ship: it works in the demo, it costs too much per use at real volume, nobody checked the cost until launch was near.
It worked in the demo. Nobody checked the real cost at volume until launch was near.

A worked example: estimating real cost, illustrative numbers only

Here is the actual arithmetic, using clearly illustrative, made up per token rates to demonstrate the method, not real pricing. Suppose a contract review feature processes a contract averaging 8,000 input tokens and produces a 500 token summary as output.

ItemIllustrative rateTokensIllustrative cost per contract
Input (reading the contract)$0.003 per 1,000 tokens8,000$0.024
Output (the summary)$0.015 per 1,000 tokens500$0.0075
Total per contract$0.0315
Illustrative monthly cost as volume scales (not real pricing)
10 contracts/month0.3151,000 contracts...31.550,000 contract...1575
Illustrative monthly cost as volume scales (not real pricing)
LabelValue
10 contracts/month0.315
1,000 contracts/month31.5
50,000 contracts/month1575
Cost scales with volume: one request is cheap, ten thousand requests a day is a real budget line, think in volume, not in one demo.
A cost that looks trivial per use becomes a real budget line at real scale.

Notice what this illustrates: a cost of about three cents per contract sounds trivial, and in a demo of one contract, it is. At 50,000 contracts a month, a genuinely realistic volume for a mid sized company's annual contract pipeline, the same illustrative rate produces a real, four figure monthly cost that a budget owner will absolutely ask about. This is the exact calculation a PM should run before, not after, presenting a feature as ready to ship, and it is a calculation that takes about two minutes once you know a task's real expected volume.

Three levers to cut AI feature cost: use a smaller model where it is enough, shorten the prompt and the context sent, cache repeated results instead of recomputing.
Match model size to task, tighten the prompt, avoid recomputing the same result.

Three practical levers reduce AI feature cost without reducing quality, when applied thoughtfully. Use the smallest model tier that reliably handles the task, reserving frontier tier models specifically for genuinely hard reasoning. Keep prompts and provided context as tight as the task actually needs, since retrieving only the relevant document sections rather than entire documents directly reduces input token cost. And cache results for identical or near identical repeated requests rather than recomputing the same answer from scratch every time.

Keep reading

You have read the free preview

The rest of this guide, including the worked example, the career action plan, and the interview ready summary, is for subscribers. Any paid plan unlocks every post like this one, and Foundation adds the full course catalogue.

Practice these interview questions

Cost and token economics questions come up more than candidates expect, because a working demo and a sustainable feature are two different things. Work through your own answer first, then compare with the sample.

Why they're asking: They want to see you separate 'the model got it right' from 'the unit economics work at real volume,' which is the actual reason polished demos die before launch.

Hit these points:

  • Say plainly that capability and viability are two separate tests, and a demo only proves the first one
  • Name the specific gap: a demo runs on maybe a hundred test calls, production runs on thousands or millions
  • Give a concrete failure shape: a call that costs four cents is fine at fifty calls a day and a real problem at fifty thousand
  • Note this failure mode has nothing to do with the model being wrong, it's a budget line item, not an accuracy problem

Sample answer:

  • The distinction: "A feature can work perfectly in a demo with a handful of test cases and still not make business sense once you multiply the cost of every model call by real production volume."
  • The math: "If a call costs four cents and you're running it fifty thousand times a day, that's two thousand dollars a day, not a rounding error, and it doesn't matter how capable the model is if that number doesn't fit the budget."
  • The takeaway: "That's a completely different failure mode than the model being wrong, and it's one people new to shipping AI features often don't check until the bill arrives."

Remember it as: Works in the demo isn't the same as works at volume.

9 of 12 answers are locked. Any paid plan unlocks every question like these, and Foundation adds the full course catalogue.