diff --git a/CHANGELOG.md b/CHANGELOG.md index ec098b3d..934a16e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ 所有重要更改都将记录在此文件中。 +## [3.2.9] - 2026-06-11 + +### 配置提醒 + +- 在 LightRAG 使用 hybrid/mix 查询且允许委托 LivingMemory 时,配置校验、WebUI 设置页和集成状态页会显示非阻塞成本提醒。 +- 独立 WebUI 与 AstrBot 内嵌 Dashboard 统一展示“成本提醒”,提示该组合可能叠加检索与记忆流程并显著增加 LLM 调用和 token 消耗。 +- 补充配置与集成文档,说明高成本组合的影响以及建议改用 local/naive 或只保留一种记忆/检索策略。 + +### 版本 + +- 将插件发布版本号提升至 `3.2.9`。 + +## [3.2.8] - 2026-06-11 + +### 实时学习 + +- 修复关闭实时学习/筛选后仍可能产生高频模型调用的问题,并增加表达学习冷却开关。 +- 默认关闭 LLM Hook 注入,减少非预期上下文构建与模型调用。 + +### WebUI 安全 + +- 新增可选 WebUI 密码认证,默认关闭。 +- 移除硬编码默认 WebUI 密码,启用密码模式时必须显式配置初始密码或环境变量。 + +### 版本 + +- 将插件发布版本号提升至 `3.2.8`。 + ## [3.2.7] - 2026-06-10 ### MaiBot 迁移 diff --git a/README.md b/README.md index 1677e08b..95423c11 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ 让 AstrBot 在群聊中持续采集、学习、审查并注入上下文,使 Bot 逐步具备表达风格、群组黑话、社交关系、长期记忆和人格演化能力。 -[![Version](https://img.shields.io/badge/version-3.2.8-blue.svg)](https://github.com/NickCharlie/astrbot_plugin_self_learning) +[![Version](https://img.shields.io/badge/version-3.2.9-blue.svg)](https://github.com/NickCharlie/astrbot_plugin_self_learning) [![License](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE) [![AstrBot](https://img.shields.io/badge/AstrBot-%3E%3D4.11.4-orange.svg)](https://github.com/Soulter/AstrBot) [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/) diff --git a/README_EN.md b/README_EN.md index 6f9bdac2..6f3807a5 100644 --- a/README_EN.md +++ b/README_EN.md @@ -14,7 +14,7 @@
-[![Version](https://img.shields.io/badge/version-3.2.8-blue.svg)](https://github.com/NickCharlie/astrbot_plugin_self_learning) [![License](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE) [![AstrBot](https://img.shields.io/badge/AstrBot-%3E%3D4.11.4-orange.svg)](https://github.com/Soulter/AstrBot) [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/) +[![Version](https://img.shields.io/badge/version-3.2.9-blue.svg)](https://github.com/NickCharlie/astrbot_plugin_self_learning) [![License](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE) [![AstrBot](https://img.shields.io/badge/AstrBot-%3E%3D4.11.4-orange.svg)](https://github.com/Soulter/AstrBot) [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/) [Features](#what-we-can-do) · [Quick Start](#quick-start) · [Web UI](#visual-management-interface) · [Community](#community) · [Contributing](CONTRIBUTING.md) diff --git a/__init__.py b/__init__.py index b4b41f7a..729f7a6d 100644 --- a/__init__.py +++ b/__init__.py @@ -1,5 +1,5 @@ # AstrBot 自学习插件 -__version__ = "3.2.8" +__version__ = "3.2.9" # Ensure parent namespace packages ("data", "data.plugins") are # durably registered in sys.modules. AstrBot loads plugins via diff --git a/metadata.yaml b/metadata.yaml index 91b2daff..d0b9fbaf 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -2,7 +2,7 @@ name: "astrbot_plugin_self_learning" author: "NickMo, EterUltimate" display_name: "self-learning" description: "SELF LEARNING 自主学习插件 — 让 AI 聊天机器人自主学习对话风格、理解群组黑话、管理社交关系与好感度、自适应人格演化,像真人一样自然对话。(使用前必须手动备份人格数据)" -version: "3.2.8" +version: "3.2.9" repo: "https://github.com/NickCharlie/astrbot_plugin_self_learning" tags: - "自学习"