cachemux
Stop paying full price for the same prompt tokens. One wrapper makes LLM context caching measurable — and makes it pay — across OpenAI, Anthropic and Gemini.
Providers sell cached input tokens at 90% off — and make it your job to collect. Anthropic wants breakpoints placed, OpenAI wants routing pinned, Gemini rents you cache objects that bill by the hour whether or not anyone reads them. Get it wrong and caching costs more than not caching: a cache written and never read is a 25% surcharge on nothing.
cachemux is one line:
pip install cachemux
- ⚡ Drop-in. Wrap your existing SDK client; change nothing else.
- 💰 Pays or it doesn't act. Every caching decision clears a measured break-even (a 1.25× write needs 1.28 reads) before a single request is touched.
- 🔍 Names the culprit. Not "hit rate dropped" — "the timestamp in
systemvoids ~7,500 cacheable tokens per request." - 🛡️ Never breaks a call. cachemux failing means your request goes out exactly as written. There's a test for it.
- 📦 Zero dependencies. ~26 KB wheel, nothing dragged in.
from anthropic import Anthropic
from cachemux import cachemux, Recorder
recorder = Recorder()
client = cachemux(Anthropic(), recorder) # the only change to your code
# ... use the client exactly as before ...
print(recorder.report(base_input_per_mtok=5.0))
cachemux report
calls : 12 (0 errored)
hit rate : 91.7%
input tokens : 480
cache reads : 23,100
cache writes : 2,100
auto applied : 9 requests
cache spend : 0.0247
uncached cost : 0.1260
net saved : 0.1013 (saving money)
prefix: anthropic / claude-opus-5
requests analysed : 12
stable prefix : 2 blocks, ~2037 tokens
volatile blocks :
[2] messages[0]: 12 variants, ~12 tokens uncacheable from here
fix [2] messages[0] first: it alone costs ~12 tokens of cacheable prefix per request.
verdict: worth it - a write costs 1.25x, so it needs 1.28 reads; 11.0 expected
The first call is always the cache write, so short sessions read low; the rate climbs toward 100% as reuse accumulates.
Try it with no API key: python examples/demo.py
Why
Every major provider caches your prompt prefix, and every one does it differently:
| Provider | How it works | Who controls it | Cost of a cache write |
|---|---|---|---|
| Anthropic | Inline cache_control breakpoints, 4 max |
You | 1.25x base input (5m), 2x (1h) |
| OpenAI | Automatic above 1,024 tokens | Nobody | 1.25x on GPT-5.6+, free before |
| Gemini | Automatic, or a rented cache object | You, optionally | Rent per token-hour |
Same headline discount, three different cost models. So "should I cache this?" has a different answer per provider, and caching can lose money outright:
- A cache written and never read costs more than not caching.
- A rented Gemini cache accrues rent whether or not anyone reads it.
- Anthropic silently skips caching below the model minimum, with no error.
A hit-rate dashboard shows none of that.
What it does
- Measures — normalises every provider's cache token counts into one shape, so hit rate and real cost are comparable across providers.
- Analyses — splits each request into hashed blocks and names the exact block stopping your prefix from caching. A timestamp in your system prompt voids everything after it; cachemux points at it.
- Decides — computes the break-even (how many reads a cache needs to pay for its own write, or its rent) and compares it against your measured reuse.
- Acts — the default. Once the math clears, requests get caching set up on the way out: a
cache_controlbreakpoint on Anthropic, a pinnedprompt_cache_keyon OpenAI, a rented explicit cache on Gemini — rented only when it beats the implicit caching Gemini already does for free.auto=Falseto only observe. - Diagnoses — when the hit rate drops,
diagnose()compares two traffic windows and names the block that rotated the cache key.
How it works
your code ──▶ PREPARE (four gates) ──worth it──▶ ACT ──▶ SEND ──▶ provider API
▲ │ ▲ │
│ └──────── not yet ─────────┘ ▼
└─────── next request reads this ─────── OBSERVE + RECORD
Every request is fingerprinted; every caching decision is made from what was actually measured, never a guess. If cachemux fails at any step, the call still goes through uncached — a caching layer must never take down an app, and there's a test for it.
The math, in one breath
An Anthropic cache write costs 1.25x base input; a read costs 0.1x:
reads needed = (1.25 − 0.1) / (1 − 0.1) = 1.28 reads to break even
cachemux acts only when your measured reuse clears that bar. No dollar prices are bundled — the decision runs on multipliers, and you supply your own base rate for money reports. A shipped price list goes stale silently; yours doesn't.
Design rules
- Zero config. Import it and it works.
- If cachemux fails, the call still goes through uncached.
- No new abstraction to learn. Keep using your provider's SDK exactly as before.
- No runtime dependencies.
- No bundled price list.
Layout
src/cachemux/
├── providers/ one module per provider, same four functions each
│ ├── base.py shared Usage / Applied types
│ ├── anthropic.py breakpoints, usage fields, model minimums
│ ├── openai.py prompt_cache_key routing
│ └── google.py rent-or-not planning
├── analysis/ prefix.py (stability) + drift.py (what changed)
├── economics/ pricing.py (cost models, break-even)
└── core/ proxy.py (interception) + recorder.py (aggregation)
Adding a provider is one module in providers/ and one line in its registry. Nothing above that layer branches on which provider it's holding.
Status
Working: measurement, prefix analysis, break-even decisions, drift diagnosis, and automatic application (the default) on all three providers — live-verified against Gemini (rented explicit cache) and OpenAI (accepted prompt_cache_key).
Not measured yet: streaming. A create(stream=True) call returns before usage exists, so such calls are recorded but excluded from the hit rate rather than miscounted as misses.
Development
uv venv --python 3.11
uv pip install -e ".[dev]"
pytest -q
ruff check src tests
Licence
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cachemux-0.1.2.tar.gz.
File metadata
- Download URL: cachemux-0.1.2.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.5 {"installer":{"name":"uv","version":"0.11.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf4ab4b2817a79f32fae70df6429202e162d9946e24e96756b7b25e34cd65f3
|
|
| MD5 |
a714bc01ac3fd79ca1f2244f301f554e
|
|
| BLAKE2b-256 |
b0b276a78c2abf4bee99a7ec297b0095cfdf7e7ef9563ca77ca48f66dd2ec97d
|
File details
Details for the file cachemux-0.1.2-py3-none-any.whl.
File metadata
- Download URL: cachemux-0.1.2-py3-none-any.whl
- Upload date:
- Size: 27.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.5 {"installer":{"name":"uv","version":"0.11.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bab70ce419c869983d6678d828503efddde5043f3bfbea79edefa76ada5ad70
|
|
| MD5 |
4dfea9d46d5d2190572a98056d40aee0
|
|
| BLAKE2b-256 |
214384c178fd2a86b1834647afee776913a5bbb10046ba64ae5d10b4caf313c7
|