From 0495f0448fa4d32db92eb24b361a213f5eab7e98 Mon Sep 17 00:00:00 2001 From: minecraft1024a Date: Sat, 4 Oct 2025 21:11:33 +0800 Subject: [PATCH] =?UTF-8?q?chore(memory):=20=E7=A7=BB=E9=99=A4=E8=AE=B0?= =?UTF-8?q?=E5=BF=86=E7=B3=BB=E7=BB=9F=E5=88=9D=E5=A7=8B=E5=8C=96=E8=BF=87?= =?UTF-8?q?=E7=A8=8B=E4=B8=AD=E7=9A=84=E5=86=97=E4=BD=99=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/chat/memory_system/memory_system.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/chat/memory_system/memory_system.py b/src/chat/memory_system/memory_system.py index 977c130b8..e3d35a31c 100644 --- a/src/chat/memory_system/memory_system.py +++ b/src/chat/memory_system/memory_system.py @@ -162,7 +162,6 @@ class MemorySystem: async def initialize(self): """异步初始化记忆系统""" try: - logger.info("正在初始化记忆系统...") # 初始化LLM模型 fallback_task = getattr(self.llm_model, "model_for_task", None) if self.llm_model else None @@ -268,11 +267,8 @@ class MemorySystem: logger.warning(f"海马体采样器初始化失败: {e}") self.hippocampus_sampler = None - # 统一存储已经自动加载数据,无需额外加载 - logger.info("✅ 简化版记忆系统初始化完成") self.status = MemorySystemStatus.READY - logger.info("✅ 记忆系统初始化完成") except Exception as e: self.status = MemorySystemStatus.ERROR