AI inference glossary
Serving

Cached input tokens

Also known as cached prompt tokens, cache-read tokens

In plain English

Cached input tokens are parts of a prompt whose earlier processing can be reused, reducing the work needed to read the prompt again.

Technical definition

Cached input tokens are input tokens served using reusable cached model state rather than recomputing their full prefill.

Engineering details

Earlier conversation turns often reappear in later prompts. Whether those tokens hit the cache depends on retained state, routing, and available storage. A provider may price cached input separately from uncached input and generated output, so the three token classes must remain separate in revenue calculations.

Why it matters

A cached token still belongs to the served workload but does not imply the same new computation or sales value as an output token. Potential prefix reuse, measured cache-hit rate, and the price charged for a cache hit describe different quantities.

How to read it in InferenceX

The Rubin article uses total token throughput for several comparisons and distinguishes cached-input, uncached-input, and output prices in its economics discussion. A total-token multiplier cannot be applied directly to an output-only price to estimate revenue.