Skip to main content

Inferrail logo

Know what your AI work costs.
Without keeping what it said.

Inferrail is a gateway you run yourself that tracks token usage and estimated LLM cost by customer, workflow, or task for its supported OpenAI and Anthropic endpoints.

CI PyPI version Python 3.11+ License: Apache-2.0 Status: developer preview (alpha)

Try locally · How it works · Privacy · Integrations · Status · Docs

Open source under Apache-2.0. Developer preview: the features below are implemented and tested, but CLI flags, config shape, and receipt fields may still change before 1.0.

Privacy boundary

For each supported request, the gateway writes one receipt to a local file. This is a real receipt from the offline demo below.

Example receipt: synthetic demo data, abbreviated.

{
  "receipt_id": "ir_4090e812f2ba4d3680e7",
  "route": "default",
  "provider": "demo",
  "model": "demo-small",
  "status": "success",
  "prompt_tokens": 812,
  "completion_tokens": 143,
  "pricing": {
    "input_usd_per_million": "0.20",
    "output_usd_per_million": "0.80",
    "source": "DEMO — a made-up round number, not a real provider price",
    "verified_date": "2026-09-26"
  },
  "estimated_cost_usd": "0.000277",
  "attributes": {"customer": "acme", "workflow": "contract-review", "work_id": "work-contract-1"}
}

Omitted here: request_id, timestamp, total_latency_ms, retry_count. Full field list: receipts/schema.py.

What happens to your key and your content (self-hosted):

  • Your gateway process reads the provider key from its own environment and sends requests to the provider you configure.
  • It processes prompts and responses in memory to forward them. The provider still receives your request content, under its own policies.
  • Receipts record usage, cost evidence, status, timing, and the attribution you supply. The receipt path does not copy message bodies.
  • Attribution tags are stored exactly as sent. Use identifiers, and keep secrets and message content out of them.
  • Local telemetry events are operational metadata. The optional usage beacon is separate and sends nothing unless you configure a collector endpoint (details).
  • The hosted trial is a different boundary: if you add a real key there, the hosted process holds that key and handles your traffic.

Check it yourself: request handlers · execution engines (OpenAI, Anthropic) · provider adapters (OpenAI, Anthropic) · receipt builder · sinks (JSONL, SQLite) · canary tests (OpenAI, streaming and telemetry, Anthropic).

inferrail verify-payload-free prints the live receipt schema and checks that no field is named for message content. It is a schema check, not a security audit: it cannot inspect stored values, logs, or your provider.

Try it offline

Requires Python 3.11+. Installing downloads the package and its dependencies; after that, the demo runs offline.

python -m pip install inferrail
inferrail demo
inferrail report --by customer --receipts ./inferrail-demo-receipts.jsonl

The demo needs no API key, makes no network calls, and creates no provider charges. It sends six scripted requests through the real engine with a fake provider and made-up prices labeled DEMO, then writes ./inferrail-demo-receipts.jsonl in your current directory.

Setting up Python or fixing command not found
python3 -m venv .venv && source .venv/bin/activate   # Windows: .venv\Scripts\activate
python -m pip install inferrail

If inferrail is still not found, the environment is not active or pip installed into a different Python. More in docs/self-hosting.md.

Terminal recording of a real, network-blocked run of inferrail demo on synthetic data: six requests, a cost report by customer with one unknown-cost request, a full receipt, and a receipt whose pricing and cost are null

Real run of inferrail demo 0.4.3 with networking blocked. Synthetic data, not provider billing. Static image · captured output · how it was made

In the report, acme shows one request with unknown cost: the demo's preview model has no price on file, so its receipt has "pricing": null and "estimated_cost_usd": null. The COST (USD) column adds up known costs only. It is not a complete bill when the unknown count is above zero.

Send a real request

This uses your own provider account, which bills you as usual. Run the gateway in one terminal, with the key set in that terminal, because the gateway is the process that calls the provider:

export OPENAI_API_KEY=...        # and/or ANTHROPIC_API_KEY=...
inferrail serve --quickstart

Then point your client at it from another terminal or your app:

from openai import OpenAI

client = OpenAI(base_url="http://127.0.0.1:8000/v1", api_key="not-needed")
client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Say hello in five words."}],
    extra_headers={"X-Inferrail-Attribute-Customer": "acme"},
)
import anthropic

# No /v1 here: the Anthropic SDK adds /v1/messages itself.
client = anthropic.Anthropic(base_url="http://127.0.0.1:8000", api_key="not-needed")
client.messages.create(
    model="claude-haiku-4-5-20251001",
    max_tokens=256,
    messages=[{"role": "user", "content": "Say hello in five words."}],
)

