gpt-4-turbo

This commit is contained in:
DirkSchlossmacher 2024-04-17 08:22:15 +02:00
parent f6e2d3a68c
commit ba8bb01233

View File

@ -46,14 +46,14 @@ export const DEFAULT_CONFIG = {
models: DEFAULT_MODELS as any as LLMModel[], models: DEFAULT_MODELS as any as LLMModel[],
modelConfig: { modelConfig: {
model: "gpt-4-turbo-preview" as ModelType, model: "gpt-4-turbo" 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: 14, historyMessageCount: 20,
compressMessageLengthThreshold: 43210, compressMessageLengthThreshold: 43210,
enableInjectSystemPrompts: true, enableInjectSystemPrompts: true,
template: DEFAULT_INPUT_TEMPLATE, template: DEFAULT_INPUT_TEMPLATE,