1. Home
  2. Glossary
  3. Token
AI glossary · Models & training

Token

Token: A token is the unit of text a language model reads and writes, usually a word or a piece of a word. Models measure input limits, output limits, and pricing in tokens; as a rough rule, 1,000 tokens is about 750 words of English.

Language models do not see letters or whole words. Before your prompt reaches the model, it is chopped into tokens by a fixed vocabulary. Common words like 'the' or 'invoice' are usually one token. Longer or rarer words get split: 'reconciliation' might become three pieces. Numbers, code, and non-English text often cost more tokens per word.

Every limit you bump into is measured in tokens. The context window is a token count. API pricing is per million tokens in and out. The maximum length of a single response is a token count. When a tool says a document is too long, it means too many tokens.

Tokens also explain some odd behavior. A model can struggle to count letters in a word or reverse a string because it never saw the letters, only the tokens. And two prompts that look similar in length can cost very different amounts if one is full of numbers, symbols, or unusual formatting.

Example at work

An operations manager wants to summarize a year of weekly status reports, about 200,000 words. At roughly 750 words per 1,000 tokens that is around 270,000 tokens, more than many models accept at once. She splits the reports by quarter, summarizes each batch, then asks the model to combine the four summaries.

Why it matters

Knowing about tokens helps you plan work that fits the tool. You will know why a huge spreadsheet fails to paste, why a long chat starts forgetting early instructions, and, if your team uses an API, why the monthly bill is what it is.

Related terms