AstrBot 4.1.1__py3-none-any.whl → 4.1.3__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.
Files changed (47) hide show
  1. astrbot/cli/utils/plugin.py +22 -18
  2. astrbot/core/agent/response.py +1 -0
  3. astrbot/core/agent/run_context.py +1 -0
  4. astrbot/core/agent/runners/tool_loop_agent_runner.py +1 -1
  5. astrbot/core/config/default.py +34 -11
  6. astrbot/core/db/migration/helper.py +1 -1
  7. astrbot/core/db/migration/shared_preferences_v3.py +2 -0
  8. astrbot/core/db/migration/sqlite_v3.py +2 -1
  9. astrbot/core/db/vec_db/faiss_impl/__init__.py +1 -1
  10. astrbot/core/db/vec_db/faiss_impl/vec_db.py +2 -1
  11. astrbot/core/pipeline/context_utils.py +1 -1
  12. astrbot/core/pipeline/respond/stage.py +103 -77
  13. astrbot/core/platform/astr_message_event.py +1 -1
  14. astrbot/core/platform/astrbot_message.py +23 -1
  15. astrbot/core/platform/manager.py +9 -9
  16. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +4 -1
  17. astrbot/core/platform/sources/dingtalk/dingtalk_event.py +2 -2
  18. astrbot/core/platform/sources/discord/client.py +2 -2
  19. astrbot/core/platform/sources/discord/components.py +3 -1
  20. astrbot/core/platform/sources/discord/discord_platform_event.py +8 -3
  21. astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +36 -30
  22. astrbot/core/platform/sources/slack/slack_adapter.py +3 -1
  23. astrbot/core/platform/sources/slack/slack_event.py +7 -1
  24. astrbot/core/platform/sources/telegram/tg_event.py +3 -1
  25. astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +2 -0
  26. astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +8 -4
  27. astrbot/core/platform/sources/wecom/wecom_kf.py +15 -4
  28. astrbot/core/platform/sources/wecom/wecom_kf_message.py +27 -6
  29. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +3 -1
  30. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -1
  31. astrbot/core/provider/entities.py +1 -0
  32. astrbot/core/provider/manager.py +5 -1
  33. astrbot/core/provider/sources/fishaudio_tts_api_source.py +1 -1
  34. astrbot/core/star/filter/command.py +7 -12
  35. astrbot/core/star/filter/command_group.py +1 -2
  36. astrbot/core/star/session_plugin_manager.py +4 -1
  37. astrbot/core/star/star_manager.py +2 -2
  38. astrbot/core/star/star_tools.py +22 -8
  39. astrbot/dashboard/routes/config.py +0 -1
  40. astrbot/dashboard/routes/log.py +12 -4
  41. astrbot/dashboard/routes/route.py +0 -1
  42. astrbot/dashboard/routes/tools.py +0 -1
  43. {astrbot-4.1.1.dist-info → astrbot-4.1.3.dist-info}/METADATA +1 -1
  44. {astrbot-4.1.1.dist-info → astrbot-4.1.3.dist-info}/RECORD +47 -47
  45. {astrbot-4.1.1.dist-info → astrbot-4.1.3.dist-info}/WHEEL +0 -0
  46. {astrbot-4.1.1.dist-info → astrbot-4.1.3.dist-info}/entry_points.txt +0 -0
  47. {astrbot-4.1.1.dist-info → astrbot-4.1.3.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,3 @@
1
- from astrbot.core import logger
2
1
  from astrbot.core.config.astrbot_config import AstrBotConfig
3
2
  from dataclasses import dataclass
4
3
  from quart import Quart
@@ -1,6 +1,5 @@
1
1
  import traceback
2
2
 
3
- import aiohttp
4
3
  from quart import request
5
4
 
6
5
  from astrbot.core import logger
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AstrBot
3
- Version: 4.1.1
3
+ Version: 4.1.3
4
4
  Summary: 易上手的多平台 LLM 聊天机器人及开发框架
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.10
@@ -17,7 +17,7 @@ astrbot/cli/commands/cmd_plug.py,sha256=rs4ahzEeUPhLlggjxvfCXqmDWSYv66bI9bpO0NUu
17
17
  astrbot/cli/commands/cmd_run.py,sha256=myIZ4SSjwEOLNrv0fO2So-a3oe3jNL7T2sI8cZj-pfc,1972
18
18
  astrbot/cli/utils/__init__.py,sha256=EYu82Q-QKNhET-NjgdG0eqh8VY2uCc-EhPIkudhciaY,416
19
19
  astrbot/cli/utils/basic.py,sha256=Rxg0LdluIdwPIEbhk_1H6MzzEz2JbhP3d73SWcLfJqA,2751
20
- astrbot/cli/utils/plugin.py,sha256=Xr0xqEoZnC3zBHW1JDCFdpcFYqUJsqxnNY1ZZ4YbryA,8343
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
23
  astrbot/core/astr_agent_context.py,sha256=4byUrIifQZFZwrDh0AtRLLBUvYX14tXhwiplShUNTt4,303
@@ -36,34 +36,34 @@ astrbot/core/agent/agent.py,sha256=uOriyVYpg1uDJj1yqcDix7Uj7k8mE5j9WbeX53ADk74,3
36
36
  astrbot/core/agent/handoff.py,sha256=_046TjTUda3CxtXR0ngb_z3f1XGTqx9pfhh28_Dl3Ts,1168
37
37
  astrbot/core/agent/hooks.py,sha256=AWCxG4pvq9uZ9D3yixhtsaqkIGTkYLAY7BsMxdfYC2Q,855
38
38
  astrbot/core/agent/mcp_client.py,sha256=zJgTFpj1X1bRXpbG3rb6jBOWs9RaQI_nTxOByyW-sTk,7897
39
- astrbot/core/agent/response.py,sha256=cQcGWalS95YU0jp_ArcLwf6ASZxiMTGEvBUAa0RlbvU,259
40
- astrbot/core/agent/run_context.py,sha256=1lTB2T422cBlSQToHHdsXTOA8mehHN6CnZNKg6IgFE8,453
39
+ astrbot/core/agent/response.py,sha256=xLgAJc-_FpvA7J9ROaMUHuSZZ-NGI1LBkaR0qnwrp7I,260
40
+ astrbot/core/agent/run_context.py,sha256=MDvJBvKXq17R0f4-vetJbwS0DhHG2dFqDJ6YmUXik4A,454
41
41
  astrbot/core/agent/tool.py,sha256=ZkiyZUP2SdQSncjDCiNMYYi_rYhwtyQYxbiEgeIjvvw,8637
42
42
  astrbot/core/agent/tool_executor.py,sha256=keliOV_lyrI6CALr-MAVCdLE-HjxZh9zygoY61IVkfM,384
43
43
  astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
44
44
  astrbot/core/agent/runners/base.py,sha256=exZS_d2BsrLz-xgeY9ZUPuXikBDUnKxO-dU3ZFQMhRs,1625
45
- astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=cuGBkpyyUEZaI4eo-UxAf199kEupicAo3IZMUwm6874,13976
45
+ astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=n_Mm4D289UKHPXVjb6gCq58i0eBsoe81lcTX8G30kkM,13970
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=WNwHKOa5t3Q5-hId3eKtzEALyYjiuXDns38OKCDvh4Q,116360
48
+ astrbot/core/config/default.py,sha256=DlbgtiuIMKkjMwlcJ67Do9EUKlONjKMJ0xzJpMDwXtI,117266
49
49
  astrbot/core/db/__init__.py,sha256=CAtPQ7lfNSNE4hUylUBWks_49ah2amgYmw1V1lA9FwQ,8291
50
50
  astrbot/core/db/po.py,sha256=9MfQf4oEOYCUz7qnCjs4isWkGNpQKhaDVYqKIY8W-l0,7707
51
51
  astrbot/core/db/sqlite.py,sha256=F-t2NQr6p63VmuYG6LScFJtnXWNxVT5yWxnbHirJtCw,20138
52
- astrbot/core/db/migration/helper.py,sha256=trbzp8pKjOV10YzQkbDL5SUJ8icodACEiY9UBkBfshA,1934
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
- astrbot/core/db/migration/shared_preferences_v3.py,sha256=CZVL5wo8PqA4c9QRF9APkiLxr0wsuC6pNsAiU89Bku0,1243
55
- astrbot/core/db/migration/sqlite_v3.py,sha256=vgRX5TlPXMwFdP1ohCNt9gXqxiytssSd9Kjb1in90Vc,15003
54
+ astrbot/core/db/migration/shared_preferences_v3.py,sha256=tE11WIpwT-Q8yVBkw4eveRr1PmFdNRJQSprH4xdO3G4,1245
55
+ astrbot/core/db/migration/sqlite_v3.py,sha256=U3Uysd_IGT4ObqCFE7yQeIo_1kBrAYb_r09Uy_Vvr3A,15002
56
56
  astrbot/core/db/vec_db/base.py,sha256=Oc1mE-ecAaroQBxtVy5aGW9lHIbARRChjvAwaOFIMVE,1058
57
- astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=DGPCTXm9Mvu4EXXoMKFnOeCwBlPskl32GTgQHwCVYdA,56
57
+ astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=S3gwB-ZL9aPJwDM5ia8a_t-xsfANKoslpJvtNd5ErcU,57
58
58
  astrbot/core/db/vec_db/faiss_impl/document_storage.py,sha256=6aswY7f6vmpnJ7BXjVUFUI4vA3i83R9FzN35XWrS8yI,4166
59
59
  astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=pSu-ySlli-wbeVFQ7v-ZWpVn08m3Rr9uld1_692_aZQ,1810
60
60
  astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql,sha256=RiF1mnAFAHtyThOsS0qjvniUF5t9Y8k-gjSlh51p2x8,681
61
- astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=kuuEv8yuK0dkL4NVP263bGfYUmUBbaMjiCMxE0hSFK8,5130
61
+ astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=Tpp-pNoRWc1MnRRpo6CeM2TbSc9lDwGNwufXspxDlfc,5146
62
62
  astrbot/core/message/components.py,sha256=AzJACQYgw0Yo1iwSIyQWtfE8Xyo-6Q8KcQPE9yT5otQ,28208
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=tqzIur7icEvuZ5tRjH6mDFQdxX8R3ywI08PU8TNQ5YU,3459
66
+ astrbot/core/pipeline/context_utils.py,sha256=BWOF4SM5m4m9el4vsf5Ddw0i4tn1iamzfbSju4XjgKo,3458
67
67
  astrbot/core/pipeline/scheduler.py,sha256=8N6QuLV55gR1jQZDEOUDrvcf42ify8EDmw1aDU3Y4nE,3270
68
68
  astrbot/core/pipeline/stage.py,sha256=dqEhUuQIhAZpPV4dULmVN39R0pIPjyw8Ftvs4Y1C4lY,1352
69
69
  astrbot/core/pipeline/content_safety_check/stage.py,sha256=FsxIRBpoOm2euQSpcts8YTIX7zIwL6a2ntliQcEw2ww,1372
@@ -76,31 +76,31 @@ astrbot/core/pipeline/process_stage/stage.py,sha256=2hCX5LdUCzX2RbleMLF_Yqiot9YD
76
76
  astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=CYDjQtTTDI05O06NPW-_TgD4mW4r1zKm4GwqH-EE49Y,23882
77
77
  astrbot/core/pipeline/process_stage/method/star_request.py,sha256=0KWbR0bnVXhMm0CgXnYD_OH3qjbUUvax1UmBWuGiLYU,2454
78
78
  astrbot/core/pipeline/rate_limit_check/stage.py,sha256=I_GkpSgioN0-T_catMwpRKtxx-TiMmvu8vV_FE5ORIA,4072
79
- astrbot/core/pipeline/respond/stage.py,sha256=uebafXVRXBr7dVwrREprNTGDxMMj8Rjo9-hPqc79WYQ,9975
79
+ astrbot/core/pipeline/respond/stage.py,sha256=K_CrogwVS1EYNv9oAe3We95QwahPef1S9oBMwd5wdsw,10525
80
80
  astrbot/core/pipeline/result_decorate/stage.py,sha256=jGXXtAYyQeo6EHsvrJ56x4rpDBgntXyG5k3kAIt8-Hk,13497
81
81
  astrbot/core/pipeline/session_status_check/stage.py,sha256=4STRhoiq4AE544_MVscGHA2FIKUia1CPHV1TKFKTs9U,838
82
82
  astrbot/core/pipeline/waking_check/stage.py,sha256=yNC726wHhf1zf5WEvWn47hDUjj_U2vsYgcwTYIvRiSo,7946
83
83
  astrbot/core/pipeline/whitelist_check/stage.py,sha256=VcmLs0VfmspNTsitL_WrZXfv2lR2Nktrb5JEWc1VJuw,2403
84
84
  astrbot/core/platform/__init__.py,sha256=jQ4UiThp7cDHfmIXAgBDodET87onl7mjii0CAD3RXTY,361
85
- astrbot/core/platform/astr_message_event.py,sha256=df8fFckPTY0btDcDeb77yTCtfDEPqz-C_2Vubs_3qSA,14102
86
- astrbot/core/platform/astrbot_message.py,sha256=9Oy2HGfjD8mRTiUIVZEggwwqjCXOpr97QhHjxvBIzhM,2140
87
- astrbot/core/platform/manager.py,sha256=rzaIHyH5Wun9bI3ME0Cjuw4kzolSXpIoIqby49EB4PI,7887
85
+ astrbot/core/platform/astr_message_event.py,sha256=q1bf4g7BnZKWF36Htik3lO8ZPMU-ptWbGnI5s4X6LEQ,14103
86
+ astrbot/core/platform/astrbot_message.py,sha256=r7jlUPfaOEh0yCSHaS1KQtYarZ9B4ikqMZwDj-wLv_k,2655
87
+ astrbot/core/platform/manager.py,sha256=-H60fkUtH7uhr4aSm2NJF783o8oeN4HxaiiDxGew4B0,7893
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
91
91
  astrbot/core/platform/platform_metadata.py,sha256=VRZSkV7u0OUoSxAXDu5EdEggrmcsbhk_7RUduTasoQo,488
92
92
  astrbot/core/platform/register.py,sha256=1cPxysZZ1ggfSPZfsv7Ll6qOVcTmLUw6vgaVRPjpxH8,1701
93
93
  astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=PN4h7TjH2UrQZX9bZmI6bGtmXgxHEx5GJREI-Vw0qX4,8036
94
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=p5uYdQUXYtqUsJIwlsG6msma6af7G6oKlis05bXJTh8,16580
94
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=ke52xqAr5JzjfGr0X3thL5Ed9VqfShMxeBRJp1KbRRs,16716
95
95
  astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=unEkE_KBwCLn9mOBs49WMUKqk8ddpaKN8MMyYep6rhg,8514
96
- astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=QcE0wUaB3hCSv4Cg3kApl5m0dfzkEyZTCjNbuHU52Ek,2721
97
- astrbot/core/platform/sources/discord/client.py,sha256=TQ62b58LVJCPPBNNVxxF2gyiy0k1UqtcSuwcFp0uNS4,4576
98
- astrbot/core/platform/sources/discord/components.py,sha256=FMqdzcGjNxkiYCWsShzDchLsXdy2Un-KJNLFx1PglEk,3843
96
+ astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=CYTVhpiIedNdLQxjKJlK26GxSWZGlUFNbxZZ5i3tM4o,2672
97
+ astrbot/core/platform/sources/discord/client.py,sha256=mNAE81bYJSvdhbSXrR7MDZIqtGEqDYynpRCGZNf9-ag,4592
98
+ astrbot/core/platform/sources/discord/components.py,sha256=QQYKLrdWjvzxMVrNZTxGW-rhdnn4L0CY5wbzxvQ0DY0,3845
99
99
  astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=aeR1lv8sY3XNSSnN8q1XJ5N8SuxBPri0sGlQJD3vWlg,18389
100
- astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=X6hbW0bxE287r6T0CpCIWqystiIQpFWpngM_fBRCqBA,11956
100
+ astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=1YjlH3P-jY3tsE2dBFBnX9833_h55lI6A4xmLcOvlac,12008
101
101
  astrbot/core/platform/sources/lark/lark_adapter.py,sha256=JO_gBvAw6e2hTkXWOYeeSPUqdDjnsyVmtXh9SWXZO4A,8233
102
102
  astrbot/core/platform/sources/lark/lark_event.py,sha256=_zISFjMhRaUqSzSOqUVKq-6Q1qAF2SujqMk7rwxCL_U,4513
103
- astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=5ALw-nrq9Ef07pzJulymu4GvT56MbqvC2pgGheZ7j_Q,11914
103
+ astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=f8PA-kFZPe5iRqZZN4YYKj4wZSfozz8ySskxiE6BgpU,11954
104
104
  astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=6zJGUdXc-EkQp8ITPRYr99tVEFIRc20x4Fs-9QVT8Zk,7279
105
105
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PTW_WpZSzlFuchtpu0uAIMy2KcDMi_BBnr6tUgOJNZk,4295
106
106
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=BrxaNhG3sy5QAKf8DlZlum6R7m9X5Fm0SxBrKIC_1hg,499
@@ -108,27 +108,27 @@ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=5A8
108
108
  astrbot/core/platform/sources/satori/satori_adapter.py,sha256=1wz4U8r70TcxBo04FT2QhEJpm5ZEyGB1sRXLBTbXBGE,16677
109
109
  astrbot/core/platform/sources/satori/satori_event.py,sha256=0z4Yn2WUn7-M2i2JbBp7VHoggsvk3mNUIRGgSWwsA30,9116
110
110
  astrbot/core/platform/sources/slack/client.py,sha256=p0gCh9gj_VR8IacGg09-BXp2IM8C0oTnodrvEVmShMA,5637
111
- astrbot/core/platform/sources/slack/slack_adapter.py,sha256=0EiEmqGWo-fMuSW4Ptjoej4u4yJW494C1B-itkokFFU,15766
112
- astrbot/core/platform/sources/slack/slack_event.py,sha256=fS8jlH-wiZldMnSclj8islhBSSPG-pQ4fSmIGlxAmjQ,8685
111
+ astrbot/core/platform/sources/slack/slack_adapter.py,sha256=BdZTCNXsO5nUKY2HrZD5tpxMzpnvL7n3_vr2JgJfDS0,15812
112
+ astrbot/core/platform/sources/slack/slack_event.py,sha256=RYTJBqk5-CYQKgk-ejPuMKJyfaxSTqPjvfqKvPNg5Yw,8791
113
113
  astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=jEPkPKAbBgq9q9BZ3kx82RPrbU6LyZ8ugL-MmWiguPw,14145
114
- astrbot/core/platform/sources/telegram/tg_event.py,sha256=5xZyjSySvWiQppAVH6AvzYHVsgU7ny4XixoT8sJRyd0,9835
114
+ astrbot/core/platform/sources/telegram/tg_event.py,sha256=GtLETfmlHPkW-QoqS8Y07SbPspRMLueGHq402gMJ8Sc,9849
115
115
  astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=X4FAaV2uFjU65Amc3kse9WJNCqsGpE7xYQjnF99HcW8,5992
116
116
  astrbot/core/platform/sources/webchat/webchat_event.py,sha256=qeKBQtUZVwknsFQQvwASs5Hybs-L3Rn-bjIUaji6n9o,5457
117
- astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=5kVpeN_FUpYLqUXZWmEEP0Ko1w_laP4QqtIp4IOk3KI,1362
118
- astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=Q1Ev5RBfhM5M_8OChh7WaQuz4kutQEnKMquE-bviGik,40673
117
+ astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
118
+ astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=oXxy6ZJ-42_7yKZko9oepN0vBvVbLJRNjLbaxVr6ehk,40791
119
119
  astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py,sha256=3K7NKrE46s5jhbxLEzduLPQF4Pt4Rj6IXXdu0TwoZUw,6019
120
120
  astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py,sha256=tfQGwWXEra99hvrYTHI4einQSt7ATcLm57Uq4VTP7d8,6230
121
121
  astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=iCwW8S_notAkepeT78WkG2ICOMRDDpoy4aKacuflOhU,13574
122
122
  astrbot/core/platform/sources/wecom/wecom_event.py,sha256=WkP7EP7k4AS5KUrxF7ouByyR3qS-GMZODv3yORQb0kI,9181
123
- astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=_Eoe1WuuyakbapKgURgbN7L7WCGJbQs4y8fwyXvuG4c,10790
124
- astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=xUP3415BFgtchUEKFrdHIkpcYPAs2Pz7WnG-LfUWjnQ,5467
125
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=X3TjXLotz3ZQCZ4ACBhr-_n1yOH9JqptlLUw_d9FcGk,10364
126
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=Mum478n1fELjOnVig-IFZqTb6sF7AUK1fSO2ThxYHrQ,7197
123
+ astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=xPPt3P3tqB6d0gzPT0-0YfTkYfzlMki1PNUMGWMkH74,10891
124
+ astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=nHPOnrOEnEx2uawL1_6Ht0QB7k7G1Nbt3BLpPQekfZA,5787
125
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=jKiLSiBW_gjE4yhN5lkfYJV8Gi3wdPkpyXYKAr0VrI0,10410
126
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=JpyQYaivJTUkPOMDz5ZXp4CLOQ6ek76eNLmrJXTXEEU,7196
127
127
  astrbot/core/provider/__init__.py,sha256=fhD_KB1-KpqJ7woaXDXc7kdlmL3XPQz3xlc5IkFDJJ4,171
128
128
  astrbot/core/provider/entites.py,sha256=-353AdRDA6ST4AS48cQ1RRAXHSy3F7pVS_28hW4cG2U,388
129
- astrbot/core/provider/entities.py,sha256=fTWfSdULPUfjODp1I7yGRHtD_n6ExAh6RXWDjE5ptCI,10937
129
+ astrbot/core/provider/entities.py,sha256=hT3T4hEFwpDscCD1Kt8pfvjdqUh3nZqjyTXmSzmMCIE,10938
130
130
  astrbot/core/provider/func_tool_manager.py,sha256=Qb6UrajD4Hkz5ZLmYCo3RJx8xTW5nFEmG-F_nzm9qXg,20819
131
- astrbot/core/provider/manager.py,sha256=hF6aBylf6TE5qnY4rXOrkviOAlwFpS7i3NjFp6cu6OE,20395
131
+ astrbot/core/provider/manager.py,sha256=hFNFzV8vuHQZnRlIAbMCLn8iTvYAUH3je4VGFxY2Zls,20508
132
132
  astrbot/core/provider/provider.py,sha256=rzzlUTUn3cRCRgfd2PhA5RcboHkEDlk3Dw9Q1P3DoJ8,7203
133
133
  astrbot/core/provider/register.py,sha256=bWAF9zWNnSYQWjmZIXiWgxFaeWIiWjEoEIN_xhmq3mM,1830
134
134
  astrbot/core/provider/sources/anthropic_source.py,sha256=9I6VEZ5ANv-SIx7TaNGr2o_9S1xK0eTMOxt1ZF4XrBM,14974
@@ -137,7 +137,7 @@ astrbot/core/provider/sources/dashscope_source.py,sha256=HPzMCI-x5Ht76KxxvWHSwff
137
137
  astrbot/core/provider/sources/dashscope_tts.py,sha256=qGVGSKoW-yVHlnWl_eONwLtkAGMQX6t81FPkC-dV25U,1532
138
138
  astrbot/core/provider/sources/dify_source.py,sha256=Q0VmnacKwD-fOnvwYqbrRMspDYOlJZAHnjBawRzshw4,11472
139
139
  astrbot/core/provider/sources/edge_tts_source.py,sha256=foO2E0Wdc2wJy8yMbLUyX0cjkP6MD4vPCbc8q3Ckkug,4716
140
- astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=1xN--JrZeqb2P7bDVVnGZi3hIQpLimYTkNwT8eCRRUQ,5439
140
+ astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=Tu4wHh5txKDWn3_Z57hWgzTU8QUw1oVFBndAqmp4aLY,5439
141
141
  astrbot/core/provider/sources/gemini_embedding_source.py,sha256=FlVlacBLlxo4ZZgrBhurDQRuDYRGtR8Du35XuXEY9nI,2307
142
142
  astrbot/core/provider/sources/gemini_source.py,sha256=Gwn8nzMcsPsIVgDJ9G20tevUlYDyu_3g1_yaXsmvFPU,28649
143
143
  astrbot/core/provider/sources/gemini_tts_source.py,sha256=mNcb9G6Lb58L2zoSYzroQGyASGrv3k4ZjmOIVvhii_o,2886
@@ -158,15 +158,15 @@ astrbot/core/star/__init__.py,sha256=ynSwMrdCLyVMN3Q9flS_mcDDjdIGrkLBpfeDVoFj6PM
158
158
  astrbot/core/star/config.py,sha256=f4h1YFt1Tn6S2D-LvnhM483qaD8JdWjl-TBRV9CeYBo,3593
159
159
  astrbot/core/star/context.py,sha256=jeF6VLUwBm5b2kl0Uy4kz39uQ1C8esaOgeAIJavtTjo,12330
160
160
  astrbot/core/star/session_llm_manager.py,sha256=B2URKTxPW9FXUW1goZ0HkyuqE3PZ2X7o22GSPKnIAj0,8596
161
- astrbot/core/star/session_plugin_manager.py,sha256=h8i3QgymTldLjYtcElvP98OKXOru52pV8ZhiBAEJFTo,5192
161
+ astrbot/core/star/session_plugin_manager.py,sha256=EAN17vxRdpVwIsrqFy4-k0tGl9IpgYvpV42JFGHzXjQ,5229
162
162
  astrbot/core/star/star.py,sha256=fEgg7pxiIsnRg4Xw_KBIyOy3V919MpIgAWQ7FoE7bWc,1690
163
163
  astrbot/core/star/star_handler.py,sha256=njRMNHcbtJg8mIk6jofYggevMOdH7972bwK84jULNiY,4830
164
- astrbot/core/star/star_manager.py,sha256=nB90WWeeg3ZpRfApPJG8mo3FH8HOQevv28JHSKEV8v8,36069
165
- astrbot/core/star/star_tools.py,sha256=8art-1s2TNHVsZ-pOdi8iEUJOozFsTXSdA2Gb7H1MIE,10661
164
+ astrbot/core/star/star_manager.py,sha256=QkMnNhchj2-5bYT_TLeHt3It4UCV6wJvf8svubrVFFs,36069
165
+ astrbot/core/star/star_tools.py,sha256=A16aeLU78_BBOkfPQSOp1PPhg6krnP6ymKLiBUetLnQ,10795
166
166
  astrbot/core/star/updator.py,sha256=lHKLVE1mXBkkH0FpwJ8h23U9xJ9CsB1zo8rgZvADp88,3010
167
167
  astrbot/core/star/filter/__init__.py,sha256=xhdp6MMbBJbCHDDtBcAzWZ86DSFTPKzj8RpE2Cdb8ls,469
168
- astrbot/core/star/filter/command.py,sha256=Mucwervt346dL_wQaaytumTCuVNozwnE4B8kuBM0h0g,7158
169
- astrbot/core/star/filter/command_group.py,sha256=Tv1lFZvL8NGw7pui-r8R4oR0G-uyrdGzUjV1wdEN0Zc,4712
168
+ astrbot/core/star/filter/command.py,sha256=lWcZPnmyWKFtflMe8JjPZbvImfqGMLwuUukdPEcrSU8,6963
169
+ astrbot/core/star/filter/command_group.py,sha256=XPONNccFEJeiRzryjySY28x3eS9cLzSDjObbQgI_xOI,4696
170
170
  astrbot/core/star/filter/custom_filter.py,sha256=UPEfr-vYJR1NsLOp75A8Oa8RFkluEC3rkzbHM2ct0ek,2238
171
171
  astrbot/core/star/filter/event_message_type.py,sha256=R45Buoy9YALxnY6oanFlZMLfSZex2NAHPsl8DFSI_2Y,1162
172
172
  astrbot/core/star/filter/permission.py,sha256=GmyA2xqPCGVryLMa7OrWiuYRR-9pcQ6PaYOedPySH_0,915
@@ -199,21 +199,21 @@ astrbot/dashboard/server.py,sha256=4d_0xDfMW-qKabVLBEVzOnjxF3qIiNMr3dvaxZO-cEk,9
199
199
  astrbot/dashboard/routes/__init__.py,sha256=Bn6_rbYtujttHKHEn8Smv2RiObhwWyH9TagW4HZSzGw,710
200
200
  astrbot/dashboard/routes/auth.py,sha256=igVjZWluaQpF-lrg-Ueb4IA553dA_Sn6pAxY34-83i8,2964
201
201
  astrbot/dashboard/routes/chat.py,sha256=hfKrxS07qEYA3SxwgPymh08-Doi74hwmaYhwxRcwrkk,11601
202
- astrbot/dashboard/routes/config.py,sha256=glo_68fdaU4awVG8udH43PPvih0HtSeeLTOGLxYMovE,31655
202
+ astrbot/dashboard/routes/config.py,sha256=ZVn5GIoaloIWpjL6Gy1zFtBQuAKC7fYP1RZDsJAGy8Q,31643
203
203
  astrbot/dashboard/routes/conversation.py,sha256=9AopEmbxzRUcJ78fOlp5aFe9-7ptroaE5YrvAEuGBJQ,8886
204
204
  astrbot/dashboard/routes/file.py,sha256=y3yi4ari-ELwiDicuniBlvXhVe8d1JgWRl6FdC42v9k,706
205
- astrbot/dashboard/routes/log.py,sha256=uLQx-TCyg3j3etkEd0hVStFTE4S1C4Y8XEBsk0w7Gc8,1972
205
+ astrbot/dashboard/routes/log.py,sha256=hDl6Niz_Vs4xb64USjCBzdOcm68GDpEsQrNrLr8yKGc,2114
206
206
  astrbot/dashboard/routes/persona.py,sha256=6icnNNE8A0Yy1WI0INWD9ZPKC7VcZG-xHDfYElhaP8M,7857
207
207
  astrbot/dashboard/routes/plugin.py,sha256=cGGJVEM55uRiPo-EeD5apZQISzPw9vux7a-U2dE4fZQ,19429
208
- astrbot/dashboard/routes/route.py,sha256=01N4nUrpyDk71IMbuRxwLXbEugysE_WOZH7VCsXVsws,1577
208
+ astrbot/dashboard/routes/route.py,sha256=V-Wm88D0BmxSYAUbedunykbWy5p7Tggae9nDhxm7LZU,1545
209
209
  astrbot/dashboard/routes/session_management.py,sha256=h3b8DTDV99Dl0Gmbys7I2SlkC7_DTeIQNwoi8HT1zEo,20238
210
210
  astrbot/dashboard/routes/stat.py,sha256=KCtP0-f9g664gM2SOBgnU8uKx6zt93-5Kut-d7wd7zk,6910
211
211
  astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
212
212
  astrbot/dashboard/routes/t2i.py,sha256=scp05AxoJM9cubrkSMBu1BbIWP1BMS50eFEPZ9S6WKM,8893
213
- astrbot/dashboard/routes/tools.py,sha256=BWN0KYidJdY4zVVbLRaM5cSgDNrdJ7dlgFQI4WTqaUY,13990
213
+ astrbot/dashboard/routes/tools.py,sha256=FvWgjzImgeIGFWJM_r2tku3UTj0J5LwZXfmZJxfJWHM,13975
214
214
  astrbot/dashboard/routes/update.py,sha256=vhG6ET0GJNLTpfkKABYf3Aq5ChUCID1BvoZissWRBZg,6517
215
- astrbot-4.1.1.dist-info/METADATA,sha256=D8o_EdiSUwy1DPF-HMITDlfXAcIsbvlVg9mCA16WcLU,10921
216
- astrbot-4.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
217
- astrbot-4.1.1.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
218
- astrbot-4.1.1.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
219
- astrbot-4.1.1.dist-info/RECORD,,
215
+ astrbot-4.1.3.dist-info/METADATA,sha256=MId2DI3KOUAukQo1NT32r3JxhAeHt7ATzfzvyL4JA-w,10921
216
+ astrbot-4.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
217
+ astrbot-4.1.3.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
218
+ astrbot-4.1.3.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
219
+ astrbot-4.1.3.dist-info/RECORD,,