From 18e354c82d29e9647734497000c4797f0e404a2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Jun 2025 15:49:37 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20=E8=87=AA=E5=8A=A8=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E5=8C=96=E4=BB=A3=E7=A0=81=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/chat/memory_system/Hippocampus.py | 4 ++-- src/common/logger.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chat/memory_system/Hippocampus.py b/src/chat/memory_system/Hippocampus.py index 5f84a10ff..457b00de8 100644 --- a/src/chat/memory_system/Hippocampus.py +++ b/src/chat/memory_system/Hippocampus.py @@ -410,7 +410,7 @@ class Hippocampus: visited_nodes.add(neighbor) nodes_to_process.append((neighbor, new_activation, current_depth + 1)) # logger.debug( - # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" + # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" # ) # noqa: E501 # 更新激活映射 @@ -581,7 +581,7 @@ class Hippocampus: visited_nodes.add(neighbor) nodes_to_process.append((neighbor, new_activation, current_depth + 1)) # logger.debug( - # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" + # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" # ) # noqa: E501 # 更新激活映射 diff --git a/src/common/logger.py b/src/common/logger.py index a788f193e..067056c9f 100644 --- a/src/common/logger.py +++ b/src/common/logger.py @@ -154,7 +154,7 @@ MODULE_COLORS = { "memory": "\033[34m", "hfc": "\033[96m", "base_action": "\033[96m", - "action_manager": "\033[34m]" + "action_manager": "\033[34m]", } RESET_COLOR = "\033[0m"