Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use gpt-4 default and update system prompt
Browse files Browse the repository at this point in the history
transmissions11 authored Dec 7, 2023
1 parent 1dfc26f commit 00107c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@ export const DEFAULT_SETTINGS: Settings = {
temp: 1.2,
n: 3,
autoZoom: true,
model: "gpt-3.5-turbo",
defaultPreamble: `You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible. Knowledge cutoff: 2021-09 Current date: ${
model: "gpt-4",
defaultPreamble: `You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4 architecture.\nKnowledge cutoff: 2022-01\nCurrent date: ${
new Date().toISOString().split("T")[0]
}`,
};

0 comments on commit 00107c1

Please sign in to comment.