Someone typed “Hello Claude” and used 13% of their session restrict.
That’s an actual Reddit put up from an actual one who opened Claude, despatched a greeting, and watched greater than one-eighth of their utilization disappear earlier than asking a single query.
A separate consumer on X reported ending up in a “four-hour cooldown jail” from the identical set off. The factor is, no person had clarification for why it occurred.
The reply is tokens. Most folks utilizing LLMs in the present day haven’t any framework for understanding what a token is, why it prices what it prices, or the place their utilization goes earlier than they’ve achieved something helpful. Every main LLM – Claude, GPT-5, Gemini, Grok, Llama and so forth. runs on the identical underlying economics. Tokens are the foreign money of this whole trade.
If you employ any of them commonly, understanding how tokens work is the distinction between getting actual work achieved and hitting your restrict at 11am.
Let’s decode.
What a Token Actually Is
Think of a token as a bit of textual content someplace between a syllable and a phrase in dimension.
Let’s simply say “Fantastic” is one token. “I am” is 2 tokens. “Unbelievable” may be three tokens relying on the mannequin, as a result of some fashions break unfamiliar or lengthy phrases into subword items. The OpenAI tokenizer playground (platform.openai.com/tokenizer) enables you to paste any textual content and see precisely the way it will get chopped up in coloured blocks. Worth attempting as soon as simply to calibrate your instinct.

The tough conversion for English: 1,000 tokens ≈ 750 phrases ≈ 2-3 pages of textual content. One token averages about 4 characters or 0.7 phrases. A regular 800 phrase weblog put up is roughly 1,000-1,100 tokens.
These numbers solely maintain for English. Code tokenization is worse: 1.5 to 2.0 tokens per phrase, as a result of programming syntax has a whole lot of characters that do not map cleanly onto pure language tokens. Chinese, Japanese, and Korean are worse nonetheless, consuming 2 to eight instances extra tokens than English for equal content material. If you write a whole lot of code or work in a non English language, your consumption is meaningfully larger than the back-of-envelope math suggests.
Different fashions use totally different tokenizers, so the identical textual content would not price the identical tokens all over the place. 1,000 tokens on GPT-5 (which makes use of the o200k_base tokenizer) may be 1,200 tokens on Claude or 900 tokens on Gemini. Comparing utilization throughout platforms requires utilizing every mannequin’s particular tokenizer for correct counts.
Build your personal no-code agent at no cost
Try right here
The Context Window
Tokens are necessary for 2 distinct causes. The first is your utilization restrict: how a lot you are able to do earlier than hitting a wall. The second is the context window: how a lot the mannequin can maintain in reminiscence directly.
Every mannequin has a context window measured in tokens. Claude Sonnet 4.6 helps 1 million tokens. GPT-5 has 400K. Gemini 3 Pro has 2 million. Llama 4 Scout has 10 million. These numbers are spectacular however deceptive.
Larger context home windows do not robotically imply higher efficiency. Research constantly exhibits fashions degrade in high quality earlier than reaching their acknowledged limits. A 2024 research from researchers Levy, Jacoby, and Goldberg discovered that LLM reasoning efficiency begins degrading round 3,000 tokens, effectively earlier than any mannequin’s technical most. A 2025 research from Chroma examined 18 fashions together with GPT-4.1, Claude 4, and Gemini 2.5 and documented what they known as “context rot”: a progressive decay in accuracy as prompts develop longer, even on easy string-repetition duties. Every mannequin confirmed that extra context shouldn’t be at all times higher.
The context window can be shared by every thing, not simply your message and the mannequin’s reply. System directions, software calls, each earlier flip within the dialog, uploaded recordsdata, and inside reasoning steps all eat from the identical pool.

