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.
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.
pip install tokenomiconfrom 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, untouchedpricing.toml:
[gpt-5.4-mini]
input_per_million = "0.75"
output_per_million = "4.50"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."
${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.
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 | NoneToken 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.
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.
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.
- Prompt caching (discounted cached input tokens).
- Cost accumulation / ledger across multiple calls. Tokenomicon deliberately stays per-call; aggregate however fits your own storage.
git clone https://github.com/seto/tokenomicon.git
cd tokenomicon
pip install -e ".[dev]"
pytest tests/unitIntegration 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/integrationSee tests/integration/conftest.py for the expected environment variables.
This program is licensed under the
Apache License, Version 2.0.
See the LICENSE file for
details.
See CHANGES.md for release notes.