Skip to content

Commit

Permalink
Update chat.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
AthanaD authored Dec 26, 2023
1 parent 76f632c commit 5b0d245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const modelOptions: ModelOptions[] = [
// 'gpt-4-32k-0314',
];

export const defaultModel = 'gpt-3.5-turbo';
export const defaultModel = 'gpt-4';

export const modelMaxToken = {
'gpt-3.5-turbo': 4096,
Expand Down Expand Up @@ -102,7 +102,7 @@ export const modelCost = {
},
};

export const defaultUserMaxToken = 4000;
export const defaultUserMaxToken = 8192;

export const _defaultChatConfig: ConfigInterface = {
model: defaultModel,
Expand Down

0 comments on commit 5b0d245

Please sign in to comment.