The Six Silent Token Drains
The majority assume token utilization appears like: I kind one thing, the mannequin responds, that is one trade. But in actuality, it’s not linear and predictable.
1. Conversation History Compounds Fast
Every message you ship in a multi-turn dialog carries the whole prior dialog as context. Turn 1 prices 2 models: you ship 1, the mannequin sends 1 again. Turn 2 prices 4 complete as a result of your second message contains the primary trade. Turn 3 prices 6. By flip 10, you might need spent 110 models cumulatively. Those identical ten duties as ten separate one-turn conversations would price 20 models complete. Same output however 5 and a half instances inexpensive.
A concrete instance: you are utilizing Claude to debug a software program mission. You paste 2,000 tokens of code, ask a query, get a solution, ask a follow-up, and so forth. By the fourth trade, the mannequin is processing roughly 12,000 tokens to reply a query that, in isolation, would price 500. The gathered historical past is doing a lot of the spending.
2. Extended Thinking Generates Tokens You Never See
Most main LLMs now have a reasoning mode. OpenAI calls it o-series. Google calls it Thinking Mode. Anthropic calls it Extended Thinking. When enabled, the mannequin works by the issue internally earlier than responding.
That inside reasoning generates tokens. Reasoning tokens can quantity to 10 to 30 instances greater than the seen output. A response that appears like 200 phrases to you might need price 3,000 reasoning tokens behind it.
Claude’s Extended Thinking is now adaptive, that means the mannequin decides whether or not a activity wants deep reasoning or a fast reply. At the default effort stage, it virtually at all times thinks. So while you ask Claude to repair a typo, reformat an inventory, or search for a primary truth, it is nonetheless burning pondering tokens on an issue that does not require them. Toggling Extended Thinking off for easy duties reduces prices with no high quality tradeoff.
Build your personal zero-code agent at no cost
Try right here
3. System Prompts Run on Every Request
Any AI product constructed on a basis mannequin, together with customized GPTs, Claude Projects with customized directions, or enterprise deployments, prepends a system immediate to each message you ship.
A typical system immediate runs 500 to three,500 tokens. Every time you ship something, these tokens run first. An organization working an inside chatbot with a 3,000-token system immediate dealing with 10,000 messages per day spends 30 million tokens on directions alone, earlier than any consumer has requested something significant.
At the person stage: a Claude Project with intensive customized directions reruns these directions each time you open the mission. Keeping mission data tight is straight cheaper, not simply neater.
4. The “Hello” Problem
Back to the Reddit put up. How does “hello” eat 13% of a session?
Actually earlier than processing your phrase “hello”, it masses the system immediate, mission data, dialog historical past from earlier within the session, and enabled instruments. In Claude Code particularly, it masses CLAUDE.md recordsdata, MCP server definitions, and session state from the working listing. All of that’s billed as enter tokens on each trade, together with the primary one.

5. Uploaded Files Sit on the Meter Continuously
Uploading a 50-page PDF to a Claude Project signifies that doc is held in context even while you’re not actively asking questions on it. It consumes tokens each session as a result of the mannequin wants consciousness of it to reference it when wanted.
Token consumption in any chat comes from uploaded recordsdata, mission data recordsdata, customized directions, message historical past, system prompts, and enabled instruments, on each trade. If you add 5 giant paperwork you ended up not referencing, you are still paying for them.
Keep mission data matched to what you are truly engaged on. Treat it like RAM, not a submitting cupboard.
6. Agentic Tool Calls Explode the Count
If you employ AI brokers, Claude with instruments, ChatGPT with Actions, or any autonomous workflow the place the mannequin calls exterior APIs or searches the net: each software name appends its full outcome to the context. An online search returns roughly 2,000 tokens of outcomes. Run 20 software calls in a single session and you have consumed round 40,000 tokens in software responses alone, earlier than factoring within the rising dialog historical past stacking on prime.
Claude Code brokers performing 10 reasoning steps throughout a big codebase can course of 50,000 to 100,000 tokens per activity. For a crew of engineers every operating a number of agent classes per day, this turns into the first price driver.
Build your personal no-code agent at no cost
Try right here
How to Preserve Your Token Budget
Start a New Conversation for Every New Task
Given the compounding math above, preserving one lengthy dialog open throughout a number of unrelated duties is the costliest means to make use of an LLM. A ten-turn dialog spanning 5 subjects prices greater than 5 2-turn conversations protecting the identical floor.
Match the Model to the Work
Frontier fashions, Claude Opus, GPT-5, and Gemini 3 Pro, are costlier than their smaller siblings, and for many duties the standard distinction is negligible. Claude Sonnet handles complicated coding, detailed evaluation, long-form writing, and analysis synthesis with out significant high quality loss versus Opus. The distinction exhibits up solely on critically complicated multi-step reasoning, which represents a fraction of precise day by day utilization.
Default to the mid-tier mannequin (Sonnet, GPT-4o, Gemini Flash Pro). Use the flagship when the duty genuinely calls for it. Avoid this:

