Token usage and cost tracking for OpenAI responses (another AI providers in future)
Project description
Support GPT and Gemini APIs
To install:
pip install gpt-token-tracker
Examples:
from gpt_token_tracker.token_logger import TokenLogger
from gpt_token_tracker.writers.log_writer import LogWriter
from gpt_token_tracker.pricing import PricingRealtime
log_writer = LogWriter("realtime_tokens") ### Name of logger
realtime_costs = {
"text_in": 0.60,
"cached_text_in": 0.06,
"text_out": 2.40,
"audio_in": 10.00,
"audio_out": 20.00,
"image_in": 5.00,
"cached_image_in": 0.50,
"cached_audio_in": 0.40,
}
token_logger = TokenLogger(log_writer, PricingRealtime(realtime_costs))
token_logger_realtime.record(realtime_model, realtime_result, fake_realtime_usage)
MODEL_NAME = "gpt-realtime-mini"
response = ...
realtime_result = "This is a fake realtime result"
usage = response.usage
token_logger.record(MODEL_NAME, realtime_result, usage)
from gpt_token_tracker.token_logger import TokenLogger
from gpt_token_tracker.writers.csv_writer import CSVWriter
from gpt_token_tracker.pricing import PricingTextCompletion
csv_writer = CSVWriter("completion_usage.csv")
text_completion_costs = {
"text_in": 0.25,
"cached_text_in": 0.025,
"text_out": 2.00,
}
csv_token_logger = TokenLogger(csv_writer, PricingTextCompletion(text_completion_costs))
MODEL_NAME = "gpt-5-mini"
response = ...
completion_result = "This is a fake completion result"
usage = response.usage
csv_token_logger.record(MODEL_NAME, completion_result, usage)
from gpt_token_tracker.token_logger import TokenLogger
from gpt_token_tracker.writers.csv_writer import CSVWriter
from gpt_token_tracker.pricing_gemini import PricingGemini
csv_writer = CSVWriter("gemini_usage.csv")
costs = {
"text_in": 0.10,
"image_in": 0.10,
"video_in": 0.10,
"audio_in": 0.30,
"cached_text_in": 0.01,
"cached_video_in": 0.01,
"cached_image_in": 0.01,
"cached_audio_in": 0.03,
"text_out": 0.40,
"audio_out": 0.40,
"thinking": 0.40
}
csv_token_logger = TokenLogger(csv_writer, PricingGemini(costs))
MODEL_NAME = "gemini-2.5-flash-native-audio"
response = ...
result = "This is a fake completion result"
usage = ...
csv_token_logger.record(MODEL_NAME, result, usage)
To run tests:
python -m pip install -r requirements.txt -r requirements_tests.txt --upgrade
python -m pytest tests
Project details
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 gpt_token_tracker-0.2.1.tar.gz.
File metadata
- Download URL: gpt_token_tracker-0.2.1.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37f532ef130f835072149165e5ce793e199d1b31016cd4a564d19cbdab215786
|
|
| MD5 |
b2e1e17014d644e1ad2eea6fb210e0cb
|
|
| BLAKE2b-256 |
ae3d2ad3b835c07bddafc800c64e1f18e9101242f69d2ca61d5323f16e03d6f8
|
File details
Details for the file gpt_token_tracker-0.2.1-py3-none-any.whl.
File metadata
- Download URL: gpt_token_tracker-0.2.1-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6afce6ec6e08c05b0a44fd276b193b0bc7bc49f98d92d28f10e7afc34619e295
|
|
| MD5 |
53c4690e3fda5072d30b532fae37fcb9
|
|
| BLAKE2b-256 |
c2916b4bd5bcc47a043957256b5e7502a1d47152a09976ea7f0b590bf19ea9bb
|