Open AI Calculated Cost
Project description
OPEN AI API - PRICE CALCULATOR
Overview
This package is created to calculate cost of OPEN AI API usage.
Pricing based on following url : OPEN AI Pricing API. Source code: Github
Usage
Without Surrounding Code
# Without surrounding Code
costForThousandCurrency,embeddingsCost,promptCost,completionTokenCost,total_cost = calculate_openai_pricing("GPT-3.5 Turbo","4K context",token_counter.total_embedding_token_count,token_counter.prompt_llm_token_count,token_counter.completion_llm_token_count)
print("currency:"+costForThousandCurrency)
print("embeddingsCost:"+str(embeddingsCost))
print("promptCost:"+str(promptCost))
print("completionTokenCost:"+str(completionTokenCost))
print("total cost:"+str(total_cost))
With Surrounding Code Using Llama Index
import tiktoken
from llama_index.callbacks import CallbackManager, TokenCountingHandler
from llama_index import VectorStoreIndex, SimpleDirectoryReader, ServiceContext
sampleQuery = "Sample Query"
token_counter = TokenCountingHandler(
tokenizer=tiktoken.encoding_for_model("text-davinci-003").encode,
verbose=False # set to true to see usage printed to the console
)
callback_manager = CallbackManager([token_counter])
service_context = ServiceContext.from_defaults(callback_manager=callback_manager)
def askQuestion(quest,storage,service_context,token_counter):
token_counter.reset_counts()
# index defined outside
specificindex = index.get_index(dataFolder,"./storage"+storage,service_context)
print(quest)
result = query.query_index(specificindex, quest,"./storage"+storage)
print(result)
# otherwise, you can access the count directly
print("Embeddings Token Counter stuff is below (total_embedding_token_count):")
print(token_counter.total_embedding_token_count)
print("Detailed ")
print('Embedding Tokens: ', token_counter.total_embedding_token_count, '\n',
'LLM Prompt Tokens: ', token_counter.prompt_llm_token_count, '\n',
'LLM Completion Tokens: ', token_counter.completion_llm_token_count, '\n',
'Total LLM Token Count: ', token_counter.total_llm_token_count)
# CALCULATE PRICING TAKES PLACE HERE
costForThousandCurrency,embeddingsCost,promptCost,completionTokenCost,total_cost = calculate_openai_pricing("GPT-3.5 Turbo","4K context",token_counter.total_embedding_token_count,token_counter.prompt_llm_token_count,token_counter.completion_llm_token_count)
print("currency:"+costForThousandCurrency)
print("embeddingsCost:"+str(embeddingsCost))
print("promptCost:"+str(promptCost))
print("completionTokenCost:"+str(completionTokenCost))
print("total cost:"+str(total_cost))
askQuestion(sampleQuery,"4",service_context,token_counter)
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 openai_pricing_calc_draft-0.2.0.tar.gz.
File metadata
- Download URL: openai_pricing_calc_draft-0.2.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6edbd454cb08dfa0f9b74fdc0ce901b3be6bbc1f78fa2a506cf6bcf8e9004d17
|
|
| MD5 |
16dac11e8830f90454695fe361f51426
|
|
| BLAKE2b-256 |
a7b226e947ce4e00ea3e4942d9c6dfd5c7fba6dc030cca983115c0dd54df1e1c
|
File details
Details for the file openai_pricing_calc_draft-0.2.0-py3-none-any.whl.
File metadata
- Download URL: openai_pricing_calc_draft-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e76c9c6b1b116e6846233f2059538936a47ecbe691fc07b64c5fbe981ccaecb4
|
|
| MD5 |
5fce4f939ceb4b5c560b9f0c934ab947
|
|
| BLAKE2b-256 |
515f29ef64163d230d76459331d5b7437960a2c3313bcfc8fcf94ec655631b34
|