From 33d986aa2a180904401e62fde80782f14529a238 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 24 Jul 2025 16:47:54 +0800 Subject: [PATCH] Change default history_turns from 3 to 0 in settings store of webui --- lightrag_webui/src/stores/settings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightrag_webui/src/stores/settings.ts b/lightrag_webui/src/stores/settings.ts index 36a96126..893c98f6 100644 --- a/lightrag_webui/src/stores/settings.ts +++ b/lightrag_webui/src/stores/settings.ts @@ -118,7 +118,7 @@ const useSettingsStoreBase = create()( only_need_context: false, only_need_prompt: false, stream: true, - history_turns: 3, + history_turns: 0, user_prompt: '', enable_rerank: true }, @@ -221,7 +221,7 @@ const useSettingsStoreBase = create()( only_need_context: false, only_need_prompt: false, stream: true, - history_turns: 3, + history_turns: 0, hl_keywords: [], ll_keywords: [] }