Skip to main content

Accurate LLM usage & cost tracking for Python backends (FastAPI-native)

Project description

llm-meter 📊

PyPI Version Python Version License

Accurate LLM usage & cost tracking for Python backends.

llm-meter solves the "black box" of LLM costs by providing framework-native (FastAPI) instrumentation that attributes every token, cent, and millisecond to your business-level concepts (User ID, Feature, Endpoint).


⚡ 15-Minute Setup

# Using uv (recommended)
uv add llm-meter

# or pip
pip install llm-meter

1. Initialize & Instrument

from fastapi import FastAPI
from llm_meter import LLMMeter, FastAPIMiddleware
from openai import OpenAI

# 1. Initialize SDK
meter = LLMMeter(
    storage_url="sqlite+aiosqlite:///llm_usage.db",
    providers={"openai": {"api_key": "YOUR_KEY"}}
)

app = FastAPI()

# 2. Add Middleton for automatic attribution
app.add_middleware(FastAPIMiddleware, meter=meter)

# 3. Wrap your client
client = meter.wrap_client(OpenAI())

@app.post("/generate")
async def generate(prompt: str):
    # This call is automatically tracked and attributed to "/generate"
    response = client.chat.completions.create(
        model="gpt-4",
        messages=[{"role": "user", "content": prompt}]
    )
    return {"text": response.choices[0].message.content}

2. Inspect via CLI

# Get a high-level summary
llm-meter usage summary

# See which endpoint costs the most
llm-meter usage by-endpoint

🎯 Key Features

  • Accounting, not Observability: Focuses on cost attribution and usage tracking, not heavy traces or prompt logging.
  • FastAPI Native: Middleware handles request_id and context propagation automatically.
  • Async-Safe: Powered by contextvars to ensure usage is correctly attributed even in complex async workflows.
  • Proxy-Free: Works via SDK-level instrumentation (no network interception or latency overhead).
  • Self-Hosted: You own your data. Supports SQLite (default) and PostgreSQL.

⚠️ v1 Limitations

  • Supports OpenAI and Azure OpenAI.
  • Batch token tracking (Streaming support coming in v1.1).
  • No web UI (everything is available via CLI or SQL).

🛠 Contributing

We love contributions! Please see CONTRIBUTING.md for details on how to get started.


📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

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

llm_meter-0.1.0.tar.gz (78.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llm_meter-0.1.0-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file llm_meter-0.1.0.tar.gz.

File metadata

  • Download URL: llm_meter-0.1.0.tar.gz
  • Upload date:
  • Size: 78.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.20 {"installer":{"name":"uv","version":"0.9.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for llm_meter-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2049d20ed1fc1f4ab4ca62e1b1b0bae56642260cc1ed489abba214b2f4233fc5
MD5 e896fdb24539f02cf779a3287d2b4f1a
BLAKE2b-256 bebc6f41a05bcb9f560c029b84444e02b3658bdf610c2de2a7612a4ce538e555

See more details on using hashes here.

File details

Details for the file llm_meter-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: llm_meter-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.20 {"installer":{"name":"uv","version":"0.9.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for llm_meter-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c253b17b88cfb9f58d6474b235972513dce5a09d46bdc98ac7e8555c66d8ed12
MD5 1471b8463dbb1ab0f4e976f12ecd7033
BLAKE2b-256 ffa8877f85fbd6eb368f33a5f4100e5c231719f4699a86a7a5a5d80cac06af71

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page