Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion astrbot/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.23.3"
__version__ = "4.23.5"
4 changes: 2 additions & 2 deletions astrbot/core/config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from astrbot.core.utils.astrbot_path import get_astrbot_data_path

VERSION = "4.23.3"
VERSION = "4.23.5"
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
PERSONAL_WECHAT_CONFIG_METADATA = {
"weixin_oc_base_url": {
Expand Down Expand Up @@ -783,7 +783,7 @@ class ChatProviderTemplate(TypedDict):
"appid": {
"description": "appid",
"type": "string",
"hint": "必填项。QQ 官方机器人平台的 appid。如何获取请参考文档。",
"hint": "必填项。当前消息平台的 AppID。如何获取请参考对应平台接入文档。",
},
"secret": {
"description": "secret",
Expand Down
3 changes: 2 additions & 1 deletion changelogs/v4.23.3.md → changelogs/v4.23.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
### 新增

- WebUI ChatUI 新增消息重新编辑、从重新生成 AI 回复、分支询问面板(划选 AI 回复内容即可看到)与会话 checkpoint 支持。([#7673](https://github.com/AstrBotDevs/AstrBot/pull/7673))
- WebUI 聊天附件处理新增预览与文件签名校验,改善上传前的附件识别与展示体验,修复用户消息气泡无法正常显示图片的问题。([commit](https://github.com/AstrBotDevs/AstrBot/commit/0748f0a42))
- WebUI ChatUI 适配思考时的工具调用的模式,并自动将该 Loop 过程合并到独立的侧边栏面板中,以时间线呈现,大幅提升用户体验。([#7742](https://github.com/AstrBotDevs/AstrBot/pull/7742))
- WebUI ChatUI 附件处理新增预览与 Dedup 校验,改善上传前的附件识别与展示体验,修复用户消息气泡无法正常显示图片的问题。([commit](https://github.com/AstrBotDevs/AstrBot/commit/0748f0a42))
- 知识库文档上传新增 EPUB 支持,并补充 EPUB 解析、文件读取与相关测试。([#7594](https://github.com/AstrBotDevs/AstrBot/pull/7594))
- 非流式 Agent Loop 新增中间工具调用消息过程折叠发送功能。([#7627](https://github.com/AstrBotDevs/AstrBot/pull/7627))
- 重新内置 `/provider` 命令,支持通过命令管理与查看 Provider 相关信息。([#7691](https://github.com/AstrBotDevs/AstrBot/pull/7691))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
},
"appid": {
"description": "App ID",
"hint": "Required. App ID for the QQ Official Bot platform. See the docs for how to obtain it."
"hint": "Required. App ID for the current messaging platform. See the platform integration docs for how to obtain it."
},
"callback_server_host": {
"description": "Callback Server Host",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
},
"appid": {
"description": "ID приложения",
"hint": "Обязательно для QQ Official Bot. См. документацию."
"hint": "Обязательно. App ID текущей платформы сообщений. См. документацию по интеграции платформы."
},
"callback_server_host": {
"description": "Хост callback-сервера",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
},
"appid": {
"description": "appid",
"hint": "必填项。QQ 官方机器人平台的 appid。如何获取请参考文档。"
"hint": "必填项。当前消息平台的 AppID。如何获取请参考对应平台接入文档。"
},
"callback_server_host": {
"description": "回调服务器主机",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "AstrBot"
version = "4.23.3"
version = "4.23.5"
description = "Easy-to-use multi-platform LLM chatbot and development framework"
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
Expand Down
Loading