fix:优化记忆提取,提供细节prompt debug项目

This commit is contained in:
SengokuCola
2025-11-03 22:41:21 +08:00
parent 6d70cf7528
commit 3e5058eb0f
8 changed files with 53 additions and 79 deletions

View File

@@ -7,7 +7,7 @@ from src.plugin_system.base.config_types import ConfigField
# 导入依赖的系统组件
from src.common.logger import get_logger
from src.plugins.built_in.memory.build_memory import GetMemoryAction, GetMemoryTool
from src.plugins.built_in.memory.build_memory import GetMemoryTool
logger = get_logger("memory_build")
@@ -48,7 +48,6 @@ class MemoryBuildPlugin(BasePlugin):
# --- 根据配置注册组件 ---
components = []
# components.append((GetMemoryAction.get_action_info(), GetMemoryAction))
components.append((GetMemoryTool.get_tool_info(), GetMemoryTool))
return components