Skip to main content

Tokenomicon

License: Apache-2.0 Version Supported Versions Unit Tests Integration Tests Code Style: Black Linting: Ruff

Tokenomicon is a post-hoc financial divination tool for LLM hunger and budget dread. It calculates what a call to an LLM provider owes you back, in the form of a tribute. Nothing more, nothing less.

No token counting before the call. No pricing catalog to keep in sync with whatever model shipped this week. Just the augur, reading the entrails of the response you already got.


Why

Most cost-tracking tools for LLM calls either bundle a tokenizer (useful only for one provider, drifting out of date as models change) or ship a hardcoded pricing table (equally stale the moment a provider changes a rate). Tokenomicon does neither.

  • Zero runtime dependencies. Pure standard library, Python 3.11+.
  • No opinion on what exists. Tokenomicon doesn't know or care which models are on the market. You register what you use, at the price you were quoted.
  • No redeploy for a price change. Pricing lives in an external TOML file, reloadable at runtime.
  • Reads the bill, doesn't guess it. Token usage is read from the provider's own response, the same numbers you'd already be billed on, not estimated with a local tokenizer.

Installation

pip install tokenomicon

Quick start

from tokenomicon import config, augur

config.load_toml("pricing.toml")

@augur(model="gpt-5.4-mini")
def call_llm(prompt: str):
    return your_llm_client.chat.completions.create(
        model="gpt-5.4-mini",
        messages=[{"role": "user", "content": prompt}],
    )

outcome = call_llm("hi")

print(outcome.tribute)  # Decimal('3.14159'), what this call owes
print(outcome.result)  # the original provider response, untouched

pricing.toml:

[gpt-5.4-mini]
input_per_million = "0.75"
output_per_million = "4.50"

Configuration

TOML

Register pricing plans by loading a TOML file. There's no fixed or implied location: pass whatever path fits your project (root, config/, a path from an environment variable, etc.). Tokenomicon never looks for a file on its own.

config.load_toml("pricing.toml")

Each table is a model name; currency defaults to "USD" if omitted:

[claude-sonnet-5]
input_per_million = "3.00"
output_per_million = "15.00"
currency = "EUR"

An unregistered model raises ModelNotConfiguredError: Tokenomicon never falls back to a bundled "market price."

Environment variable expansion

${VAR_NAME} patterns in the TOML file are left untouched by default. Opt in explicitly to expand them from the environment:

config.load_toml("pricing.toml", expand_env=True)
[gpt-5.4-mini]
input_per_million = "${GPT_5_4_MINI_INPUT}"
output_per_million = "${GPT_5_4_MINI_OUTPUT}"

A referenced variable that isn't set raises ConfigError.

Prompt caching

Set cached_input_per_million on a plan to price cache reads at a discounted rate:

[claude-sonnet-5]
input_per_million = "3.00"
output_per_million = "15.00"
cached_input_per_million = "0.30"

Cached tokens are billed separately from regular input tokens, not as a subset of them, matching how the token counts are reported back to tribute() and CallResult. If cached_input_per_million isn't set, cached tokens fall back to the regular input rate — no discount, but nothing lost or silently dropped either.

Extraction is automatic wherever the provider reports it: OpenAI's cached_tokens, Anthropic's cache_read_input_tokens, and Google's cached_content_token_count are all recognized. Cache write costs (e.g. Anthropic's cache creation premium) aren't tracked yet — see Not yet supported.

The augur decorator

augur wraps a function that returns a provider response. It reads token usage off that response, calculates the tribute owed, and returns a CallResult without touching your original return value:

@dataclass(frozen=True, slots=True)
class CallResult:
    result: Any  # the original, untouched response
    tribute: Decimal | None  # what this call owes, or None if undetermined
    input_tokens: int | None
    output_tokens: int | None
    cached_tokens: int | None  # tokens served from a prompt cache, 0 if none
    currency: str | None

Supported providers

Token usage is extracted automatically from known response shapes:

import openai
client = openai.OpenAI()

@augur(model="gpt-5.4-mini")
def call():
    return client.chat.completions.create(
        model="gpt-5.4-mini",
        messages=[{"role": "user", "content": "hi"}],
    )

The same works out of the box for anthropic and google-genai clients; Tokenomicon recognizes their respective usage / usage_metadata shapes without any extra configuration.

Fallback for unrecognized responses

If a response doesn't match a known shape (a local model, a custom client, a provider not yet supported), supply a manual_tokens function:

@augur(
    model="local-llama",
    manual_tokens=lambda response: (response["prompt_len"], response["gen_len"]),
)
def call_local(prompt: str):
    return my_local_client.generate(prompt)

manual_tokens is only called if automatic extraction fails, it never overrides a successful automatic read. If neither succeeds, Tokenomicon emits a TokenExtractionWarning and returns a CallResult with tribute=None, rather than guessing.

Error handling

All exceptions inherit from TokenomiconError:

Exception Raised when
ModelNotConfiguredError The requested model isn't registered in Config.
InvalidCurrencyError currency isn't a valid ISO 4217 code.
InvalidPricingError A rate is negative or otherwise invalid.
NegativeTokenCountError A token count passed to .tribute() is negative.
ConfigError TOML parsing fails, a field is missing, or an env var referenced via expand_env isn't set.

TokenExtractionWarning is a UserWarning, not an exception: it doesn't interrupt the call, it only signals that the tribute couldn't be determined.

[!NOTE]
ModelNotConfiguredError is raised after your wrapped function has already run. A misconfigured model name doesn't prevent the underlying LLM call from firing (and being billed by the provider); it only prevents Tokenomicon from calculating its tribute. Register your models before the calls that use them.

Not yet supported

  • Prompt cache writes (e.g. Anthropic's cache-creation premium pricing). Cache reads are supported; see Prompt caching.
  • Cost accumulation / ledger across multiple calls. Tokenomicon deliberately stays per-call; aggregate however fits your own storage.

Development

git clone https://github.com/seto/tokenomicon.git
cd tokenomicon
pip install -e ".[dev]"
pytest tests/unit

Integration tests make real, minimal calls against actual provider SDKs, to confirm extractors recognize genuine response shapes rather than hand-built fixtures. They require API keys and are opt-in only:

pip install -r tests/integration/requirements.txt
pytest tests/integration

See tests/integration/conftest.py for the expected environment variables.

License

This program is licensed under the Apache License, Version 2.0.
See the LICENSE file for details.

Changelog

See CHANGES.md for release notes.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tokenomicon-0.2.0.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

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

tokenomicon-0.2.0-py3-none-any.whl (18.0 kB view details)

Uploaded Python 3

File details

Details for the file tokenomicon-0.2.0.tar.gz.

File metadata

  • Download URL: tokenomicon-0.2.0.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tokenomicon-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c5bf01fc9eadc0c90df8be273c4fa42d4a2907e04fe322bcb041a6eddeed364b
MD5 8a1209ab8c80c1eea86c2706cbc7aff9
BLAKE2b-256 65a9ca36a9dfd4d73aa8a157523394b7b3869291e193d7a70b58fe3e683f8f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenomicon-0.2.0.tar.gz:

Publisher: publish.yml on seto/tokenomicon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tokenomicon-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: tokenomicon-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tokenomicon-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 17e00bb0403be41d0b870a6273c38054271a7276ae4eab830676ba59c8e83702
MD5 5d14c8b99ef9e945a303eb631fb58c3b
BLAKE2b-256 2c2c827b123bee2f5a725d9b0c8a32aca0314593631cf61b46faad02d49612c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenomicon-0.2.0-py3-none-any.whl:

Publisher: publish.yml on seto/tokenomicon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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