gpt-4-turbo-preview

This commit is contained in:
DirkSchlossmacher 2024-01-29 11:51:19 +01:00
parent bcd01b773b
commit b0b5e5e9f2
4 changed files with 14 additions and 14 deletions

View File

@ -103,13 +103,13 @@ export class ChatGPTApi implements LLMApi {
"gpt-4", "gpt-4",
"gpt-4-0314", "gpt-4-0314",
"gpt-4-0613", "gpt-4-0613",
"gpt-4-32k", "gpt-4-turbo-preview",
"gpt-4-32k-0314", "gpt-4-32k-0314",
"gpt-4-32k-0613", "gpt-4-32k-0613",
]; ];
// Check if the current model is in the list of models to replace // Check if the current model is in the list of models to replace
const finalModel = modelsToReplace.includes(modelConfig.model) ? "gpt-4-1106-preview" : modelConfig.model; const finalModel = modelsToReplace.includes(modelConfig.model) ? "gpt-4-turbo-preview" : modelConfig.model;
const requestPayload = { const requestPayload = {
messages, messages,

View File

@ -92,7 +92,7 @@ export const SUMMARIZE_MODEL = "gpt-3.5-turbo-1106";
export const KnowledgeCutOffDate: Record<string, string> = { export const KnowledgeCutOffDate: Record<string, string> = {
default: "2021-09", default: "2021-09",
"gpt-4-1106-preview": "2023-04", "gpt-4-turbo-preview": "2023-04",
"gpt-4-vision-preview": "2023-04", "gpt-4-vision-preview": "2023-04",
}; };
@ -122,7 +122,7 @@ export const DEFAULT_MODELS = [
available: true, available: true,
}, },
{ {
name: "gpt-4-1106-preview", name: "gpt-4-turbo-preview",
available: true, available: true,
}, },
{ {

View File

@ -20,7 +20,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.4, "temperature":0.4,
"max_tokens":4000, "max_tokens":4000,
"presence_penalty":0, "presence_penalty":0,
@ -60,7 +60,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.4, "temperature":0.4,
"max_tokens":4000, "max_tokens":4000,
"presence_penalty":0, "presence_penalty":0,
@ -102,7 +102,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.4, "temperature":0.4,
"max_tokens":4000, "max_tokens":4000,
"presence_penalty":0, "presence_penalty":0,
@ -132,7 +132,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.5, "temperature":0.5,
"top_p":1, "top_p":1,
"max_tokens":4000, "max_tokens":4000,
@ -162,7 +162,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.5, "temperature":0.5,
"top_p":1, "top_p":1,
"max_tokens":4000, "max_tokens":4000,
@ -192,7 +192,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.5, "temperature":0.5,
"top_p":1, "top_p":1,
"max_tokens":10000, "max_tokens":10000,
@ -227,7 +227,7 @@ export const EN_MASKS: BuiltinMask[] = [
], ],
"syncGlobalConfig":false, "syncGlobalConfig":false,
"modelConfig":{ "modelConfig":{
"model":"gpt-4-1106-preview", "model":"gpt-4-turbo-preview",
"temperature":0.5, "temperature":0.5,
"top_p":1, "top_p":1,
"max_tokens":4001, "max_tokens":4001,

View File

@ -46,15 +46,15 @@ export const DEFAULT_CONFIG = {
models: DEFAULT_MODELS as any as LLMModel[], models: DEFAULT_MODELS as any as LLMModel[],
modelConfig: { modelConfig: {
model: "gpt-4-1106-preview" as ModelType, model: "gpt-4-turbo-preview" as ModelType,
temperature: 0.5, temperature: 0.5,
top_p: 1, top_p: 1,
max_tokens: 4000, max_tokens: 4000,
presence_penalty: 0, presence_penalty: 0,
frequency_penalty: 0, frequency_penalty: 0,
sendMemory: true, sendMemory: true,
historyMessageCount: 4, historyMessageCount: 14,
compressMessageLengthThreshold: 1000, compressMessageLengthThreshold: 43210,
enableInjectSystemPrompts: true, enableInjectSystemPrompts: true,
template: DEFAULT_INPUT_TEMPLATE, template: DEFAULT_INPUT_TEMPLATE,
}, },