Cost and wall-time estimation for batched LLM jobs (per-iteration sampling with confidence intervals).
Project description
costscope
Cost + time estimation for batched LLM jobs.
Sample a handful of iterations, project the total cost and wall time with a confidence interval, confirm before spending the rest. Each "iteration" can be a single call or a multi-call pipeline. Works with OpenAI (chat completions + Responses API, including gpt-image-1), Anthropic, or a built-in synthetic backend for tests and demos.
Install
pip install -e . # core
pip install -e '.[openai]' # for OpenAI models
pip install -e '.[anthropic]' # for Claude models
pip install -e '.[dev]' # with pytest
Requires Python 3.10+.
Usage
A single call per iteration (the classic case):
from costscope import CostEstimator
with CostEstimator(model="o1", total_iterations=500, sample_iterations=20) as ce:
for prompt in prompts:
response = ce.completion(messages=[{"role": "user", "content": prompt}])
...
Multiple calls per iteration — sample reflects the full pipeline cost:
with CostEstimator(model="claude-opus-4-7", total_iterations=500) as ce:
for row in rows:
with ce.iteration():
facts = ce.completion(messages=[{"role": "user", "content": extract(row)}])
summary = ce.completion(messages=[{"role": "user", "content": summarize(facts)}])
The first 20 iterations are billed normally and used to build a per-iteration cost and time distribution. After that you'll see something like:
┌────────────────────────────────────────────────────────────┐
│ Cost & Time Estimate │
├────────────────────────────────────────────────────────────┤
│ Model: claude-opus-4-7 │
│ Sample: 20 of 500 iter (actual $0.4321) │
│ Per iter: $0.0216 (σ $0.0042) │
│ Projected: $10.81 │
│ 95% CI cost: $10.05 – $11.57 (±7.0%) │
│ Per iter time: 3.4s │
│ Wall time: 28min │
│ 95% CI time: 26min – 30min │
└────────────────────────────────────────────────────────────┘
→ Proceed? [y/N]:
Decline and subsequent .completion() calls raise EstimationCancelled.
Save the sample on abort
Pass on_cancel=fn to keep the sample-run outputs around after the user declines. costscope asks Save sample run? [y/N] and, on yes, calls fn(estimator) before raising EstimationCancelled. The callback gets the estimator (ce.estimate, ce.actual_total_cost, ce.iterations_done); your own per-iteration outputs come through the closure.
results = []
def save_sample(ce):
Path("sample_run.json").write_text(json.dumps({
"results": results,
"estimate": ce.estimate.total_estimate,
"spent": ce.actual_total_cost,
}))
with CostEstimator(..., on_cancel=save_sample) as ce:
for row in rows:
results.append(ce.completion(...))
See examples/batch_500_rows.py.
Drift detection
The sample is only honest if the rest of the job keeps looking like it. costscope checks the running mean of post-sample iterations every 20 by default and prints a one-line warning to stderr if it walks outside the original CI band:
[costscope] drift at iter 60: post-sample mean $0.0800/iter is above the
95% CI band [$0.0100, $0.0100] (+700.0% vs sample mean). Revised projection
at current rate: $6.40.
It warns once per excursion and re-arms when the running mean returns inside the band, so a temporary spike doesn't spam stderr. Use drift_check_every=N to change the cadence, or drift_check_every=0 to disable. Programmatic access via ce.drift_detected.
Pass drift_action="prompt" to halt the run on the first drift event and ask Proceed despite drift? [y/N]:, just like the sample-end confirmation. Decline and costscope runs the same on_cancel cleanup flow and raises EstimationCancelled. Costscope prompts at most once per run; later excursions still log a warning but don't ask again. In non-interactive contexts (EOF) the prompt declines by default, so headless jobs halt rather than risk overspending.
Skip the prompt
auto_confirm=True— always proceedthreshold_usd=10.0— auto-proceed when the upper bound is under the thresholdconfirm_fn=...— supply your own confirmation callback
OpenAI Responses API
api="auto" (default) routes gpt-image-* and gpt-5* to the Responses API, leaving chat-style models on chat completions. Force one explicitly:
CostEstimator(model="gpt-5", api="responses", ...)
The adapter translates messages= → input= and reads tokens from response.usage.input_tokens / output_tokens (and output_tokens_details.image_tokens for image generation).
Image generation (gpt-image-1)
with CostEstimator(model="gpt-image-1", total_iterations=200) as ce:
for prompt in prompts:
ce.completion(input=prompt, tools=[{"type": "image_generation"}])
Image-output tokens are priced separately ($40/1M for gpt-image-1). See examples/image_generation.py.
Driving the SDK yourself
If you can't use ce.completion() (e.g. you call client.images.generate() directly, or stream), use the escape hatch:
with ce.iteration():
resp = my_custom_call(...)
ce.record(cost=compute_cost(resp), elapsed=measured_seconds)
Synthetic mode
For tests, demos, and dev loops where real API calls would cost money:
from costscope import CostEstimator, SyntheticConfig
cfg = SyntheticConfig(
input_median=800, output_median=300, reasoning_median=2000,
latency_median=1.2, # simulate ~1.2s/call for time estimates
image_output_median=4000, # for image-gen models
seed=42,
)
with CostEstimator(model="o1", total_iterations=500, synthetic=True, synthetic_config=cfg) as ce:
...
See examples/basic.py for a full runnable example.
Supported models (built-in pricing)
OpenAI o-series (o1, o3, o3-mini, ...), GPT-4o, GPT-5, gpt-image-1, Claude 4.x (Opus, Sonnet, Haiku). For other models, supply prices via SyntheticConfig.custom_prices or extend pricing.py.
Auto-refreshed pricing
On the first price lookup, costscope fetches LiteLLM's public price database and caches it to ~/.cache/costscope/litellm_prices.json for ~7 days. LiteLLM tracks hundreds of models across providers and is updated when prices change, so most of the time you get fresh rates without doing anything. The built-in _BUILTIN_PRICES table is the fallback when LiteLLM does not know the model or the network is unavailable.
from costscope import lookup_prices
lookup_prices("claude-opus-4-7") # (input_per_1m, output_per_1m, image_per_1m)
Opt out of the fetch entirely with COSTSCOPE_OFFLINE=1 — useful for airgapped CI, reproducible audits, or any time you want costscope to stay silent on the network. To force a refresh now (ignoring the 7-day TTL), call costscope.litellm_prices.force_refresh().
Use it as a Claude Code skill
I've also packaged costscope as a Claude Code plugin so the wrapping happens automatically. When Claude is writing or editing code that loops over LLM calls — the canonical for x in items: client.chat.completions.create(...) shape, or its Anthropic equivalent — the skill nudges it to reach for CostEstimator before the diff ever lands. It skips one-shot calls, agentic loops with unpredictable branching, and jobs already gated by another budget mechanism, so it stays out of the way when sampling-based estimation isn't the right tool.
To install in a Claude Code session, register this repo as a plugin marketplace and then install the costscope plugin from it:
/plugin marketplace add ahuang915/costscope
/plugin install costscope@costscope-marketplace
The first command points Claude Code at .claude-plugin/marketplace.json in this repo; the second installs the plugin, which loads skills/costscope/SKILL.md into your session. Run /plugin list afterwards to confirm it's enabled — the skill will then surface automatically whenever you're about to write a batched LLM loop. To pin to a local checkout instead (useful while editing the skill yourself), pass an absolute path to /plugin marketplace add in place of the GitHub shorthand:
/plugin marketplace add /absolute/path/to/costscope
Tests
pytest
Project details
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 costscope-0.6.1.tar.gz.
File metadata
- Download URL: costscope-0.6.1.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37b5f5720d52d46559cf2c6b900df0920d0a13b26cc22408f3dfbaccbee77b7c
|
|
| MD5 |
53899b5077a30f408c9702ab5143bb4a
|
|
| BLAKE2b-256 |
c27868045482c11e819d53fe78e48a518cb6733d69a18493cfa9812cc781c165
|
File details
Details for the file costscope-0.6.1-py3-none-any.whl.
File metadata
- Download URL: costscope-0.6.1-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9410054c310b6b79e02edab2ce3b50ef5883215ed00b2e55e7a204491c95ddf8
|
|
| MD5 |
5fa3f1b1983fb7d7b4a5e6e56dc455ad
|
|
| BLAKE2b-256 |
b57e720ba2dfcac7072f6d7afedd6b6e85eebfe099e25a4758e3bdfee5a5325e
|