Skip to main content

Tokenomicon

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

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.

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
    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 caching (discounted cached input tokens).
  • 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.1.0.tar.gz (16.4 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.1.0-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for tokenomicon-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4b4f1ebce9b5e83c7101a05da2159a3457377e22cca62f857f55ab2e8044251a
MD5 17c815ad269c04e766798073b038b4ae
BLAKE2b-256 05768d9e20513f4b523e45b1852f0ed3d8b641f128031c0a53c24f26b8fadf51

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenomicon-0.1.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.1.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for tokenomicon-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 567094f0f1c96ddc56ed29daff23a46953cabd93fbe16738b5488c9842611802
MD5 476c839ad3c3b5177fecdb6590d1fe0c
BLAKE2b-256 a80305351f6f1b9e9b9c0c45a1a62da18f402b2bcbce9e385179905442de4154

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenomicon-0.1.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