openai-token-cost-calculator-updated
v1.1.7
Published
Easily calculate the cost of your OpenAI Usage
Downloads
186
Maintainers
Readme
openai-token-cost-calculator-updated
Forked from openai-cost-calculator
openai-token-cost-calculator-updated
is a reliable npm module that provides cost calculations for various AI models offered by OpenAI. Pricing is maintained regularly to stay on top of OpenAI's pricing changes. Whether you need to calculate costs for OpenAI Language Models, Fine Tuning Models, Embedding Models, Image Models, or Audio Models, this module has got you covered.
Installation
Using npm:
npm install openai-token-cost-calculator-updated
Using yarn:
yarn add openai-token-cost-calculator-updated
Importing
CommonJS:
const costCalculator = require('openai-token-cost-calculator-updated');
ES6:
import * as costCalculator from 'openai-token-cost-calculator-updated';
Functions
1. calculateLanguageModelCost
Usage:
const cost = costCalculator.calculateLanguageModelCost('gpt-4', { promptTokens: 5000, completionTokens: 10000 });
console.log(cost);
Example Output:
{
"promptCost": 0.15,
"completionCost": 0.3,
"totalCost": 0.45,
"formattedTotalCost": "$0.45"
}
Combining openai-gpt-token-counter with openai-cost-calculator
You can combine the openai-gpt-token-counter
module with this one to estimate the cost of processing text using a specific OpenAI model.
Before we begin, make sure that you have openai-token-cost-calculator-updated
installed. If not, you can install it using npm:
npm install openai-gpt-token-counter
Usage
// Importing the required modules
const tokenCounter = require('openai-gpt-token-counter');
const costCalculator = require('openai-token-cost-calculator-updated');
const messages = [
{ role: "user", content: "This is a test prompt to test out the cost calculation functionality of openai-cost-calculator" },
// Add more messages if needed
];
const model = "gpt-4"; // Replace with your desired OpenAI chat model
const tokenCount = tokenCounter.chat(messages, model);
console.log(`Token count: ${tokenCount}`);
// Calculate the cost of processing the text
const cost = costCalculator.calculateLanguageModelCost(model, { promptTokens: tokenCount });
console.log(`Processing cost: ${cost.formattedTotalCost}`);
This script first counts the number of tokens in a text for a specific OpenAI model using the openai-gpt-token-counter
module. Then, it calculates the cost of processing these tokens using the openai-cost-calculator
module. The result is the estimated cost of processing your text with the chosen OpenAI model.
Remember to replace "This is a test sentence."
with your text and "gpt-4"
with your desired OpenAI model. You can use any model supported by openai-gpt-token-counter
and openai-cost-calculator
.
With this approach, you can estimate the cost of using OpenAI models in your projects and ensure that you stay within your budget.
2. calculateFineTuningModelCost
Usage:
// 1st Param - Model
// 2nd Param - Number of tokens
// 3rd Param - Operation, can be either 'Training' or 'Usage'
const cost = costCalculator.calculateFineTuningModelCost('ada', 10000, 'Training');
console.log(cost);
Example Output:
{
"totalCost": 0.004,
"formattedTotalCost": "$0.004"
}
3. calculateEmbeddingModelCost
Usage:
// 1st Param - Model
// 2nd Param - Number of tokens
const cost = costCalculator.calculateEmbeddingModelCost('ada', 10000);
console.log(cost);
Example Output:
{
"totalCost": 0.001,
"formattedTotalCost": "$0.001"
}
4. calculateImageModelCost
Usage:
// 1st Param - Resolution
// 2nd Param - Count of Images
const cost = costCalculator.calculateImageModelCost('512x512', 1);
console.log(cost);
Example Output:
{
"totalCost": 0.36,
"formattedTotalCost": "$0.36"
}
5. calculateAudioModelCost
Usage:
// 1st Param - Model
// 2nd Param - Duration in seconds
const cost = costCalculator.calculateAudioModelCost('whisper-1', 60);
console.log(cost);
Example Output:
{
"totalCost": 0.36,
"formattedTotalCost": "$0.36"
}
Available Models
This library supports a wide range of models:
- Language Models: gpt-4o-mini-2024-07-18, gpt-4o-mini, gpt-4o-2024-05-13, gpt-4o-2024-08-06, gpt-4o, chatgpt-4o-latest, gpt-4-turbo, gpt-4-turbo-2024-04-09, gpt-4, gpt-4-32k, gpt-4-0125-preview, gpt-4-1106-preview, gpt-4-vision-preview, gpt-3.5-turbo-0125, gpt-3. 5-turbo-instruct, gpt-3.5-turbo-1106, gpt-3.5-turbo-0613, gpt-3.5-turbo-16k-0613, gpt-3.5-turbo-0301, davinci-002, babbage-002
- Fine Tuning Models: gpt-4o-mini-2024-07-18, gpt-3.5-turbo, davinci-002, babbage-002
- Embedding Models: ada v2, text-embedding-3-large, text-embedding-3-small
- Image Models: Resolution(1024x1024, 512x512, 256x256) (WIP)
- Audio Models: Whisper, TTS, TTS HD
Contributions
Contributions to improve openai-token-cost-calculator-updated
are more than welcome. Feel free to submit a pull request or report an issue on our GitHub repository.