Skip to content

Commit

Permalink
fix a typo in gpt-4-0125 context length (#535)
Browse files Browse the repository at this point in the history
it should be 128k instead of 4k.
source: https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo
  • Loading branch information
fcakyon committed Feb 13, 2024
1 parent ecad41f commit f684004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const modelMaxToken = {
'gpt-4-32k-0314': 32768,
'gpt-4-32k-0613': 32768,
'gpt-4-1106-preview': 128000,
'gpt-4-0125-preview': 4096,
'gpt-4-0125-preview': 128000,
};

export const modelCost = {
Expand Down

0 comments on commit f684004

Please sign in to comment.