Skip to content

Commit

Permalink
Add gpt-4-0125-preview (#3924)
Browse files Browse the repository at this point in the history
  • Loading branch information
leo4life2 authored Jan 26, 2024
1 parent 118e8f5 commit 981a362
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
export const KnowledgeCutOffDate: Record<string, string> = {
default: "2021-09",
"gpt-4-1106-preview": "2023-04",
"gpt-4-0125-preview": "2023-04",
"gpt-4-vision-preview": "2023-04",
};

Expand Down Expand Up @@ -175,6 +176,15 @@ export const DEFAULT_MODELS = [
providerType: "openai",
},
},
{
name: "gpt-4-0125-preview",
available: true,
provider: {
id: "openai",
providerName: "OpenAI",
providerType: "openai",
},
},
{
name: "gpt-4-vision-preview",
available: true,
Expand Down

2 comments on commit 981a362

@eMUQI
Copy link

@eMUQI eMUQI commented on 981a362 Jan 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend also adding gpt-4-turbo-preview.

For those who want to be automatically upgraded to new GPT-4 Turbo preview versions, we are also introducing a new gpt-4-turbo-preview model name alias, which will always point to our latest GPT-4 Turbo preview model.

@H0llyW00dzZ
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend also adding gpt-4-turbo-preview.

For those who want to be automatically upgraded to new GPT-4 Turbo preview versions, we are also introducing a new gpt-4-turbo-preview model name alias, which will always point to our latest GPT-4 Turbo preview model.

Please sign in to comment.