The client's api_key is a placeholder; the gateway ignores it unless you set INFERRAIL_GATEWAY_TOKEN. Then run inferrail report --by customer in the gateway's directory. The gateway listens only on 127.0.0.1 by default. Set INFERRAIL_GATEWAY_TOKEN before exposing it anywhere else (SECURITY.md).

How it works

Data flow. On your machine, your application sends requests to the Inferrail gateway, which reads the provider API key from its environment, forwards request content and the key to OpenAI or Anthropic, and returns the response. Separately, the gateway writes a metadata receipt (tokens, cost, status, timing, attributes, no message bodies) to a local JSONL or SQLite store that reports, the local dashboard, and MCP tools read. A usage beacon collector receives lifecycle events only if an endpoint is configured.

Each request is routed by model to a configured provider (routing), executed with retries, and measured. Cost is computed only when the provider reports usage and a verified price is on file; otherwise it stays null, never a guessed $0 (calculator). Architecture: docs/ARCHITECTURE.md. Diagram source: scripts/render_flow_svg.py.

Integrations

Supported today: POST /v1/chat/completions (OpenAI-compatible, with streaming and tool calls), POST /v1/messages (Anthropic-compatible, with streaming and tool use), and GET /health. Any client or framework that lets you set a base URL and sends those shapes can use the gateway. Attribution, work grouping, framework examples, and MCP setup are in docs/integrations.md.

Voice agents. Inferrail has no native voice support. A voice stack can route its text LLM stage through Inferrail if that stage accepts a custom OpenAI- or Anthropic-compatible base URL and sends a supported request shape. Only that stage's tokens and cost are recorded. Audio, speech-to-text, text-to-speech, the Realtime API, and full call cost are not covered, and no voice framework has been tested by this project (details).

Status

Capability Status
Text LLM gateway, cost receipts, reports, attribution Available in the 0.4.3 developer preview on PyPI
Work grouping and application-declared outcomes Available. Reports known cost only and counts unknown-cost receipts separately
Budget checks Available, opt-in. Applies only to supported requests through this gateway; unpriced models are not checked (details)
Local dashboard (serve --app-mode), read-only MCP tools Available. Dashboard ships in the PyPI wheel; MCP needs inferrail[mcp]
AP invoice-exception recovery (inferrail ap demo) Experimental workflow with a bounded contract (docs)
Hosted cost-gateway trial (tryinferrail.com/try) Preview. With a real key, the hosted process holds it in memory, and the trial expires within 4 hours of adding it (key handling)
Hosted Work Economics and Economic Authority Experimental, Base Sepolia testnet only. Work Economics: docs, example. Economic Authority: docs, example
Referral rewards, paid tiers Planned. Not part of the package
Audio, speech-to-text, text-to-speech, Realtime API, embeddings, images, batch Not supported
Providers beyond OpenAI- and Anthropic-compatible APIs (Gemini, Bedrock native) Not supported

Inferrail does not account for all spending on a provider account, only the supported requests that pass through a running gateway. Full scope and non-goals: docs/PRODUCT.md.

Documentation

Feedback, security, license

Release files for inferrail 0.4.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for inferrail 0.4.4
File Size Uploaded
inferrail-0.4.4.tar.gz 1.0 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for inferrail 0.4.4
File Interpreter ABI Platform
inferrail-0.4.4-py3-none-any.whl Python 3 none any Details

Total release size: 1.3 MB

Release files / inferrail-0.4.4.tar.gz

Download URL inferrail-0.4.4.tar.gz
Size 1.0 MB
Tags Source
SHA-256 checksum
How to use checksums
205ad937af82bc3cd4ae03c97a7379d663404487684a0f69986d991160e30674
BLAKE2b-256 checksum
How to use checksums
329dcb4120639dd11c9e67cb0d905cf16ec0fcc08784be0aef9796d8c6dd7fba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / inferrail-0.4.4-py3-none-any.whl

Download URL inferrail-0.4.4-py3-none-any.whl
Size 253.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4eb2b0ca5212e90c5da1a45ee3e00d826d7d89dd035b6e18f0f2a2fd4402caa8
BLAKE2b-256 checksum
How to use checksums
611f9a17eaf436017103eb64670e2b783c5e180fcff2607b31e22be5f8c5e034
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.4.4 This release

2 release files

0.4.3

2 release files

0.4.1

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page