Skip to main content

llmtrack

PyPI version Python versions License: MIT Downloads

LLM cost attribution per feature — track which parts of your product are spending your AI budget.


The Problem

Every company using LLMs knows their total monthly bill, but almost none know which user-facing feature or internal workflow is responsible. Without granular attribution, teams cannot optimize high-cost features, set feature-level unit economics, or enforce sub-budgets.


Installation

pip install llm-cost-track

Quickstart

import openai
from llmtrack import CostTracker

tracker = CostTracker()

with tracker.feature("document_summary"):
    response = openai.chat.completions.create(
        model="gpt-4o",
        messages=[{"role": "user", "content": "Summarize this text: ..."}]
    )

tracker.report()

Features

  • 🎯 Feature-Level Cost Attribution: Tag LLM calls with clear product or feature names.
  • ⚡ Zero-Config Auto-Patching: Automatically captures usage from OpenAI and Anthropic SDKs with safe fallbacks.
  • 🧵 Thread-Safe Context Manager: Safely isolate concurrent requests and nested execution flows.
  • 💰 Built-in Model Pricing: Accurate per-million token pricing for 25+ major models across OpenAI, Anthropic, Google, Mistral, Meta, and DeepSeek.
  • 📊 Rich Terminal & HTML Reports: Generate rich ASCII terminal breakdown tables or self-contained dark-mode HTML dashboards.
  • 🚨 Budget Alerts: Set daily spending limits per feature with custom webhook/callback notifications.
  • 💾 Lightweight & Local Storage: Defaults to embedded SQLite (llmtrack.db) or in-memory storage.
  • 💻 CLI Tooling: Query stats and manage tracking databases directly from the terminal with llmtrack.

Supported Models

Provider Supported Models
OpenAI gpt-4o, gpt-4o-mini, gpt-4.5, o1, o1-pro, o1-mini, o3, o3-mini, o4-mini, gpt-4-turbo, gpt-4, gpt-3.5-turbo, embeddings (text-embedding-3-small/large)
Anthropic claude-3-7-sonnet, claude-3-5-sonnet, claude-3-5-haiku, claude-3-opus, claude-3-haiku, claude-opus-4, claude-sonnet-4-5, claude-haiku-4-5, claude-opus-5-5, claude-sonnet-5
Google gemini-2.5-pro, gemini-2.5-flash, gemini-2.5-flash-lite, gemini-2.0-flash, gemini-2.0-flash-lite, gemini-1.5-pro, gemini-1.5-flash, gemini-1.5-flash-8b
DeepSeek deepseek-r1 / deepseek-reasoner, deepseek-v3 / deepseek-chat, deepseek-v4-flash, deepseek-v4-pro, deepseek-coder
xAI grok-2, grok-2-vision, grok-3, grok-3-mini, grok-4.7, grok-4.6, grok-4.1-fast, grok-beta
Mistral mistral-large-2411, mistral-large, mistral-medium-3.5, mistral-small-2409, codestral-2501, pixtral-large, pixtral-12b, ministral-8b, ministral-3b
Meta LLaMA llama-3.3-70b, llama-3.2-90b-vision, llama-3.2-11b-vision, llama-3.2-3b, llama-3.2-1b, llama-3.1-405b, llama-3.1-70b, llama-3.1-8b
Alibaba Qwen qwen-2.5-72b, qwen-2.5-coder-32b, qwen-2.5-14b, qwen-2.5-7b, qwen-max, qwen-plus, qwen-turbo
Cohere command-r-plus, command-r, command-light, embeddings (embed-english-v3.0, embed-multilingual-v3.0)

Custom and unknown models fallback gracefully or can be dynamically registered with register_custom_model().


API Reference

CostTracker

tracker = CostTracker(
    storage: Optional[BaseStorage] = None,
    db_path: str = "llmtrack.db",
    auto_patch: bool = True
)
  • with tracker.feature(name: str):
    Context manager tagging all calls in the block with name.
  • tracker.log_call(model: str, input_tokens: int, output_tokens: int, feature: Optional[str] = None, latency_ms: float = 0.0, metadata: dict = {}) -> CallEvent
    Manually record an LLM call event.
  • tracker.report(days: int = 7, output: str = "terminal", filepath: Optional[str] = None) -> None
    Display or export a cost attribution report (output="terminal" or output="html").
  • tracker.summary(days: int = 7) -> dict
    Return an aggregated summary dict with total cost, calls, and per-feature breakdowns.
  • tracker.set_budget_alert(feature: str, daily_limit_usd: float, callback: Optional[Callable] = None) -> None
    Register daily spending alerts.

CLI Usage

# View terminal summary table (default: last 7 days)
llmtrack report

# Generate report for the last 30 days
llmtrack report --days 30

# Export self-contained HTML report
llmtrack report --html --output cost_report.html

# Clear database
llmtrack clear --db llmtrack.db

Storage Backends

  • SQLiteStorage(db_path="llmtrack.db"): Default persistent storage. Auto-creates schema and indexes.
  • MemoryStorage(): Thread-safe in-memory store, ideal for testing, serverless functions, or short-lived scripts.
from llmtrack import CostTracker, MemoryStorage

tracker = CostTracker(storage=MemoryStorage(), auto_patch=False)

Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

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

Release files for llm-cost-track 0.2.0

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

Source distribution (sdist)

Source distribution for llm-cost-track 0.2.0
File Size Uploaded
llm_cost_track-0.2.0.tar.gz 25.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for llm-cost-track 0.2.0
File Interpreter ABI Platform
llm_cost_track-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 50.9 kB

Release files / llm_cost_track-0.2.0.tar.gz

Download URL llm_cost_track-0.2.0.tar.gz
Size 25.8 kB
Tags Source
SHA-256 checksum
How to use checksums
eeee7f623e845f16e164991053ae3e25e30d69191b9f14f4cd1dbcc4e4f5cd1d
BLAKE2b-256 checksum
How to use checksums
4619748916f22dcb067a001d14cbd89c546ba634372cad22d649694e4d201a1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.2

Release files / llm_cost_track-0.2.0-py3-none-any.whl

Download URL llm_cost_track-0.2.0-py3-none-any.whl
Size 25.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6d8d60ec4f25c24d18cb9b1b3804ce619cc97b062b4cecdbc95db8068d9159e5
BLAKE2b-256 checksum
How to use checksums
cecd77a84b44f0db56c35428d3cb49706e735b4c1eee8e8d870fa23d0ade0da8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.2

Release history Release notifications | RSS feed

0.3.0

2 release files

0.2.2

2 release files

0.2.1

2 release files

This release

0.2.0 This release

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