File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
from astrbot .core .utils .astrbot_path import get_astrbot_data_path
8
8
9
- VERSION = "3.5.24 "
9
+ VERSION = "3.5.25 "
10
10
DB_PATH = os .path .join (get_astrbot_data_path (), "data_v3.db" )
11
11
12
12
# 默认配置
Original file line number Diff line number Diff line change
1
+ # What's Changed
2
+
3
+ 1 . 修复: 修复插件可能存在的无法正常禁用的问题 ([ #2352 ] ( https://github.com/Soulter/AstrBot/issues/2352 ) )
4
+ 2 . ❗修复:当返回文本为空并且存在函数调用时错误地被终止事件,导致函数调用结果未被正常返回 ([ #2491 ] ( https://github.com/Soulter/AstrBot/issues/2491 ) )
5
+ 3 . 修复:修复无法清空 AstrBot 配置下的 http_proxy 代理的问题 ([ #2434 ] ( https://github.com/Soulter/AstrBot/issues/2434 ) )
6
+ 4 . ❗修复:Gemini 下开启流式输出时,持久化的消息结果不完整 ([ #2424 ] ( https://github.com/Soulter/AstrBot/issues/2424 ) )
7
+ 5 . 修复:注册文件时由于 file:/// 前缀,导致文件被误判为不存在的问题 ([ #2325 ] ( https://github.com/Soulter/AstrBot/issues/2325 ) )
8
+ 6 . 优化: 为部分类型供应商添加默认的温度选项 ([ #2321 ] ( https://github.com/Soulter/AstrBot/issues/2321 ) )
9
+ 7 . 优化: 适配 Qwen3 模型非流式输出下需要传入 enable_think 参数(否则报错) ([ #2424 ] ( https://github.com/Soulter/AstrBot/issues/2424 ) )
10
+ 8 . 优化:支持配置工具调用轮数上限,默认 30
11
+ 9 . 新增: 添加 WebUI 语义化预发布版本提醒和检测功能
12
+
13
+ > 新版本预告: v4.0.0 即将发布。
Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ commonStore.getStartTime();
365
365
</div >
366
366
367
367
<v-alert
368
- v-if =" releases.some(item => isPreRelease(item.tag_name))"
368
+ v-if =" releases.some(( item: {tag_name: string}) => isPreRelease(item.tag_name))"
369
369
type =" warning"
370
370
variant =" tonal"
371
371
border =" start"
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " AstrBot"
3
- version = " 3.5.24 "
3
+ version = " 3.5.25 "
4
4
description = " 易上手的多平台 LLM 聊天机器人及开发框架"
5
5
readme = " README.md"
6
6
requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments