From a83e7318b0ef5c9ac1a814e11095f79ea0f376fa Mon Sep 17 00:00:00 2001 From: pcpthm Date: Fri, 31 Jan 2025 22:38:11 +0900 Subject: [PATCH] Make "request model reasoning" default true --- public/scripts/openai.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/openai.js b/public/scripts/openai.js index 64c5a6a75..f1fed2799 100644 --- a/public/scripts/openai.js +++ b/public/scripts/openai.js @@ -298,7 +298,7 @@ const default_settings = { names_behavior: character_names_behavior.DEFAULT, continue_postfix: continue_postfix_types.SPACE, custom_prompt_post_processing: custom_prompt_post_processing_types.NONE, - show_thoughts: false, + show_thoughts: true, seed: -1, n: 1, }; @@ -377,7 +377,7 @@ const oai_settings = { names_behavior: character_names_behavior.DEFAULT, continue_postfix: continue_postfix_types.SPACE, custom_prompt_post_processing: custom_prompt_post_processing_types.NONE, - show_thoughts: false, + show_thoughts: true, seed: -1, n: 1, };