Token usage tracking wrapper for LLMs
Project description
Tokenator : Easiest way to track and analyze LLM token usage and cost
Have you ever wondered about :
- How many tokens does your AI agent consume?
- How much does it cost to do run a complex AI workflow with multiple LLM providers?
- How much money did I spent today on development?
Afraid not, tokenator is here! With tokenator's easy to use API, you can start tracking LLM usage in a matter of minutes and track your LLM usage.
Get started with just 3 lines of code!
Installation
pip install tokenator
Usage
OpenAI
from openai import OpenAI
from tokenator import tokenator_openai
openai_client = OpenAI(api_key="your-api-key")
# Wrap it with Tokenator
client = tokenator_openai(openai_client)
# Use it exactly like the OpenAI client
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)
Cost Analysis
from tokenator import cost
# Get usage for different time periods
cost.last_hour()
cost.last_day()
cost.last_week()
cost.last_month()
# Custom date range
cost.between("2024-03-01", "2024-03-15")
# Get usage for different LLM providers
cost.last_day("openai")
cost.last_day("anthropic")
cost.last_day("google")
Example cost object
Features
- Drop-in replacement for OpenAI, Anthropic client
- Automatic token usage tracking
- Cost analysis for different time periods
- SQLite storage with zero configuration
- Thread-safe operations
- Minimal memory footprint
- Minimal latency footprint
Most importantly, none of your data is ever sent to any server.
License
MIT
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 tokenator-0.1.1.tar.gz.
File metadata
- Download URL: tokenator-0.1.1.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.0 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d19cf3b9564192a3ed23cb531c52959fbe7bd09f9b8242b7f99e299e511086b
|
|
| MD5 |
8de538c8eec16175f6522571c5b8e402
|
|
| BLAKE2b-256 |
695eac4a25cc44d39aed14b77d491c5c244a39238ccd233028a0c0b8176f7824
|
File details
Details for the file tokenator-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tokenator-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.0 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3146e4d5e543310303bea3cacb712e5cd8f58616c359efa4c9ec36386ede2d78
|
|
| MD5 |
43ca288bb77dfb1e992bac84a96f7c1c
|
|
| BLAKE2b-256 |
e8ee9b8eecb2dd3370a0ed701a36b916e3cd12274c4d69dd7a358ceee790b884
|