feat: 添加兼容性别名以支持增强记忆激活器,优化向量生成逻辑并调整日志级别

This commit is contained in:
Windpicker-owo
2025-10-01 18:30:47 +08:00
parent fda7341b2c
commit 70c056b4fa
4 changed files with 18 additions and 14 deletions

View File

@@ -60,7 +60,7 @@ class SingleStreamContextManager:
self.last_access_time = time.time()
# 启动流的循环任务(如果还未启动)
await stream_loop_manager.start_stream_loop(self.stream_id)
logger.info(f"添加消息{message.processed_plain_text}到单流上下文: {self.stream_id}")
logger.debug(f"添加消息{message.processed_plain_text}到单流上下文: {self.stream_id}")
return True
except Exception as e:
logger.error(f"添加消息到单流上下文失败 {self.stream_id}: {e}", exc_info=True)