Skip to content

Python package that provide useful way to estimate your GPT costs. Available on Pypi

License

Notifications You must be signed in to change notification settings

GregoireAMATO/GPTCostCalculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GPT Cost Estimator

This Python package, GPTCostCalculator, provides a simple yet effective tool for estimating the cost of using different ChatGPT models. It is designed for anyone using ChatGPT models in their applications and need to estimate the cost of a particular query. You do NOT need an OpenAI API key to use this package. This package is available on pypi

Features

  • Provides cost estimation for input and output tokens of various ChatGPT models.
  • Supports multiple models including GPT-4, GPT-4-32k, GPT-4-1106-preview, GPT-3.5-turbo-1106, and GPT-3.5-turbo-instruct.
  • Easy integration with existing Python projects.

Supported Models

As of the current release, the package supports the following ChatGPT models:

  • gpt-4o: Input Price - $5, Output Price - $15 per 1M tokens.
  • gpt-3.5-turbo-0125: Input Price - $0.5, Output Price - $1.5 per 1M tokens.
  • gpt-3.5-turbo-instruct: Input Price - $1.5, Output Price - $2 per 1M tokens.

Installation

To install the package, simply run the following command:

pip install GPTCostCalculator

Usage

Here is a basic example of how to use the package:

from GPTCostCalculator import Calculator

# Initialize the calculator
calculator = Calculator()

# Estimate the cost
report = estimator.cost_estimate(model="gpt-4o", input_text="Your input text here", output_text="Expected output text", info_text = True)

output_text is not mandatory.

Dependencies

  • tiktoken: Used for tokenizing the input and output texts.

Contributing

Contributions to the GPTCostCalculator package are welcome. Please feel free to fork the repository, make your changes, and create a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

For any queries or feedback, please contact me.

Disclaimer

Please note that the costs provided by this package are estimates and may vary based on actual usage of ChatGPT models.

About

Python package that provide useful way to estimate your GPT costs. Available on Pypi

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages