A tiny, readable circuit breaker for LLM calls: hard budget caps that fail over to a free local model instead of raising or overspending.
Project description
llm-circuit-breaker
A tiny, readable circuit breaker for LLM calls. When your budget runs out, it doesn't raise an exception or let the bill run — it falls through to a free local model so your agent keeps working.
Why
Agent API costs are unpredictable: most runs cost a few cents, but a stuck loop or an unbounded retry can burn tens of dollars in minutes. Most LLM gateways solve observability (dashboards, logs) or routing (pick the cheapest/best model) — but none of the popular ones hard-stop into free local compute the moment you're about to overspend.
This library does one thing: try providers in order, and once you've hit your budget, skip straight to a local model instead of failing or overspending. No hosted proxy, no dashboard, no vendor lock-in — about 150 lines you can read in five minutes and vendor straight into your own project.
Install
pip install llm-circuit-breaker
# or, with Anthropic support:
pip install "llm-circuit-breaker[anthropic]"
Quickstart
from llm_circuit_breaker import LLMCircuitBreaker, anthropic_tier, ollama_tier
breaker = LLMCircuitBreaker(
tiers=[
anthropic_tier(api_key="sk-ant-...", model="claude-sonnet-4-5"),
ollama_tier(model="gemma:2b"), # local, free, always-on fallback
],
daily_limit_usd=5.0,
ledger_path="llm_spend.jsonl",
)
result = breaker.complete(system="You are terse.", user="2+2?")
print(result.text, result.tier_used, result.cost_usd)
Once llm_spend.jsonl shows $5 spent today, every subsequent call for the
rest of the day skips Anthropic entirely and goes straight to your local
Ollama model — automatically, no code change, no surprise bill.
v0.2 — streaming, async, and a cost CLI
Stream tokens as they arrive (complete_stream) — same tiers, same budget
fallback, just yielded piece by piece. Built-in Anthropic / OpenAI / Ollama
tiers stream natively; any tier without streaming yields its whole result once.
for chunk in breaker.complete_stream(system="You are terse.", user="Explain RAG in 2 lines"):
print(chunk, end="", flush=True)
Async (acomplete) — keep many calls in flight at once:
import asyncio
results = asyncio.run(asyncio.gather(*[
breaker.acomplete(system="s", user=q) for q in questions
]))
See where the money went — a budget breaker you can actually inspect:
llm-cb cost # today / total / per-tier, straight from the ledger
llm-cb cost --ledger path # point at a different ledger, or --json for raw
LLM spend (llm_spend.jsonl)
today : $2.3100
total : $45.8700 (1240 calls)
by tier:
anthropic:claude-sonnet-4-5 980 calls $44.2000
ollama:gemma:2b 260 calls $0.0000
How it decides
- Check today's + all-time spend against your limits (a plain JSONL ledger file — human-readable, no database).
- Under budget: try each tier in order, return the first success.
- Over budget: skip every paid tier and try only the tiers marked
is_local=True. - If every attempted tier fails (or the budget is blown with no local tier configured), raise a clear exception instead of failing silently.
Built-in tiers
anthropic_tier, openai_tier, gemini_tier, openrouter_tier, and
ollama_tier (local, via Ollama) — or write your
own in about 5 lines; a Tier is just a name and a
(system, user, max_tokens) -> (text, cost_usd) function:
from llm_circuit_breaker import Tier
def _call(system, user, max_tokens):
text = my_provider_sdk.chat(system, user, max_tokens)
return text, my_own_cost_estimate
my_tier = Tier(name="my-provider", call=_call, is_local=False)
What this is not
Not a hosted gateway, not a dashboard, not a replacement for LiteLLM or Portkey if you need enterprise routing, guardrails, or a proxy server in front of a team's traffic. This is the opposite trade-off: minimal, in-process, one job — for solo builders and small agent projects who want a hard stop before overspend without standing up another service.
Pricing table
pricing.py ships an approximate per-model $/1M-token table used only to
estimate spend for the budget check. Prices change and vary by
region/tier; override PRICING["your-model"] = {"input": ..., "output": ...}
for accuracy, or return your own cost from a custom tier.
Development
pip install -e ".[dev,anthropic]"
pytest
License
MIT
Project details
Release history Release notifications | RSS feed
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 llm_circuit_breaker-0.2.0.tar.gz.
File metadata
- Download URL: llm_circuit_breaker-0.2.0.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85914467f0c294ab07f8123e86630ae89d5820df590fabd09ffea5b98dc9fe1c
|
|
| MD5 |
17e32a51d0d3e599b8fba98571140281
|
|
| BLAKE2b-256 |
da81ee3bc9097de482a8f2391325888a2b620cda4dde4e3551c429ded1ede006
|
File details
Details for the file llm_circuit_breaker-0.2.0-py3-none-any.whl.
File metadata
- Download URL: llm_circuit_breaker-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58553773c08f2cac72cb75d4e0958e9143d2335e6df2a331e6d9dea689f0349d
|
|
| MD5 |
522b4b053553eeff40db48d5ab710a8a
|
|
| BLAKE2b-256 |
1b3bb9a0bfa59511904e9fd0d175f20b54695b30ddbffd29b03581ba1d1ef3ed
|