diff --git a/README.md b/README.md
index 690b942b..49edf1f0 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@
-[2026/03/26] v0.6.0.beta1 版本发布
+[2026/03/26] v0.6.0.beta2 版本发布
### 新增
@@ -55,7 +55,7 @@
- 新增基于沙盒的知识库只读映射,按“用户可访问知识库 ∩ 当前 Agent 已启用知识库”暴露原始文件与解析后的 Markdown [#576](https://github.com/xerrors/Yuxi-Know/issues/576)
- 重构附件系统,直接集成在了沙盒文件系统中,附件上传后直接落盘到沙盒挂载目录
- 优化前端流式消息体验:新增通用 `useStreamSmoother` 调度层,统一平滑 Agent runs SSE、普通聊天流与审批恢复流中的 `loading` chunk
-- 重构前端 Agent 路由结构及表现形式,体验更加顺畅,切换更加自然(类 chatgpt 体验)
+- 重构 Agent 前后端对话路由结构及表现形式,体验更加顺畅,切换更加自然(API 接口变更)
- 新增 API Key 认证功能,支持外部系统通过 API Key 调用系统服务 [#502](https://github.com/xerrors/Yuxi-Know/issues/502)
- 新增 subagents 的支持,支持在 web 中添加 subagents,以及两个内置的子智能体
- 新增内置Skills reporter,并移除内置 Agent reporter,数据库报表将由 Skills 完成
@@ -69,6 +69,7 @@
- 修复 Lightrag 知识库修改配置后,模型没有切换的 bug [#580](https://github.com/xerrors/Yuxi-Know/issues/580)
- 修复数据库获取接口未过滤文件字段而导致的数据包过大的情况
+- 修复 Thread 未绑定 agent_config_id 导致的历史对话切换后上下文配置错乱的问题
@@ -150,7 +151,7 @@
克隆代码,并初始化
```
-git clone --branch v0.6.0.beta1 --depth 1 https://github.com/xerrors/Yuxi-Know.git
+git clone --branch v0.6.0.beta2 --depth 1 https://github.com/xerrors/Yuxi-Know.git
cd Yuxi-Know
# Linux/macOS
diff --git a/backend/package/yuxi/__init__.py b/backend/package/yuxi/__init__.py
index 6c5c6b1b..10fde92e 100644
--- a/backend/package/yuxi/__init__.py
+++ b/backend/package/yuxi/__init__.py
@@ -7,7 +7,7 @@ from concurrent.futures import ThreadPoolExecutor # noqa: E402
from yuxi.config import config as config # noqa: E402
-__version__ = "0.6.0.beta1"
+__version__ = "0.6.0.beta2"
if os.getenv("YUXI_SKIP_APP_INIT") != "1":
from yuxi.knowledge import graph_base as graph_base # noqa: E402
diff --git a/backend/package/yuxi/agents/buildin/chatbot/prompt.py b/backend/package/yuxi/agents/buildin/chatbot/prompt.py
index 45013f67..cc57c243 100644
--- a/backend/package/yuxi/agents/buildin/chatbot/prompt.py
+++ b/backend/package/yuxi/agents/buildin/chatbot/prompt.py
@@ -9,6 +9,7 @@ PROMPT = """
- /home/gem/user-data/uploads/:用于存放用户上传的文件
如果启用了知识库,除了使用知识库工具之外,
-当需要精准获取信息的时候,或者 query_kb 中没有找到相关的内容,还可以直接访问知识库文件系统 (路径为 /home/gem/kbs/)来获取信息。
+当需要精准获取信息的时候,或者 query_kb 中没有找到相关的内容,还可以直接访问知识库文件系统
+(路径为 /home/gem/kbs/)来获取信息。
源文件可能无法解析,可以在 /home/gem/kbs//parsed/ 中找到解析后的 markdown 文件。
"""
diff --git a/backend/package/yuxi/config/static/info.template.yaml b/backend/package/yuxi/config/static/info.template.yaml
index 5e81d1ac..ccd69c4f 100644
--- a/backend/package/yuxi/config/static/info.template.yaml
+++ b/backend/package/yuxi/config/static/info.template.yaml
@@ -56,6 +56,6 @@ actions:
# 页脚信息
footer:
- copyright: "© 江南语析 2026 v0.6.0.beta1"
+ copyright: "© 江南语析 2026 v0.6.0.beta2"
user_agreement_url: "/protocols/user-agreement.template.html"
privacy_policy_url: "/protocols/privacy-policy.template.html"
diff --git a/backend/package/yuxi/pyproject.toml b/backend/package/yuxi/pyproject.toml
index 1675421c..5c0c5f47 100644
--- a/backend/package/yuxi/pyproject.toml
+++ b/backend/package/yuxi/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "yuxi"
-version = "0.6.0.beta1"
+version = "0.6.0.beta2"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
diff --git a/backend/pyproject.toml b/backend/pyproject.toml
index e7884b0a..9cee2ab2 100644
--- a/backend/pyproject.toml
+++ b/backend/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "yuxi-workspace"
-version = "0.6.0.beta1"
+version = "0.6.0.beta2"
description = "基于大模型的智能知识库与知识图谱智能体开发平台,融合了 RAG 技术与知识图谱技术,基于 LangGraph v1 + Vue.js + FastAPI + LightRAG 架构构建"
readme = "README.md"
requires-python = ">=3.12,<3.14"
diff --git a/backend/uv.lock b/backend/uv.lock
index 4186a7cc..b0f642e8 100644
--- a/backend/uv.lock
+++ b/backend/uv.lock
@@ -5676,12 +5676,12 @@ wheels = [
[[package]]
name = "yuxi"
-version = "0.6.0.beta1"
+version = "0.6.0.beta2"
source = { virtual = "package/yuxi" }
[[package]]
name = "yuxi-workspace"
-version = "0.6.0.beta1"
+version = "0.6.0.beta2"
source = { virtual = "." }
dependencies = [
{ name = "agent-sandbox" },
diff --git a/docs/intro/quick-start.md b/docs/intro/quick-start.md
index 630c0c3a..6a8b2197 100644
--- a/docs/intro/quick-start.md
+++ b/docs/intro/quick-start.md
@@ -20,7 +20,7 @@
```bash
# 克隆最新版本
-git clone --branch v0.6.0.beta1 --depth 1 https://github.com/xerrors/Yuxi-Know.git
+git clone --branch v0.6.0.beta2 --depth 1 https://github.com/xerrors/Yuxi-Know.git
cd Yuxi-Know
```
diff --git a/web/package.json b/web/package.json
index b732cc25..b48bfeb3 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
{
"name": "yuxi-web",
- "version": "0.6.0.beta1",
+ "version": "0.6.0.beta2",
"private": true,
"scripts": {
"dev": "vite",
diff --git a/web/src/apis/agent_api.js b/web/src/apis/agent_api.js
index c8a2bc22..ad803f17 100644
--- a/web/src/apis/agent_api.js
+++ b/web/src/apis/agent_api.js
@@ -90,8 +90,7 @@ export const agentApi = {
* @param {string} threadId - 会话ID
* @returns {Promise} - 历史消息
*/
- getAgentHistory: (threadId) =>
- apiGet(`/api/chat/thread/${threadId}/history`),
+ getAgentHistory: (threadId) => apiGet(`/api/chat/thread/${threadId}/history`),
/**
* 获取指定会话的 AgentState
@@ -99,8 +98,7 @@ export const agentApi = {
* @param {string} threadId - 会话ID
* @returns {Promise} - AgentState
*/
- getAgentState: (threadId) =>
- apiGet(`/api/chat/thread/${threadId}/state`),
+ getAgentState: (threadId) => apiGet(`/api/chat/thread/${threadId}/state`),
/**
* Submit feedback for a message