Calculate prices for calling LLM inference APIs.
Project description
genai-prices
Installation
uv add genai-prices
(or pip install genai-prices if you're old school)
Warning: these prices will not be 100% accurate
See the project README for more information.
Usage
calc_price
from genai_prices import Usage, calc_price
price_data = calc_price(
Usage(input_tokens=1000, output_tokens=100),
model_ref='gpt-4o',
provider_id='openai',
)
print(f"Total Price: ${price_data.total_price} (input: ${price_data.input_price}, output: ${price_data.output_price})")
extract_usage
extract_usage can be used to extract usage data and the model_ref from response data,
which in turn can be used to calculate prices:
from genai_prices import extract_usage
response_data = {
'model': 'claude-sonnet-4-20250514',
'usage': {
'input_tokens': 504,
'cache_creation_input_tokens': 123,
'cache_read_input_tokens': 0,
'output_tokens': 97,
},
}
extracted_usage = extract_usage(response_data, provider_id='anthropic')
price = extracted_usage.calc_price()
print(price.total_price)
or with OpenAI where there are two API flavors:
from genai_prices import extract_usage
response_data = {
'model': 'gpt-5',
'usage': {'prompt_tokens': 100, 'completion_tokens': 200},
}
extracted_usage = extract_usage(response_data, provider_id='openai', api_flavor='chat')
price = extracted_usage.calc_price()
print(price.total_price)
UpdatePrices
UpdatePrices can be used to periodically update the price data by downloading it from GitHub
Please note:
- this functionality is explicitly opt-in
- we download data directly from GitHub (
https://raw.githubusercontent.com/pydantic/genai-prices/refs/heads/main/prices/data.json) so we don't and can't monitor requests or gather telemetry
At the time of writing, the data.json file
downloaded by UpdatePrices is around 26KB when compressed, so is generally very quick to download.
By default UpdatePrices downloads price data immediately after it's started in the background, then every hour after that.
Usage with UpdatePrices as as context manager:
from genai_prices import UpdatePrices, Usage, calc_price
with UpdatePrices() as update_prices:
update_prices.wait() # optionally wait for prices to have updated
p = calc_price(Usage(input_tokens=123, output_tokens=456), 'gpt-5')
print(p)
Usage with UpdatePrices as a simple class:
from genai_prices import UpdatePrices, Usage, calc_price
update_prices = UpdatePrices()
update_prices.start(wait=True) # start updating prices, optionally wait for prices to have updated
p = calc_price(Usage(input_tokens=123, output_tokens=456), 'gpt-5')
print(p)
update_prices.stop() # stop updating prices
Only one UpdatePrices instance can be running at a time.
If you'd like to wait for prices to be updated without access to the UpdatePrices instance, you can use the wait_prices_updated_sync function:
from genai_prices import wait_prices_updated_sync
wait_prices_updated_sync()
...
Or it's async variant, wait_prices_updated_async.
CLI Usage
Run the CLI with:
uvx genai-prices --help
To list providers and models, run:
uvx genai-prices list
To calculate the price of models, run for example:
uvx genai-prices calc --input-tokens 100000 --output-tokens 3000 o1 o3 claude-opus-4
Further Documentation
We do not yet build API documentation for this package, but the source code is relatively simple and well documented.
If you need further information on the API, we encourage you to read the source code.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genai_prices-0.0.36.tar.gz.
File metadata
- Download URL: genai_prices-0.0.36.tar.gz
- Upload date:
- Size: 46.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1092f5b96168967fa880440dd9dcc9287fd73910b284045f0226a38f628ccbc9
|
|
| MD5 |
803848e2ef3e757684bfde46ff437126
|
|
| BLAKE2b-256 |
39e245c863fb61cf2d70d948e80d63e4f3db213a957976a2a3564e40ebe8f506
|
File details
Details for the file genai_prices-0.0.36-py3-none-any.whl.
File metadata
- Download URL: genai_prices-0.0.36-py3-none-any.whl
- Upload date:
- Size: 48.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ad39e04fbcdb5cfdc3891e68de6ca1064b6660e06e9ba76fa6f161ff12b32e4
|
|
| MD5 |
f8b715ac4ad8a86baf5a7602307f56c0
|
|
| BLAKE2b-256 |
168914b4be11b74dd29827bc37b648b0540fcf3bd6530cb48031f1ce7da4594c
|