Skip to main content

Simple Library for OpenAI Usage

Project description

openai-usage

PyPI

Utilities to track and estimate API usage costs.

Installation

pip install openai-usage

Usage

Tracking Token Usage

Track usage manually or create Usage objects from OpenAI's response objects.

from openai_usage import Usage
from openai.types.completion_usage import CompletionUsage

# Manually create a Usage object
manual_usage = Usage(requests=1, input_tokens=100, output_tokens=200, total_tokens=300)

# Create from an OpenAI CompletionUsage object
openai_completion_usage = CompletionUsage(prompt_tokens=50, completion_tokens=150, total_tokens=200)
usage_from_openai = Usage.from_openai(openai_completion_usage)

# Add usage objects together
combined_usage = Usage()
combined_usage.add(manual_usage)
combined_usage.add(usage_from_openai)

print(f"Total requests: {combined_usage.requests}")
print(f"Total input tokens: {combined_usage.input_tokens}")
print(f"Total output tokens: {combined_usage.output_tokens}")

Estimating Costs

Estimate the cost of your API usage for any supported model.

from openai_usage import Usage

# Create a usage object
usage = Usage(requests=1, input_tokens=1000, output_tokens=2000, total_tokens=3000)

# Estimate cost for a model
# The library fetches pricing data from an external API
cost = usage.estimate_cost("anthropic/claude-3-haiku")
print(f"Estimated cost for the model: ${cost:.6f}")

# For the most up-to-date pricing, use realtime_pricing=True
cost_realtime = usage.estimate_cost("anthropic/claude-3-haiku", realtime_pricing=True)
print(f"Estimated real-time cost for the model: ${cost_realtime:.6f}")

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

openai_usage-0.8.0.tar.gz (81.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openai_usage-0.8.0-py3-none-any.whl (84.7 kB view details)

Uploaded Python 3

File details

Details for the file openai_usage-0.8.0.tar.gz.

File metadata

  • Download URL: openai_usage-0.8.0.tar.gz
  • Upload date:
  • Size: 81.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.11.13 Darwin/25.1.0

File hashes

Hashes for openai_usage-0.8.0.tar.gz
Algorithm Hash digest
SHA256 48303287950dc7223465fee2bd6b4a7cc1fc7e26fd12cc28b7e31da37ef08de4
MD5 7d1b5db4023104fda2ae38133afa7639
BLAKE2b-256 480ca94bd15d799015b49e5e4d964e8ca12abc9a9a4ea6a05eb9d0ef6d75afb0

See more details on using hashes here.

File details

Details for the file openai_usage-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: openai_usage-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 84.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.11.13 Darwin/25.1.0

File hashes

Hashes for openai_usage-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c16f8b1270cf40fb8ed38c00e45e68f1cd123949dd27c25656b35ff421eb91a6
MD5 a76eb57eda1e335c190312a8f45857c0
BLAKE2b-256 98dd652bb183e4ae4a17258dea97621a52ca5eba62112d865169c09d70c47119

See more details on using hashes here.

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