From 7e0f2404bb2252740bb976ae2c4e8b59ab61e591 Mon Sep 17 00:00:00 2001 From: EVA09 <940173803@qq.com> Date: Thu, 15 Jan 2026 10:12:15 +0800 Subject: [PATCH] Fix depth assignment in story-summary.js --- modules/story-summary/story-summary.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/story-summary/story-summary.js b/modules/story-summary/story-summary.js index 9bd7280..a8fb30d 100644 --- a/modules/story-summary/story-summary.js +++ b/modules/story-summary/story-summary.js @@ -1048,11 +1048,11 @@ function updateSummaryExtensionPrompt() { let depth = length - lastIdx - 1; if (depth < 0) depth = 0; - + depth = 1000; extension_prompts[SUMMARY_PROMPT_KEY] = { value: text, position: extension_prompt_types.IN_CHAT, - 1000, + depth, role: extension_prompt_roles.ASSISTANT, }; }