From 1d4560e676abf6d9f6ed8939bf71473ce357f55b Mon Sep 17 00:00:00 2001 From: AskaEth Date: Sun, 28 Jun 2026 16:37:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20PROACTIVE=5FMSG=5FMIN=5FGAP=5FSEC=3D0=20?= =?UTF-8?q?=E5=86=99=E5=85=A5.env?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/ai-core/internal/background/thinker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/ai-core/internal/background/thinker.go b/backend/ai-core/internal/background/thinker.go index 298dd2c..027f78c 100644 --- a/backend/ai-core/internal/background/thinker.go +++ b/backend/ai-core/internal/background/thinker.go @@ -511,7 +511,7 @@ func NewThinker( lightThinkEnabled: cfg.LightThinkEnabled, lightThinkInterval: cfg.LightThinkInterval, silenceTimeout: cfg.SilenceTimeout, - proactiveMsgMinGap: getEnvDuration("PROACTIVE_MSG_MIN_GAP_SEC", 60), // 默认1分钟 + proactiveMsgMinGap: getEnvDuration("PROACTIVE_MSG_MIN_GAP_SEC", 60), postChatDelay: cfg.PostChatDelay, minThinkGap: cfg.MinThinkGap, offlineThinkGap: cfg.OfflineThinkGap,