mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-01 00:49:25 +00:00
community[patch]: updated openai prices in mapping (#17009)
- **Description:** there are january prices update for chatgpt [blog](https://openai.com/blog/new-embedding-models-and-api-updates), also there are updates on their website on page [pricing](https://openai.com/pricing) - **Issue:** N/A --------- Co-authored-by: Bagatur <baskaryan@gmail.com>
This commit is contained in:
parent
e35c7fa3b2
commit
de5e96b5f9
@ -25,7 +25,10 @@ MODEL_COST_PER_1K_TOKENS = {
|
||||
"gpt-4-vision-preview-completion": 0.03,
|
||||
"gpt-4-1106-preview-completion": 0.03,
|
||||
# GPT-3.5 input
|
||||
# gpt-3.5-turbo points at gpt-3.5-turbo-0613 until Feb 16, 2024.
|
||||
# Switches to gpt-3.5-turbo-0125 after.
|
||||
"gpt-3.5-turbo": 0.0015,
|
||||
"gpt-3.5-turbo-0125": 0.0005,
|
||||
"gpt-3.5-turbo-0301": 0.0015,
|
||||
"gpt-3.5-turbo-0613": 0.0015,
|
||||
"gpt-3.5-turbo-1106": 0.001,
|
||||
@ -33,7 +36,10 @@ MODEL_COST_PER_1K_TOKENS = {
|
||||
"gpt-3.5-turbo-16k": 0.003,
|
||||
"gpt-3.5-turbo-16k-0613": 0.003,
|
||||
# GPT-3.5 output
|
||||
# gpt-3.5-turbo points at gpt-3.5-turbo-0613 until Feb 16, 2024.
|
||||
# Switches to gpt-3.5-turbo-0125 after.
|
||||
"gpt-3.5-turbo-completion": 0.002,
|
||||
"gpt-3.5-turbo-0125-completion": 0.0015,
|
||||
"gpt-3.5-turbo-0301-completion": 0.002,
|
||||
"gpt-3.5-turbo-0613-completion": 0.002,
|
||||
"gpt-3.5-turbo-1106-completion": 0.002,
|
||||
|
Loading…
Reference in New Issue
Block a user