Everything You Need to Know About AI Tokens
Listen to episode →Everything You Need to Know About AI Tokens
Overview
This episode of the AI Daily Brief (Operator’s Cut, recorded August 2, 2026) features host Nathaniel in conversation with Nufar Gaspar, an AI practitioner and educator. The talk addresses the growing anxiety around AI token consumption in the agentic era: what tokens actually are, why they are difficult to meter, where value is created or quietly lost, and how individuals and organizations can move from reactive cost-cutting to strategic, value-aware usage. The central thesis is that the right metric is not “tokens spent” but useful intelligence per dollar — or more precisely, cost per accepted task.
Source video URL: Not available (transcript only)
Prerequisites
- Basic familiarity with large language models (LLMs) and how they are accessed (chat interfaces, APIs, agent frameworks)
- General understanding of software subscription and API billing models
- Awareness of common AI tools: Claude / Anthropic API, OpenAI GPT-series, Cursor, Cloud Code (Anthropic’s coding tool)
- Conceptual understanding of automation, scheduled jobs (cron jobs), and agentic workflows
- Familiarity with terms such as system prompts, context windows, and retrieval-augmented generation is helpful but not required
Main Points
1. The Four Eras of Token Consumption
- Token Oblivious: Flat subscriptions and subsidized usage hid per-token costs; most users saw no meter.
- Token Maximizing (Leaderboard Era): Usage became a badge of AI maturity. Meta reportedly consumed 60–74 trillion tokens/month; one individual used 280 billion tokens (~2.3 million books). Uber burned its entire 2026 AI coding budget in four months. One unnamed company ran up a $500 million cloud bill with no usage limits.
- Token Anxious (current dominant paradigm): Backlash led to self-censorship. Meta moved from leaderboards to usage memos; Uber capped employees at 1,500 tokens. Employees began treating every prompt as an ROI conversation.
- Token Smart (the target state): Spend wisely, not sparingly. Understand where tokens create value and where they quietly leak it.
Key insight: “The most expensive token is the one your best person is afraid to spend.”
2. What a Token Actually Is
- A token is a chunk of text — larger than one character, typically smaller than a word — that a model reads and writes.
- The OpenAI tokenizer page (publicly accessible) allows anyone to visualize how text is split.
- Approximate ratios in English: ~0.75 words per token; one page of text ≈ 1,000 tokens.
- Non-Latin languages (Hindi, Thai, Greek, etc.) can require 2–5× more tokens for the same content — a cost phenomenon sometimes called the “language tax.”
- In code, indentation, brackets, and whitespace all consume tokens; numbers are frequently split mid-digit.
- The “strawberry test” failure (models miscounting letters) is largely a tokenization artifact: the model sees “straw” and “berry,” never individual letters.
3. What Everyday Work Actually Costs
- Drafting an email: ~500–700 tokens (near-zero cost; “nobody should ration emails”).
- One page of text: ~1,000 tokens.
- AI-assisted web search: adds several thousand tokens for results.
- Images: roughly ~1,000–1,200 tokens each.
- Deep research: 70,000 to hundreds of thousands of tokens; a mis-triggered deep-research agent answering a yes/no question consumed over 4 million tokens in one documented case (100 sub-agents spawned).
- Data analysis: easily 1 million+ tokens per task.
- Conversation compounding: because models have no persistent memory, every turn resends the full prior conversation; by turn 10, token load grows much faster than the number of turns suggests.
- The trajectory of higher-value, agentic use cases inherently demands more tokens — making token anxiety particularly counterproductive.
4. Why Tokens Are Not Born Equal
- Every model lab maintains its own tokenizer with a distinct vocabulary size:
- OpenAI: ~200,000 tokens
- Gemini: ~256,000 tokens
- Llama (Meta): ~100,000 tokens
- Claude (Anthropic): unpublished
- The same document can be 10–20% more tokens on one provider than another, widening further for code and non-English text.
- Shrinkflation example: When Opus 4.7 shipped, Anthropic changed the tokenizer but kept the same dollar-per-million-token price. Independent analyses of 1M+ requests found native token counts rose 32–45%; real-world bills increased 12–27% (some offset by caching). Simon Willison measured one prompt at ~1.5× the previous token count.
- One model may answer in a single pass; another reasons longer, takes more agentic steps, and requires retries — producing dramatically different bills for identical tasks.
- Key principle: The per-token sticker price is not the operating metric. Cost per accepted task is.
5. The Three Token Layers (and Their Pricing)
Every AI request has three layers, priced differently:
| Layer | Description | Relative Cost |
|---|---|---|
| Input tokens | Prompt + conversation history + file content + tool definitions | Cheapest per token; accumulates fast |
| Reasoning tokens | Internal model “thinking” before answering; usually invisible | Billed at output rates; adds 4–20× cost |
| Output tokens | The visible answer | Typically 3–5× more expensive than input per token |
- The reasoning layer is the most commonly overlooked: a 400-token answer may have carried 4,000 hidden thinking tokens.
- Analogy: reasoning tokens are like a restaurant bill line item labeled “kitchen time” — you don’t see the work, but you pay for it.
- Frontier models allow dialing reasoning effort; moving from low/medium to high/extra-high effort can increase token consumption 10–12× for the same question.
- GPT-5 pricing example: ~$10/million input tokens, ~$50/million output tokens — a 5–6× ratio that is widening at the frontier.
6. Smarter ≠ Cheaper: The Databricks Experiment
- Databricks tested coding agents on real engineering tasks using Sonnet 5 (1.7× cheaper per token than Opus 4.8) vs. Opus 4.8.
- Sonnet: $2.09 per task (needed more iterations and retries).
- Opus: $1.94 per task (more expensive per token, but reached results in fewer steps).
- Conclusion: Reach for the right model for the task, not the cheapest model.
- Same experiment tested different agent harnesses with the same model and reasoning effort: 2× difference in cost per task at equivalent quality, primarily because one harness fed the model ~3× less context than the others.
7. The Three Types of Tokens: A Value Taxonomy
- Tokens that Teach: Experimentation, failed workflows, trying multiple approaches, building identity files and curated context for AI. Look like waste on a dashboard but are essential for capability growth. Should be defended fearlessly.
- Tokens that Produce: Tokens used to create work that ships — proposals, research, code, final deliverables. Most defensible in ROI terms.
- Tokens that Spin: Activity without sufficient output — idle agents, automations nobody reads, bloated context, rework loops, wrong model for the task. Should be identified and eliminated first.
Token-smart priority order: Kill spin → tune production → protect teaching.
8. Identifying Token Spin
Signals for API/admin users with direct metering:
- The weekend test: Bill keeps rising even when you haven’t used AI.
- Extreme input-to-output ratio: Nufar’s OpenClaw chief-of-staff agent hit a 2,600:1 input-to-output ratio, spending $1,500 in two weeks while she was traveling. Root cause: compaction cron jobs running every 30 minutes on empty sessions.
- Spend rising while value stays flat.
Common spin suspects:
- Idle agents and over-frequent scheduled jobs
- Automations producing outputs nobody reads (weekly reports, dashboards)
- Pre-prompt tax: always-on rules, skill definitions, tool definitions adding thousands of tokens before a single user word
- Immortal conversations (endless sessions carrying stale history)
- Unfiltered data retrieval (pulling 500 rows when 20 are needed)
- Disorganized context forcing the model to read excessive documentation
- Rework loops requiring multiple iterations to reach accepted output
Rule of thumb: If you created an automation and haven’t used its output in one to two weeks, kill it.
9. Practical Habits for Token-Smart Usage
Six habits applicable immediately:
- New task = new session: Start fresh rather than compounding context across unrelated work.
- Match model to task: Use a capable model (Opus-class) when one-shot success reduces total cost; use lightweight models (Haiku-class) for simple tasks. Avoid using a frontier model to draft a routine email.
- Right-size your context: Provide what the model needs — not too much, not too little — to avoid excessive internal reasoning loops.
- Build reusable capabilities: Invest in properly structured skills, automations, and agents rather than re-prompting ad hoc repeatedly.
- Filter data retrieval: Direct the model to the relevant rows, channels, or document sections rather than feeding everything.
- Kill failing runs early: Monitor model reasoning at the start of significant tasks; if it is clearly off-track, stop, correct instructions, and restart rather than letting it spin.
Additional tools:
- Claude Code’s
/doctorcommand audits token division, stale skills, redundant tool configurations, and overlapping instructions. - Usage meters exist in Claude Code (
/context,/usage), Cursor, and enterprise admin dashboards. - Set spending caps and alerts for significant consumption jumps regardless of tool.
10. Model Routing
- Routing — automatically selecting the right model for a given task — is an active and unsettled area. Many vendor solutions exist; enterprises are also building custom routing systems.
- The GPT-5 auto-routing mode frustrated many experienced users, illustrating that model preference is personal and context-specific, not purely benchmark-driven.
- Software engineering tasks are likely to be solved first (more deterministic, verifiable outcomes); knowledge work routing is significantly more complex.
- Recommendation: Understanding individual model capabilities and maintaining model preferences remains a high-leverage activity and will continue to be so for the foreseeable future.
11. Organizational Governance Recommendations
For individuals:
- Audit for spin tokens on a regular schedule.
- Practice the six habits above.
- Invest time in reusable capabilities and improved context.
- Protect and explicitly negotiate for a learning/experimentation budget.
For organizations:
- Make usage visible to managers and employees — but frame visibility around smart spending, not minimization.
- Budget by workload type and individual role: someone building shared capabilities for a team warrants a significantly higher allocation than a casual user.
- Tier budgets rather than applying a single org-wide cap.
- Conduct internal training on token ROI: the goal is spending on what moves the needle, not spending as little as possible.
- Use the metric Useful Intelligence per Dollar (proposed by an OpenAI CFO scorecard) as the governing framework.
Key Concepts
- Token: A sub-word chunk of text that LLMs use as their basic unit of reading and writing; typically ~0.75 words in English.
- Input tokens: All text the model receives in a request, including history, files, system prompts, and tool definitions; the cheapest layer per token.
- Reasoning tokens: Hidden internal “thinking” tokens generated before the model produces a visible answer; billed at output rates and often invisible to users.
- Output tokens: The visible response from the model; typically 3–5× more expensive per token than input.
- Cost per accepted task: The total token cost (across all layers, models, retries, and tool calls) divided by the number of successfully completed and accepted results; the correct operating metric for comparing stacks.
- Useful Intelligence per Dollar: A CFO-proposed scorecard metric asking what each successful task actually costs relative to the value it produces.
- Language tax: The cost premium incurred when prompting in non-Latin-script languages, which tokenize less efficiently and may produce 2–5× more tokens for equivalent content.
- Tokens that Teach: Tokens spent on experimentation, learning, and building AI context; look like waste on dashboards but yield compounding returns.
- Tokens that Produce: Tokens directly used to generate shipped deliverables; most straightforwardly defensible in ROI terms.
- Tokens that Spin: Tokens consumed by activity that produces no usable output — idle agents, unused automations, bloated loops, wrong-model usage.
- Pre-prompt tax: The token cost of always-on system instructions, tool definitions, and skill definitions that are loaded before any user input.
- Shrinkflation (tokenizer): The practice — illustrated by Opus 4.7’s tokenizer change — of keeping the per-token price constant while a new tokenizer produces more tokens for the same text, effectively raising the real-world cost.
- Agent harness: The scaffolding framework (e.g., Claude Code, Cursor, custom pipelines) that orchestrates model calls, manages context, and routes tool use; can cause 2×+ cost differences even with identical models.
- Model routing: Automatically selecting the most appropriate and cost-effective model for a given task, either via vendor-provided or custom-built routing logic.
- Weekend test: An auditing heuristic — if your AI bill keeps rising during periods of no active use, you have automations running without producing value.
- Input-to-output ratio: The proportion of tokens consumed in input versus generated in output; an extreme ratio (e.g., thousands-to-one) is a strong indicator of spin.
- Token gym: An educational resource (referenced by Nufar) designed to help users practice and improve token-smart habits.
Summary
Nufar Gaspar argues that the AI industry has swung through three dysfunctional phases — obliviousness, reckless maximization, and now counterproductive anxiety — and that the path forward is a fourth state: being token smart. The foundation is understanding what tokens are at a technical level (sub-word units across three differently-priced layers: input, reasoning, and output), why they cannot be straightforwardly compared across providers (each lab uses a proprietary tokenizer, tokenizer changes silently raise real-world costs, and model behavior and agent harness design create wide variance in tokens consumed per task), and why the only meaningful unit of analysis is cost per accepted task, not cost per token. Practically, this means auditing for and eliminating “tokens that spin” (idle agents, unused automations, bloated context, rework loops), tuning “tokens that produce” for cost-effectiveness, and actively protecting “tokens that teach” — experimentation and context-building that looks wasteful on dashboards but is the engine of compounding AI capability. For organizations, the imperative is to make token usage visible without incentivizing minimization, to tier budgets by role and workload rather than applying blanket caps, and to frame every conversation not as “how do we cut the bill” but as “what does each successful task cost, and is the intelligence we’re spending worth it.”