Turn Off Extended Thinking for Simple Tasks
For Claude: toggle Extended Thinking off underneath “Search and tools” when doing fast edits, brainstorming, factual lookups, or reformatting. Response high quality on these duties will not change. Token price drops considerably.
For GPT: use customary GPT-4o reasonably than o-series fashions for something that does not require deep multi-step reasoning. The o-series is purpose-built for onerous reasoning issues and wasteful for every thing else.
Write Shorter Prompts
The analysis says quick prompts usually work higher than lengthy ones, and so they’re cheaper. The sensible candy spot for many duties is 150-300 phrases. That’s particular sufficient to provide the mannequin actual path with out stuffing it with context it would not want.
Write the shortest model of your immediate that describes your intent. Test it. Add solely what’s truly lacking within the output.
Try: “Write 5 subject lines for email #3 in a B2B drip to CFO prospects. Product: AP automation SaaS. Tone: professional, slight urgency.”
The output is identical high quality. The token price is a fraction.
Skip Pleasantries Within Sessions
Every “thanks, that’s helpful!” or “great, now can you also…” extends the dialog and inflates the operating context. In a token-constrained atmosphere, social filler prices actual utilization for no informational profit.
This can be the mechanical clarification for the “hello” downside. In a loaded atmosphere, a greeting is a full flip that masses all of the infrastructure and generates a full response for zero informational worth. Combined with a posh system atmosphere, that provides as much as 5-10% of a session earlier than any actual work begins. And that is cap:

Request Structured Outputs
Asking for structured outputs, reminiscent of JSON, numbered lists, or tables, usually requires fewer output tokens than narrative explanations whereas producing extra usable outcomes. Specifying “List 3 product features as JSON with keys: feature, benefit, priority” generates a parseable response in fewer tokens than “describe the three most important product features in detail.”
Research on this sample exhibits output token reductions of 30-50% for equal informational content material.
Keep Project Knowledge Matched to the Current Task
Only embody paperwork straight related to what you are engaged on now. Archive previous recordsdata when a mission section ends. Every file in a Claude Project runs on each session whether or not you reference it or not.
Build your personal no-code agent at no cost
Try right here
How to Check What You Have Left
Most AI merchandise do not present a token meter. Here’s the way to discover your utilization anyway, by platform.
Claude (claude.ai)
Go to Settings → Usage, or navigate on to claude.ai/settings/utilization. This exhibits cumulative utilization towards your plan’s restrict. It’s a lagging indicator and would not present real-time token depend inside a dialog.

For Claude Code particularly: /price exhibits API-level customers their token spend for the present session damaged down by class. /stats exhibits subscribers their utilization patterns over time.

Third-party instruments for Claude Code
Claude-Code-Usage-Monitor offers a real-time terminal UI with progress bars, burn charge analytics, and predictions for when your present session will run out. It auto-detects your plan and applies the proper limits: Pro is round 44,000 tokens per 5-hour window, Max5 round 88,000, and Max20 round 220,000. Run it in a separate terminal window and you will see consumption replace reside.
Claude Usage Tracker is a Chrome extension that estimates token consumption straight within the claude.ai interface, monitoring recordsdata, mission data, historical past, and instruments, with a notification when your restrict resets.
ChatGPT
OpenAI would not expose token utilization to client customers straight. Developer accounts with API entry can see per-request token counts at platform.openai.com/utilization. Consumer subscribers haven’t any native meter. Third-party extensions exist within the Chrome retailer however aren’t formally supported.
API customers (any platform)
Every API response contains token counts within the metadata. For Claude, input_tokens and output_tokens seem in each response object. For OpenAI, the equal fields are utilization.prompt_tokens and utilization.completion_tokens. Build logging round these fields from the beginning, it is the one dependable strategy to monitor consumption at scale.
Before you ship: token counters
Tools like runcell.dev/software/token-counter and langcopilot.com/instruments/token-calculator allow you to paste textual content and get an instantaneous depend earlier than sending, utilizing every mannequin’s official tokenizer. No signup are required and it runs within the browser. Useful earlier than submitting giant paperwork or complicated prompts.
The Skill Worth Having
Token literacy was once a developer concern however not in the present day.
LLMs are embedded in actual work now: drafting, evaluation, coding, analysis. The individuals who perceive the underlying economics will use them extra successfully, hit limits much less typically, and get extra from the identical subscription.
Cheers.
Build your personal no-code agent at no cost
Try right here
