Explorar el Código

fix: #3192 use smaller max_tokens as default

Yifei Zhang hace 1 año
padre
commit
87e3d663a2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/store/config.ts

+ 1 - 1
app/store/config.ts

@@ -49,7 +49,7 @@ export const DEFAULT_CONFIG = {
     model: "gpt-3.5-turbo" as ModelType,
     temperature: 0.5,
     top_p: 1,
-    max_tokens: 8192,
+    max_tokens: 4000,
     presence_penalty: 0,
     frequency_penalty: 0,
     sendMemory: true,