Skip to content

Commit

Permalink
Feat Models [GPT-4-turbo] (ChatGPTNextWeb#3932)
Browse files Browse the repository at this point in the history
[+] feat(constant.ts): add new models to DEFAULT_MODELS array
  • Loading branch information
H0llyW00dzZ authored Jan 27, 2024
1 parent 2aff350 commit a0dd052
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 @@ -107,6 +107,7 @@ export const SUMMARIZE_MODEL = "gpt-3.5-turbo";

export const KnowledgeCutOffDate: Record<string, string> = {
default: "2021-09",
"gpt-4-turbo-preview": "2023-04",
"gpt-4-1106-preview": "2023-04",
"gpt-4-0125-preview": "2023-04",
"gpt-4-vision-preview": "2023-04",
Expand Down Expand Up @@ -167,6 +168,15 @@ export const DEFAULT_MODELS = [
providerType: "openai",
},
},
{
name: "gpt-4-turbo-preview",
available: true,
provider: {
id: "openai",
providerName: "OpenAI",
providerType: "openai",
},
},
{
name: "gpt-4-1106-preview",
available: true,
Expand Down

0 comments on commit a0dd052

Please sign in to comment.