Soulter
38486bc5aa
feat: enhance default configuration with new provider settings and context management options
2025-09-02 23:06:31 +08:00
Soulter
7b8800c4eb
perf: add option to clear provider selection in ProviderSelector component
2025-09-02 21:49:11 +08:00
Soulter
8f4625f53b
Merge remote-tracking branch 'origin/master' into releases/4.0.0
2025-08-31 20:37:53 +08:00
Soulter
1e5f243edb
📦 release: v3.5.26
v3.5.26
2025-08-31 20:25:05 +08:00
Soulter
e5eab2af34
fix: specify type for devCommits to enhance type safety
2025-08-31 20:16:18 +08:00
Soulter
c10973e160
fix: update getDevCommits function to support GitHub proxy and handle errors more gracefully
2025-08-31 20:06:37 +08:00
Soulter
b1e4bff3ec
feat: 支持升级的同时更新到指定版本的 WebUI
2025-08-31 19:55:46 +08:00
Soulter
c1202cda63
fix: update GitHub release action to use correct commit SHA variable
2025-08-31 11:52:42 +08:00
Soulter
32d6cd7776
fix: update GitHub release action parameters for clarity
2025-08-31 11:50:26 +08:00
Soulter
2f78d30e93
feat: automated release from every commit in master branch
2025-08-31 11:42:28 +08:00
Junhua Don
33407c9f0d
fix: 修复编辑会话名称窗口的圆角和左右边距问题 ( #2583 )
2025-08-31 11:12:25 +08:00
Soulter
d2d5ef1c5c
feat: add custom T2I template editor ( #2581 )
2025-08-31 11:11:55 +08:00
RC-CHN
98d8eaee02
feat: 添加 no_proxy 配置支持以优化代理设置 ( #2564 )
2025-08-26 21:08:46 +08:00
ZvZPvz
10b9228060
feat: 调用 deepseek-reasoner 时自动移除 tools ( #2531 )
...
* 调用DeepSeek为思考模式时自动移除tools
* Update astrbot/core/provider/sources/openai_source.py
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
* Update openai_source.py
* Update openai_source.py
---------
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
2025-08-26 20:44:56 +08:00
xiewoc
5872f1e017
feat: 支持官方 QQ 接口发送语音 ( #2525 )
...
* Update dingtalk_event.py
* Add files via upload
* Add files via upload
* Update qqofficial_platform_adapter.py
* Add files via upload
* chore: clean comments
* chore: clean code
---------
Co-authored-by: Soulter <37870767+Soulter@users.noreply.github.com >
2025-08-26 20:40:59 +08:00
Soulter
5073f21002
bugfixes
2025-08-24 23:40:17 +08:00
Soulter
69aaf09ac8
chore: 修复当自动更新 webchat title 时,history 被重置的问题
2025-08-24 00:23:08 +08:00
Soulter
6e61ee81d8
feat: 插件配置支持多个快捷魔法配置项
2025-08-23 21:53:26 +08:00
Soulter
cfd05a8d17
chore: clean code
2025-08-23 21:46:59 +08:00
Raven95676
29845fcc4c
feat: Gemini添加对LLMResponse的raw_completion支持
2025-08-23 14:14:25 +08:00
Soulter
e204b180a8
Improve: 扩大配置文件生效范围的自定义程度到会话粒度 ( #2532 )
...
* feat: 扩大配置文件生效范围的自定义程度
* perf: 冲突检测
* refactor: simplify config form validation and improve conflict message clarity
2025-08-22 19:31:55 +08:00
Soulter
563972fd29
fix: bugfixes
2025-08-22 17:41:06 +08:00
AkkoYK
cbe94b84fc
feat: 为 FishAudio TTS 添加可选的 reference_id 直接指定功能 ( #2513 )
...
* 移除TTS提供商:FishAudio TTS的角色名称查询机制,改为直接使用参考模型ID
/// 修改内容 ///
- 移除复杂的角色查询逻辑
删除了 get_reference_id_by_character 方法
移除了通过角色名称搜索模型ID的API调用逻辑
- 简化配置字段
将 fishaudio-tts-character 字段替换为 fishaudio-tts-reference-id
设置默认值为可莉的模型ID:626bb6d3f3364c9cbc3aa6a67300a664
- 优化代码结构
直接在初始化时获取reference_id
简化请求生成逻辑,直接使用配置的模型ID
/// 修改原因 ///
避免同名冲突:不同模型可能使用相同的角色名称,导致获取错误的模型
提高性能:移除了额外的API查询步骤,减少延迟
增强可靠性:用户直接指定准确的模型ID,避免搜索失败的情况
简化维护:减少了代码复杂度,降低维护成本
/// 新的使用方式 ///
用户需要从 FishAudio 模型的详情页面/URL 中获取具体的模型ID(如 626bb6d3f3364c9cbc3aa6a67300a664),并在配置中直接填入 fishaudio-tts-reference-id 字段。
这个修改使得FishAudio TTS的配置更加直观和可靠,同时提升了系统的整体性能。
* Refactor: 添加FishAudio TTS reference_id格式验证
添加ID格式验证逻辑,防止无效的reference_id调用API失败。
验证32位十六进制格式并提供详细错误提示。
* Feat: 添加FishAudio TTS可选reference_id配置实现向前兼容
新增可选的reference_id字段,优先使用直接ID,未配置时回退到角色名称查询。
保持完全向前兼容,现有配置无需修改。
2025-08-22 16:55:07 +08:00
Soulter
aa6f73574d
feat: 多 t2i 服务的随机负载均衡 ( #2529 )
2025-08-22 16:43:59 +08:00
Soulter
94f0419ef7
docs: update readme
2025-08-20 16:41:22 +08:00
Soulter
cefd2d7f49
chore: update project version to 4.0.0
2025-08-20 15:48:37 +08:00
Soulter
81e1e545fb
fix: add type definition for migrationDialog and ensure open method exists before calling
2025-08-20 15:48:12 +08:00
Soulter
d516920e72
Merge remote-tracking branch 'origin/master' into releases/4.0.0
2025-08-20 15:43:54 +08:00
Soulter
2171372246
feat: llm_tool 装饰器返回值支持返回 mcp 库中 tool 的返回值类型(mcp.type.CallToolResult) ( #2507 )
2025-08-20 15:33:46 +08:00
Soulter
d2df4d0cce
Feature: 支持在配置文件配置可用的插件组 ( #2505 )
...
* feat: 增加可用插件集合配置项
* remove: 旧版平台可用性配置
已经基于多配置文件实现。
* feat: 应用配置文件插件可用性配置
* perf: hoist if from if
2025-08-20 15:25:41 +08:00
Soulter
6ab90fc123
fix: 移除知识库中的提示文本
2025-08-20 11:27:02 +08:00
Soulter
1a84ebbb1e
fix: remove debug print statement for reranked results in FaissVecDB
2025-08-19 17:57:16 +08:00
Soulter
c9c0352369
feat: 知识库支持配置重排序模型
2025-08-19 17:51:01 +08:00
Soulter
9903b028a3
Feature: 支持配置重排序模型(vLLM API 格式)用于 score 任务 ( #2496 )
...
* feat: 支持添加重排序模型(vLLM API 格式)用于 score 任务
* fix: update rerank API base URL to use localhost
2025-08-19 16:15:31 +08:00
Soulter
49def5d883
📦 release: v3.5.25
v3.5.25
2025-08-19 01:32:24 +08:00
Soulter
6975525b70
feat: 添加预发布版本提醒和检测功能
2025-08-19 01:15:56 +08:00
Soulter
fbc4f8527b
Merge remote-tracking branch 'origin/master' into releases/4.0.0
2025-08-19 00:53:36 +08:00
Soulter
90cb5a1951
fix: 当返回文本为空并且存在工具调用时错误地被终止事件,导致工具调用结果未被返回 ( #2491 )
...
fixes : #2448 #2379
2025-08-19 00:52:13 +08:00
Soulter
ac71d9f034
perf: 使用 run_coroutine_threadsafe
...
Co-authored-by: Raven95676 <raven95676@gmail.com >
2025-08-18 19:32:35 +08:00
Soulter
64bcbc9fc0
refactor: 重构 SharedPreference 类并采用数据库存储替换 json 存储 ( #2482 )
2025-08-18 19:12:26 +08:00
Soulter
9e7d46f956
perf: 调整 WebUI sidebar 顺序
2025-08-18 11:57:01 +08:00
Soulter
e911896cfb
feat: 添加知识库插件更新检查和更新功能
2025-08-18 11:27:48 +08:00
Soulter
9c6d66093f
feat: 增加工具使用模型能力选项
2025-08-18 10:37:10 +08:00
Soulter
b2e39b9701
fix: 修复迁移对话时的一些问题
2025-08-17 23:44:08 +08:00
Soulter
e95ad4049b
feat: 添加 WebUI 迁移助手以及相关迁移方法 ( #2477 )
2025-08-17 23:24:30 +08:00
Soulter
1df49d1d6f
refactor: 重构 Function Tool 管理并初步引入 Multi Agent 及 Agent Handsoff 机制 ( #2454 )
...
* stage
* refactor: 重构 Function Tool 管理并引入 multi agent handsoff 机制
- Updated `star_request.py` to use the global `call_handler` instead of context-specific calls.
- Modified `entities.py` to remove the dependency on `FunctionToolManager` and streamline the function tool handling.
- Refactored `func_tool_manager.py` to simplify the `FunctionTool` class and its methods, removing deprecated code and enhancing clarity.
- Adjusted `provider.py` to align with the new function tool structure, removing unnecessary type unions.
- Enhanced `star_handler.py` to support agent registration and tool association, introducing `RegisteringAgent` for better encapsulation.
- Updated `star_manager.py` to handle tool registration for agents, ensuring proper binding of handlers.
- Revised `main.py` in the web searcher package to utilize the new agent registration system for web search tools.
* chore: websearch
* perf: 减少嵌套
* chore: 移除未使用的 mcp 导入
2025-08-17 10:57:25 +08:00
Junhua Don
b71000e2f3
fix: 修复无法清空 http_proxy 代理的问题 ( #2434 )
...
* fix: 修复无法清空http_proxy代理的问题
* perf: 将“127.0.0.1”和“::1”添加到“no_proxy”以确保所有本地流量绕过代理。
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
---------
Co-authored-by: Soulter <37870767+Soulter@users.noreply.github.com >
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
2025-08-17 10:49:23 +08:00
Soulter
47e6ed455e
Feature: 支持在 WebUI 配置文件页中配置默认知识库 ( #2437 )
...
* feat: 支持配置默认知识库
* chore: clean code
2025-08-15 12:40:46 +08:00
Soulter
92592fb9d9
Merge remote-tracking branch 'origin/master' into releases/4.0.0
2025-08-14 23:55:08 +08:00
Soulter
02a9769b35
fix: 补充工具调用轮数上限配置
2025-08-14 23:51:22 +08:00