AstrBot 4.3.2__py3-none-any.whl → 4.3.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- astrbot/core/agent/mcp_client.py +18 -4
- astrbot/core/astr_agent_context.py +1 -0
- astrbot/core/config/default.py +66 -9
- astrbot/core/db/sqlite.py +7 -0
- astrbot/core/pipeline/context_utils.py +1 -0
- astrbot/core/pipeline/process_stage/method/llm_request.py +32 -14
- astrbot/core/pipeline/result_decorate/stage.py +44 -45
- astrbot/core/pipeline/scheduler.py +1 -1
- astrbot/core/platform/manager.py +4 -0
- astrbot/core/platform/sources/satori/satori_event.py +23 -1
- astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -1
- astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +289 -0
- astrbot/core/platform/sources/wecom_ai_bot/__init__.py +17 -0
- astrbot/core/platform/sources/wecom_ai_bot/ierror.py +20 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +445 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +378 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +149 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +148 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +166 -0
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +199 -0
- astrbot/core/provider/provider.py +2 -1
- astrbot/core/provider/sources/anthropic_source.py +13 -7
- astrbot/core/provider/sources/dashscope_tts.py +120 -12
- astrbot/core/provider/sources/gemini_source.py +21 -17
- astrbot/core/provider/sources/openai_source.py +1 -1
- astrbot/dashboard/routes/session_management.py +6 -6
- astrbot/dashboard/routes/tools.py +14 -0
- astrbot/dashboard/routes/update.py +8 -5
- {astrbot-4.3.2.dist-info → astrbot-4.3.5.dist-info}/METADATA +64 -44
- {astrbot-4.3.2.dist-info → astrbot-4.3.5.dist-info}/RECORD +33 -24
- {astrbot-4.3.2.dist-info → astrbot-4.3.5.dist-info}/WHEEL +0 -0
- {astrbot-4.3.2.dist-info → astrbot-4.3.5.dist-info}/entry_points.txt +0 -0
- {astrbot-4.3.2.dist-info → astrbot-4.3.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,6 +9,8 @@ from astrbot.core.config.default import VERSION
|
|
|
9
9
|
from astrbot.core import DEMO_MODE
|
|
10
10
|
from astrbot.core.db.migration.helper import do_migration_v4, check_migration_needed_v4
|
|
11
11
|
|
|
12
|
+
CLEAR_SITE_DATA_HEADERS = {"Clear-Site-Data": '"cache"'}
|
|
13
|
+
|
|
12
14
|
|
|
13
15
|
class UpdateRoute(Route):
|
|
14
16
|
def __init__(
|
|
@@ -113,17 +115,19 @@ class UpdateRoute(Route):
|
|
|
113
115
|
|
|
114
116
|
if reboot:
|
|
115
117
|
await self.core_lifecycle.restart()
|
|
116
|
-
|
|
118
|
+
ret = (
|
|
117
119
|
Response()
|
|
118
120
|
.ok(None, "更新成功,AstrBot 将在 2 秒内全量重启以应用新的代码。")
|
|
119
121
|
.__dict__
|
|
120
122
|
)
|
|
123
|
+
return ret, 200, CLEAR_SITE_DATA_HEADERS
|
|
121
124
|
else:
|
|
122
|
-
|
|
125
|
+
ret = (
|
|
123
126
|
Response()
|
|
124
127
|
.ok(None, "更新成功,AstrBot 将在下次启动时应用新的代码。")
|
|
125
128
|
.__dict__
|
|
126
129
|
)
|
|
130
|
+
return ret, 200, CLEAR_SITE_DATA_HEADERS
|
|
127
131
|
except Exception as e:
|
|
128
132
|
logger.error(f"/api/update_project: {traceback.format_exc()}")
|
|
129
133
|
return Response().error(e.__str__()).__dict__
|
|
@@ -135,9 +139,8 @@ class UpdateRoute(Route):
|
|
|
135
139
|
except Exception as e:
|
|
136
140
|
logger.error(f"下载管理面板文件失败: {e}。")
|
|
137
141
|
return Response().error(f"下载管理面板文件失败: {e}").__dict__
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
)
|
|
142
|
+
ret = Response().ok(None, "更新成功。刷新页面即可应用新版本面板。").__dict__
|
|
143
|
+
return ret, 200, CLEAR_SITE_DATA_HEADERS
|
|
141
144
|
except Exception as e:
|
|
142
145
|
logger.error(f"/api/update_dashboard: {traceback.format_exc()}")
|
|
143
146
|
return Response().error(e.__str__()).__dict__
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AstrBot
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.5
|
|
4
4
|
Summary: 易上手的多平台 LLM 聊天机器人及开发框架
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -52,8 +52,6 @@ Requires-Dist: websockets>=15.0.1
|
|
|
52
52
|
Requires-Dist: wechatpy>=1.8.18
|
|
53
53
|
Description-Content-Type: text/markdown
|
|
54
54
|
|
|
55
|
-
<img width="430" height="31" alt="image" src="https://github.com/user-attachments/assets/474c822c-fab7-41be-8c23-6dae252823ed" /><p align="center">
|
|
56
|
-
|
|
57
55
|

|
|
58
56
|
|
|
59
57
|
</p>
|
|
@@ -67,17 +65,17 @@ Description-Content-Type: text/markdown
|
|
|
67
65
|
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?style=for-the-badge&color=76bad9"/></a>
|
|
68
66
|
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
|
|
69
67
|
<a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
70
|
-
[](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
|
|
71
68
|

|
|
72
69
|
|
|
73
70
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
|
|
74
71
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
75
72
|
<a href="https://astrbot.app/">文档</a> |
|
|
76
73
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
74
|
+
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
77
75
|
<a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
|
|
78
76
|
</div>
|
|
79
77
|
|
|
80
|
-
AstrBot 是一个开源的一站式
|
|
78
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
|
|
81
79
|
|
|
82
80
|
## 主要功能
|
|
83
81
|
|
|
@@ -89,7 +87,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
|
|
|
89
87
|
|
|
90
88
|
## 部署方式
|
|
91
89
|
|
|
92
|
-
#### Docker 部署
|
|
90
|
+
#### Docker 部署(推荐 🥳)
|
|
93
91
|
|
|
94
92
|
推荐使用 Docker / Docker Compose 方式部署 AstrBot。
|
|
95
93
|
|
|
@@ -155,7 +153,6 @@ uv run main.py
|
|
|
155
153
|
- 5 群:822130018
|
|
156
154
|
- 6 群:753075035
|
|
157
155
|
- 开发者群:975206796
|
|
158
|
-
- 开发者群(备份):295657329
|
|
159
156
|
|
|
160
157
|
### Telegram 群组
|
|
161
158
|
|
|
@@ -167,48 +164,80 @@ uv run main.py
|
|
|
167
164
|
|
|
168
165
|
## ⚡ 消息平台支持情况
|
|
169
166
|
|
|
167
|
+
**官方维护**
|
|
168
|
+
|
|
170
169
|
| 平台 | 支持性 |
|
|
171
170
|
| -------- | ------- |
|
|
172
|
-
| QQ(
|
|
171
|
+
| QQ(官方平台) | ✔ |
|
|
173
172
|
| QQ(OneBot) | ✔ |
|
|
174
173
|
| Telegram | ✔ |
|
|
175
|
-
|
|
|
174
|
+
| 企微应用 | ✔ |
|
|
176
175
|
| 微信客服 | ✔ |
|
|
177
176
|
| 微信公众号 | ✔ |
|
|
178
177
|
| 飞书 | ✔ |
|
|
179
178
|
| 钉钉 | ✔ |
|
|
180
179
|
| Slack | ✔ |
|
|
181
180
|
| Discord | ✔ |
|
|
182
|
-
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
183
|
-
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
184
181
|
| Satori | ✔ |
|
|
185
182
|
| Misskey | ✔ |
|
|
183
|
+
| 企微智能机器人 | 将支持 |
|
|
184
|
+
| Whatsapp | 将支持 |
|
|
185
|
+
| LINE | 将支持 |
|
|
186
|
+
|
|
187
|
+
**社区维护**
|
|
188
|
+
|
|
189
|
+
| 平台 | 支持性 |
|
|
190
|
+
| -------- | ------- |
|
|
191
|
+
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
192
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
193
|
+
| [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
|
|
186
194
|
|
|
187
195
|
## ⚡ 提供商支持情况
|
|
188
196
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
|
192
|
-
|
|
|
193
|
-
|
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
|
|
|
208
|
-
|
|
|
209
|
-
|
|
|
210
|
-
|
|
|
211
|
-
|
|
197
|
+
**大模型服务**
|
|
198
|
+
|
|
199
|
+
| 名称 | 支持性 | 备注 |
|
|
200
|
+
| -------- | ------- | ------- |
|
|
201
|
+
| OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
|
|
202
|
+
| Anthropic | ✔ | |
|
|
203
|
+
| Google Gemini | ✔ | |
|
|
204
|
+
| Moonshot AI | ✔ | |
|
|
205
|
+
| 智谱 AI | ✔ | |
|
|
206
|
+
| DeepSeek | ✔ | |
|
|
207
|
+
| Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
208
|
+
| LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
209
|
+
| [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
|
|
210
|
+
| [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
|
|
211
|
+
| [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
|
|
212
|
+
| 硅基流动 | ✔ | |
|
|
213
|
+
| PPIO 派欧云 | ✔ | |
|
|
214
|
+
| ModelScope | ✔ | |
|
|
215
|
+
| OneAPI | ✔ | |
|
|
216
|
+
| Dify | ✔ | |
|
|
217
|
+
| 阿里云百炼应用 | ✔ | |
|
|
218
|
+
| Coze | ✔ | |
|
|
219
|
+
|
|
220
|
+
**语音转文本服务**
|
|
221
|
+
|
|
222
|
+
| 名称 | 支持性 | 备注 |
|
|
223
|
+
| -------- | ------- | ------- |
|
|
224
|
+
| Whisper | ✔ | 支持 API、本地部署 |
|
|
225
|
+
| SenseVoice | ✔ | 本地部署 |
|
|
226
|
+
|
|
227
|
+
**文本转语音服务**
|
|
228
|
+
|
|
229
|
+
| 名称 | 支持性 | 备注 |
|
|
230
|
+
| -------- | ------- | ------- |
|
|
231
|
+
| OpenAI TTS | ✔ | |
|
|
232
|
+
| Gemini TTS | ✔ | |
|
|
233
|
+
| GSVI | ✔ | GPT-Sovits-Inference |
|
|
234
|
+
| GPT-SoVITs | ✔ | GPT-Sovits |
|
|
235
|
+
| FishAudio | ✔ | |
|
|
236
|
+
| Edge TTS | ✔ | Edge 浏览器的免费 TTS |
|
|
237
|
+
| 阿里云百炼 TTS | ✔ | |
|
|
238
|
+
| Azure TTS | ✔ | |
|
|
239
|
+
| Minimax TTS | ✔ | |
|
|
240
|
+
| 火山引擎 TTS | ✔ | |
|
|
212
241
|
|
|
213
242
|
## ❤️ 贡献
|
|
214
243
|
|
|
@@ -240,19 +269,10 @@ pre-commit install
|
|
|
240
269
|
|
|
241
270
|
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
|
|
242
271
|
|
|
243
|
-
另外,一些同类型其他的活跃开源 Bot 项目:
|
|
244
|
-
|
|
245
|
-
- [nonebot/nonebot2](https://github.com/nonebot/nonebot2) - 扩展性极强的 Bot 框架
|
|
246
|
-
- [koishijs/koishi](https://github.com/koishijs/koishi) - 扩展性极强的 Bot 框架
|
|
247
|
-
- [MaiM-with-u/MaiBot](https://github.com/MaiM-with-u/MaiBot) - 注重拟人功能的 ChatBot
|
|
248
|
-
- [langbot-app/LangBot](https://github.com/langbot-app/LangBot) - 功能丰富的 Bot 平台
|
|
249
|
-
- [KroMiose/nekro-agent](https://github.com/KroMiose/nekro-agent) - 注重 Agent 的 ChatBot
|
|
250
|
-
- [zhenxun-org/zhenxun_bot](https://github.com/zhenxun-org/zhenxun_bot) - 功能完善的 ChatBot
|
|
251
|
-
|
|
252
272
|
## ⭐ Star History
|
|
253
273
|
|
|
254
274
|
> [!TIP]
|
|
255
|
-
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star
|
|
275
|
+
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
|
|
256
276
|
|
|
257
277
|
<div align="center">
|
|
258
278
|
|
|
@@ -20,7 +20,7 @@ astrbot/cli/utils/basic.py,sha256=Rxg0LdluIdwPIEbhk_1H6MzzEz2JbhP3d73SWcLfJqA,27
|
|
|
20
20
|
astrbot/cli/utils/plugin.py,sha256=kS37S3bAK3q43mL2wvQM8FuqaSkgLQU_Yt2XqxjnxNo,8483
|
|
21
21
|
astrbot/cli/utils/version_comparator.py,sha256=3gLFA94eswvFsBVDSJmOTLJKxTdCD9kkQFy2Lu7vcTc,3482
|
|
22
22
|
astrbot/core/__init__.py,sha256=-1atHjMqQyequsw6A1heEr4LldE0JVII9MXcuQFSAQM,1218
|
|
23
|
-
astrbot/core/astr_agent_context.py,sha256=
|
|
23
|
+
astrbot/core/astr_agent_context.py,sha256=emypZloG0UWATEKUobDH8yLYcqmaVj9N3HwMQmvY3sc,375
|
|
24
24
|
astrbot/core/astrbot_config_mgr.py,sha256=Z1OwN1DKoZFdul9S8wWeRTiPjKnp0OiYQlmSloVw5nI,10024
|
|
25
25
|
astrbot/core/conversation_mgr.py,sha256=DCnFXhdB0vf94vclX8l-JbLRcSny3cwxhwecAV4jbW0,12217
|
|
26
26
|
astrbot/core/core_lifecycle.py,sha256=z8ivxD4OY5iBK8XO078OlmvSwnCtpTKtiuMF_AF1Adk,11588
|
|
@@ -35,7 +35,7 @@ astrbot/core/zip_updator.py,sha256=iSwa3S2fHXGqYA3ie4SEMrWNy6fSDpW5toCygQFdKSQ,8
|
|
|
35
35
|
astrbot/core/agent/agent.py,sha256=ruwCYv7ySS5zxmhD_49ABKJ8CZSS4lY2fQ2rTlitP-k,365
|
|
36
36
|
astrbot/core/agent/handoff.py,sha256=_046TjTUda3CxtXR0ngb_z3f1XGTqx9pfhh28_Dl3Ts,1168
|
|
37
37
|
astrbot/core/agent/hooks.py,sha256=AWCxG4pvq9uZ9D3yixhtsaqkIGTkYLAY7BsMxdfYC2Q,855
|
|
38
|
-
astrbot/core/agent/mcp_client.py,sha256=
|
|
38
|
+
astrbot/core/agent/mcp_client.py,sha256=74LKME_Mh4kPbZRG0NgcuIRsFaYMnUyH7OGiIWJS2ak,8493
|
|
39
39
|
astrbot/core/agent/response.py,sha256=xLgAJc-_FpvA7J9ROaMUHuSZZ-NGI1LBkaR0qnwrp7I,260
|
|
40
40
|
astrbot/core/agent/run_context.py,sha256=MDvJBvKXq17R0f4-vetJbwS0DhHG2dFqDJ6YmUXik4A,454
|
|
41
41
|
astrbot/core/agent/tool.py,sha256=fXFkQGFIIoX9Y1GYj_LIGyrybOeEKSqOo7-3F10zf58,8920
|
|
@@ -45,10 +45,10 @@ astrbot/core/agent/runners/base.py,sha256=exZS_d2BsrLz-xgeY9ZUPuXikBDUnKxO-dU3ZF
|
|
|
45
45
|
astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=O4sYg1V3dbUcZFLek5Izi-aEJb983tk9DJOCBQvQjro,13558
|
|
46
46
|
astrbot/core/config/__init__.py,sha256=0CO_3sKtI3WOwWT0k4i6TleWq1SAWJFfB8KjnYB8Zig,172
|
|
47
47
|
astrbot/core/config/astrbot_config.py,sha256=X-b3c5m4msgJrdYFH2LXic5XKY0ViuUMdNZ335zqSBw,6335
|
|
48
|
-
astrbot/core/config/default.py,sha256=
|
|
48
|
+
astrbot/core/config/default.py,sha256=vbUAFpfz7ckiih9Hi3rXKq-WsTK3Ut0rs1RyPW90ZHY,126511
|
|
49
49
|
astrbot/core/db/__init__.py,sha256=JOAMt7_j0y96CuArXJ-YY_qXisSartOZwyDTKf9ZDn8,8844
|
|
50
50
|
astrbot/core/db/po.py,sha256=NDOJpUXI1i4BF1uymCj07opwXM0gdHBtwCoL16Xj4jc,7798
|
|
51
|
-
astrbot/core/db/sqlite.py,sha256=
|
|
51
|
+
astrbot/core/db/sqlite.py,sha256=_5-B2Jlare4twLG0TlO95bVTaLu0HAXsfpX5LOcoVWA,26082
|
|
52
52
|
astrbot/core/db/migration/helper.py,sha256=FcwpvBANNeyBSrRhXyd3hudHYEyhTyrcRg9mU9lZtqY,1935
|
|
53
53
|
astrbot/core/db/migration/migra_3_to_4.py,sha256=I1CesaBbf5wj9agtNWxDl1V-qixmwdURbBQf5Vzagrk,15025
|
|
54
54
|
astrbot/core/db/migration/shared_preferences_v3.py,sha256=tE11WIpwT-Q8yVBkw4eveRr1PmFdNRJQSprH4xdO3G4,1245
|
|
@@ -63,8 +63,8 @@ astrbot/core/message/components.py,sha256=AzJACQYgw0Yo1iwSIyQWtfE8Xyo-6Q8KcQPE9y
|
|
|
63
63
|
astrbot/core/message/message_event_result.py,sha256=dooPyzDVV4danPNQBvZsSXemGsihnBjW3qYByYUEa1s,7248
|
|
64
64
|
astrbot/core/pipeline/__init__.py,sha256=-jo6a9lKmwY8oPoifJi0IMLPOVdknQKG30ppIyCs5Bg,1461
|
|
65
65
|
astrbot/core/pipeline/context.py,sha256=3ySHVzhjdT54kTDMMKPse1EFdvb7XfmscNEp3YCJLVM,503
|
|
66
|
-
astrbot/core/pipeline/context_utils.py,sha256=
|
|
67
|
-
astrbot/core/pipeline/scheduler.py,sha256=
|
|
66
|
+
astrbot/core/pipeline/context_utils.py,sha256=CmR45Er5yFpI-IPwDfbJA1rOhzgNybkZg149dpgtl6w,3548
|
|
67
|
+
astrbot/core/pipeline/scheduler.py,sha256=HwFQnQ5LCh66qKXGTOP4arONbpVeM4qMQ8a-t_4DNCg,3288
|
|
68
68
|
astrbot/core/pipeline/stage.py,sha256=dqEhUuQIhAZpPV4dULmVN39R0pIPjyw8Ftvs4Y1C4lY,1352
|
|
69
69
|
astrbot/core/pipeline/content_safety_check/stage.py,sha256=yUF2h_E41VZQt70pCtIqr1-pgobbJ49omSnKUgg_G-M,1379
|
|
70
70
|
astrbot/core/pipeline/content_safety_check/strategies/__init__.py,sha256=woX7d9yN3Fcp3VEC42qLOHL8rf3V3rVbM9dB_6EmWog,189
|
|
@@ -73,18 +73,18 @@ astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=j3Ns_IH
|
|
|
73
73
|
astrbot/core/pipeline/content_safety_check/strategies/strategy.py,sha256=G32Xf42EgeyEnhyPLVYlUMiSnDNHUUnnz_MG0PXqfV4,1234
|
|
74
74
|
astrbot/core/pipeline/preprocess_stage/stage.py,sha256=QSgOswf8FHy1j4QozRxJv4qVd-RynG8eriHufian60U,4194
|
|
75
75
|
astrbot/core/pipeline/process_stage/stage.py,sha256=2hCX5LdUCzX2RbleMLF_Yqiot9YDyutF3ePPOZsWeA0,2677
|
|
76
|
-
astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=
|
|
76
|
+
astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=vfOv3NgsjbbwnbhhjFuj3wPd12TyFZTvpaY1O8VkwXc,26181
|
|
77
77
|
astrbot/core/pipeline/process_stage/method/star_request.py,sha256=IuPP7qnxvBgKV6a9D3wLU4_KU3Ec3Ml7IOADQCXDgqk,2501
|
|
78
78
|
astrbot/core/pipeline/rate_limit_check/stage.py,sha256=I_GkpSgioN0-T_catMwpRKtxx-TiMmvu8vV_FE5ORIA,4072
|
|
79
79
|
astrbot/core/pipeline/respond/stage.py,sha256=XE5yGsHGxESP0zAGmx3qHovP1wGaJDXUgfLb5Z4wasE,10837
|
|
80
|
-
astrbot/core/pipeline/result_decorate/stage.py,sha256=
|
|
80
|
+
astrbot/core/pipeline/result_decorate/stage.py,sha256=mxTBH5jDWDrfQV2H6XCWMYJLCuPiTAZut4-Gqrpufk4,13847
|
|
81
81
|
astrbot/core/pipeline/session_status_check/stage.py,sha256=woucuVbzzQoi62MDoP3lTha4es_fUu4p-IPCzSiYDBw,1262
|
|
82
82
|
astrbot/core/pipeline/waking_check/stage.py,sha256=URBFmfid1CKhtCGjH7OzFmxBE-Gt9vv1eYlp6msIv_Q,8240
|
|
83
83
|
astrbot/core/pipeline/whitelist_check/stage.py,sha256=VcmLs0VfmspNTsitL_WrZXfv2lR2Nktrb5JEWc1VJuw,2403
|
|
84
84
|
astrbot/core/platform/__init__.py,sha256=jQ4UiThp7cDHfmIXAgBDodET87onl7mjii0CAD3RXTY,361
|
|
85
85
|
astrbot/core/platform/astr_message_event.py,sha256=pDZO52rLdPcPc-3c3VhK8SuUKmmxJimhaOh7W6BU19M,14657
|
|
86
86
|
astrbot/core/platform/astrbot_message.py,sha256=r7jlUPfaOEh0yCSHaS1KQtYarZ9B4ikqMZwDj-wLv_k,2655
|
|
87
|
-
astrbot/core/platform/manager.py,sha256=
|
|
87
|
+
astrbot/core/platform/manager.py,sha256=UTA6Y4DE5gpkJtV_oEeKG1EH0KoaWHFT3RkjJ7HEwzM,8264
|
|
88
88
|
astrbot/core/platform/message_session.py,sha256=Hitdfb7IK4SohaMFld0s0UlwLDpVw5UPTToh05bvH60,1076
|
|
89
89
|
astrbot/core/platform/message_type.py,sha256=uGn5KN8B_7b9F5nFTpvLAXRlXx2VFHP3JmJjN8cC7fg,261
|
|
90
90
|
astrbot/core/platform/platform.py,sha256=170_1Y1T5R-3nsu06y3i8Ote7zs8JASnskImp-IP04Q,1772
|
|
@@ -110,13 +110,13 @@ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PT
|
|
|
110
110
|
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=BrxaNhG3sy5QAKf8DlZlum6R7m9X5Fm0SxBrKIC_1hg,499
|
|
111
111
|
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=5A8EVmdx0j1lrd4lmJhM3S_tJJYsdMrEcR93X-lYT4Y,3726
|
|
112
112
|
astrbot/core/platform/sources/satori/satori_adapter.py,sha256=1CJOMXraR1uXCZc8-oHQF0sdqIM_xmQBFjZarhNGlEQ,26827
|
|
113
|
-
astrbot/core/platform/sources/satori/satori_event.py,sha256=
|
|
113
|
+
astrbot/core/platform/sources/satori/satori_event.py,sha256=itSbWfA7Ym2qUWNreoWHLdg7xlFdfdNi6Jd3CM9Bjtw,10617
|
|
114
114
|
astrbot/core/platform/sources/slack/client.py,sha256=p0gCh9gj_VR8IacGg09-BXp2IM8C0oTnodrvEVmShMA,5637
|
|
115
115
|
astrbot/core/platform/sources/slack/slack_adapter.py,sha256=BdZTCNXsO5nUKY2HrZD5tpxMzpnvL7n3_vr2JgJfDS0,15812
|
|
116
116
|
astrbot/core/platform/sources/slack/slack_event.py,sha256=RYTJBqk5-CYQKgk-ejPuMKJyfaxSTqPjvfqKvPNg5Yw,8791
|
|
117
117
|
astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=c4B1MaPiXhzHI4rOxFLMuRY8VloCFmAwPcHSztlEKNQ,15838
|
|
118
118
|
astrbot/core/platform/sources/telegram/tg_event.py,sha256=L66nk47Tn2gdeOTK5wPdz5fkVBH-Gdb_I5mQir7DwP8,11353
|
|
119
|
-
astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=
|
|
119
|
+
astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=bHzmEg1AMTBMQuZ5fp_B0L5RZ4HMaGEaYQi9N7BBskw,5964
|
|
120
120
|
astrbot/core/platform/sources/webchat/webchat_event.py,sha256=qeKBQtUZVwknsFQQvwASs5Hybs-L3Rn-bjIUaji6n9o,5457
|
|
121
121
|
astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
|
|
122
122
|
astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=oXxy6ZJ-42_7yKZko9oepN0vBvVbLJRNjLbaxVr6ehk,40791
|
|
@@ -126,6 +126,15 @@ astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=iDTE-CRCaER4zzo_1XbG
|
|
|
126
126
|
astrbot/core/platform/sources/wecom/wecom_event.py,sha256=WkP7EP7k4AS5KUrxF7ouByyR3qS-GMZODv3yORQb0kI,9181
|
|
127
127
|
astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=xPPt3P3tqB6d0gzPT0-0YfTkYfzlMki1PNUMGWMkH74,10891
|
|
128
128
|
astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=nHPOnrOEnEx2uawL1_6Ht0QB7k7G1Nbt3BLpPQekfZA,5787
|
|
129
|
+
astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py,sha256=KlsziA-PImEQEChuxV4PHPpKH8oVZkPnsLdCeGBlRsw,10962
|
|
130
|
+
astrbot/core/platform/sources/wecom_ai_bot/__init__.py,sha256=iVFuTOcEyTaEfOvrxjjUHiXkgZ2EL2lrsewyy_inwDk,437
|
|
131
|
+
astrbot/core/platform/sources/wecom_ai_bot/ierror.py,sha256=mIcT8B5xY07RQ1Vd4QHMDsnehQDFz5fHgJDWSVRdWCE,817
|
|
132
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py,sha256=SYWarSySXLl_eb6rc4msTressPEQH1pWi4BDEnJOkDA,17083
|
|
133
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py,sha256=84I3GqIGO8ISEDbkKZ9Aw4_8G50sRTl93ACE5aKOnYc,11812
|
|
134
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=9uN_pMJJOcjNXw3kSlFP46PR6M8ba6L-cCe0pKm1uaw,5072
|
|
135
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py,sha256=6RCBipqWKRvN6o8xzdoMChgnA5eDWYUUEHg6rPng-OI,4668
|
|
136
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py,sha256=S4GWt10se99K0BlVkw9wFPYT5g3lGY4qUHlCD8oLQxo,5241
|
|
137
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py,sha256=L5MrXro7swHK9w4C0Qh_FSCQv1xY4YpIfyQHn6be818,5421
|
|
129
138
|
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=oWZSYSjlE-cGyXVq1aDlACnMGB4Q40rmD3EYRTQo8fg,10475
|
|
130
139
|
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=JpyQYaivJTUkPOMDz5ZXp4CLOQ6ek76eNLmrJXTXEEU,7196
|
|
131
140
|
astrbot/core/provider/__init__.py,sha256=fhD_KB1-KpqJ7woaXDXc7kdlmL3XPQz3xlc5IkFDJJ4,171
|
|
@@ -133,25 +142,25 @@ astrbot/core/provider/entites.py,sha256=-353AdRDA6ST4AS48cQ1RRAXHSy3F7pVS_28hW4c
|
|
|
133
142
|
astrbot/core/provider/entities.py,sha256=CkC-U9nafBKo2n2kLZqzukosDX7RuZWAK4DMBHQkasA,11238
|
|
134
143
|
astrbot/core/provider/func_tool_manager.py,sha256=NuWMmAJaEwoJ3XCSvhwtmzDPdzX4K4BIRKuKgF0FlQk,20881
|
|
135
144
|
astrbot/core/provider/manager.py,sha256=GoRR4hTRyYaaWH6_ICx0tflqG1Lng72dVOuq6pagb5k,21729
|
|
136
|
-
astrbot/core/provider/provider.py,sha256=
|
|
145
|
+
astrbot/core/provider/provider.py,sha256=3R0xWAYuUQ0VXWja1TZtVVfqN8d3f9VhhYdpdqj5uaA,7239
|
|
137
146
|
astrbot/core/provider/register.py,sha256=bWAF9zWNnSYQWjmZIXiWgxFaeWIiWjEoEIN_xhmq3mM,1830
|
|
138
|
-
astrbot/core/provider/sources/anthropic_source.py,sha256=
|
|
147
|
+
astrbot/core/provider/sources/anthropic_source.py,sha256=GQY8TUw56V6pIGfqwT7KeJ-8dBSDZi7jjCwbhSsVekQ,15184
|
|
139
148
|
astrbot/core/provider/sources/azure_tts_source.py,sha256=V8WGpMFeYn-DhmE2FtYYYir-51T1S81XKvP08tslm8E,9350
|
|
140
149
|
astrbot/core/provider/sources/coze_api_client.py,sha256=dr2QpON0I83eIyadh5XDEVnGl26Jm5rbXGzQKkLBBcc,10820
|
|
141
150
|
astrbot/core/provider/sources/coze_source.py,sha256=KddH9Ryl-cuaobjVBY5ar_cPEb5MUDvc7Pqx9BTp9Oo,25215
|
|
142
151
|
astrbot/core/provider/sources/dashscope_source.py,sha256=HPzMCI-x5Ht76KxxvWHSwffW5tq6gWJQl48O_YKCTcc,7321
|
|
143
|
-
astrbot/core/provider/sources/dashscope_tts.py,sha256=
|
|
152
|
+
astrbot/core/provider/sources/dashscope_tts.py,sha256=gMm876jMiL15bmMbkAaQSP-XKjSdL1rBLrXCFVQXJhQ,5522
|
|
144
153
|
astrbot/core/provider/sources/dify_source.py,sha256=Q0VmnacKwD-fOnvwYqbrRMspDYOlJZAHnjBawRzshw4,11472
|
|
145
154
|
astrbot/core/provider/sources/edge_tts_source.py,sha256=foO2E0Wdc2wJy8yMbLUyX0cjkP6MD4vPCbc8q3Ckkug,4716
|
|
146
155
|
astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=Tu4wHh5txKDWn3_Z57hWgzTU8QUw1oVFBndAqmp4aLY,5439
|
|
147
156
|
astrbot/core/provider/sources/gemini_embedding_source.py,sha256=FlVlacBLlxo4ZZgrBhurDQRuDYRGtR8Du35XuXEY9nI,2307
|
|
148
|
-
astrbot/core/provider/sources/gemini_source.py,sha256=
|
|
157
|
+
astrbot/core/provider/sources/gemini_source.py,sha256=U7imSkoR1kQyTZN_ueCnbMlJ3bi6cjSNdKivLeOUGeU,28787
|
|
149
158
|
astrbot/core/provider/sources/gemini_tts_source.py,sha256=mNcb9G6Lb58L2zoSYzroQGyASGrv3k4ZjmOIVvhii_o,2886
|
|
150
159
|
astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=7wSQ32AJv4cisjnedENfpThd1kHDqYvnMSCpwbpNNM4,5936
|
|
151
160
|
astrbot/core/provider/sources/gsvi_tts_source.py,sha256=EoYuAf85NVcPPbyRWkE_doWF-7R8IM5o9ozxbbvaFRk,2025
|
|
152
161
|
astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=jNLP_4-UHq_Iekvjn3h7G6YZjTCGuII-hq-1RhzjSlE,5877
|
|
153
162
|
astrbot/core/provider/sources/openai_embedding_source.py,sha256=IIz25EksuIWINKpLqfKG-9Qc4bJ398w24oMjoArXFUA,1669
|
|
154
|
-
astrbot/core/provider/sources/openai_source.py,sha256=
|
|
163
|
+
astrbot/core/provider/sources/openai_source.py,sha256=_koDL9xmsFb4Gf2r-1VWzKMGTwQcgs00RKtWOZqcfck,20944
|
|
155
164
|
astrbot/core/provider/sources/openai_tts_api_source.py,sha256=ClRxEuBJ2-vM5rpMwwhOZXXJanq6asEAVPRvD9wYFrI,1626
|
|
156
165
|
astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=2-NUDRiJJs3onxnrovdoVqUMI8bxGu2J2n3ZgwjxEm0,3828
|
|
157
166
|
astrbot/core/provider/sources/vllm_rerank_source.py,sha256=Gv_veniilJ5v9lPGlQG_zmQYmHfhNggYIwj5p02CoLE,2275
|
|
@@ -212,14 +221,14 @@ astrbot/dashboard/routes/log.py,sha256=hDl6Niz_Vs4xb64USjCBzdOcm68GDpEsQrNrLr8yK
|
|
|
212
221
|
astrbot/dashboard/routes/persona.py,sha256=6icnNNE8A0Yy1WI0INWD9ZPKC7VcZG-xHDfYElhaP8M,7857
|
|
213
222
|
astrbot/dashboard/routes/plugin.py,sha256=cGGJVEM55uRiPo-EeD5apZQISzPw9vux7a-U2dE4fZQ,19429
|
|
214
223
|
astrbot/dashboard/routes/route.py,sha256=V-Wm88D0BmxSYAUbedunykbWy5p7Tggae9nDhxm7LZU,1545
|
|
215
|
-
astrbot/dashboard/routes/session_management.py,sha256=
|
|
224
|
+
astrbot/dashboard/routes/session_management.py,sha256=yYcaXDwOiNYoLrseCxazLoFpxj_rsOUQ9-_8zifAAXE,26811
|
|
216
225
|
astrbot/dashboard/routes/stat.py,sha256=KCtP0-f9g664gM2SOBgnU8uKx6zt93-5Kut-d7wd7zk,6910
|
|
217
226
|
astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
|
|
218
227
|
astrbot/dashboard/routes/t2i.py,sha256=scp05AxoJM9cubrkSMBu1BbIWP1BMS50eFEPZ9S6WKM,8893
|
|
219
|
-
astrbot/dashboard/routes/tools.py,sha256=
|
|
220
|
-
astrbot/dashboard/routes/update.py,sha256=
|
|
221
|
-
astrbot-4.3.
|
|
222
|
-
astrbot-4.3.
|
|
223
|
-
astrbot-4.3.
|
|
224
|
-
astrbot-4.3.
|
|
225
|
-
astrbot-4.3.
|
|
228
|
+
astrbot/dashboard/routes/tools.py,sha256=xVw6sG6xnANZm-M2JXT75ftH_I58MMJ0FqejODnP4Xw,14658
|
|
229
|
+
astrbot/dashboard/routes/update.py,sha256=cFeb0EGA69afhSB4o1HJYsvlBQGQotQXQJsp_juJ6ck,6707
|
|
230
|
+
astrbot-4.3.5.dist-info/METADATA,sha256=DRMmyvO3PH-HQaBFmW2PU58Z2G2ov77ITzwNzpHl0Ng,10323
|
|
231
|
+
astrbot-4.3.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
232
|
+
astrbot-4.3.5.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
|
|
233
|
+
astrbot-4.3.5.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
|
|
234
|
+
astrbot-4.3.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|