From 1f52b424e1424b781857d7cb6370a45cddf1f8ac Mon Sep 17 00:00:00 2001 From: AskaEth Date: Sun, 28 Jun 2026 16:36:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=BB=E5=8A=A8=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=A2=91=E6=8E=A71=E5=88=86=E9=92=9F?= 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 2ff0d49..298dd2c 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", 0), // 默认关闭频控 + proactiveMsgMinGap: getEnvDuration("PROACTIVE_MSG_MIN_GAP_SEC", 60), // 默认1分钟 postChatDelay: cfg.PostChatDelay, minThinkGap: cfg.MinThinkGap, offlineThinkGap: cfg.OfflineThinkGap,