AstrBot 4.1.3__py3-none-any.whl → 4.1.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.
Files changed (40) hide show
  1. astrbot/core/agent/agent.py +1 -1
  2. astrbot/core/agent/mcp_client.py +3 -1
  3. astrbot/core/agent/runners/tool_loop_agent_runner.py +6 -27
  4. astrbot/core/agent/tool.py +28 -17
  5. astrbot/core/config/default.py +50 -14
  6. astrbot/core/db/sqlite.py +15 -1
  7. astrbot/core/pipeline/content_safety_check/stage.py +1 -1
  8. astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +1 -1
  9. astrbot/core/pipeline/content_safety_check/strategies/keywords.py +1 -1
  10. astrbot/core/pipeline/context_utils.py +4 -1
  11. astrbot/core/pipeline/process_stage/method/llm_request.py +23 -4
  12. astrbot/core/pipeline/process_stage/method/star_request.py +8 -6
  13. astrbot/core/platform/manager.py +4 -0
  14. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +2 -1
  15. astrbot/core/platform/sources/misskey/misskey_adapter.py +391 -0
  16. astrbot/core/platform/sources/misskey/misskey_api.py +404 -0
  17. astrbot/core/platform/sources/misskey/misskey_event.py +123 -0
  18. astrbot/core/platform/sources/misskey/misskey_utils.py +327 -0
  19. astrbot/core/platform/sources/satori/satori_adapter.py +290 -24
  20. astrbot/core/platform/sources/satori/satori_event.py +9 -0
  21. astrbot/core/platform/sources/telegram/tg_event.py +0 -1
  22. astrbot/core/provider/entities.py +13 -3
  23. astrbot/core/provider/func_tool_manager.py +4 -4
  24. astrbot/core/provider/manager.py +35 -19
  25. astrbot/core/star/context.py +26 -12
  26. astrbot/core/star/filter/command.py +3 -4
  27. astrbot/core/star/filter/command_group.py +4 -4
  28. astrbot/core/star/filter/platform_adapter_type.py +10 -5
  29. astrbot/core/star/register/star.py +3 -1
  30. astrbot/core/star/register/star_handler.py +65 -36
  31. astrbot/core/star/session_plugin_manager.py +3 -0
  32. astrbot/core/star/star_handler.py +4 -4
  33. astrbot/core/star/star_manager.py +10 -4
  34. astrbot/core/star/star_tools.py +6 -2
  35. astrbot/core/star/updator.py +3 -0
  36. {astrbot-4.1.3.dist-info → astrbot-4.1.5.dist-info}/METADATA +6 -7
  37. {astrbot-4.1.3.dist-info → astrbot-4.1.5.dist-info}/RECORD +40 -36
  38. {astrbot-4.1.3.dist-info → astrbot-4.1.5.dist-info}/WHEEL +0 -0
  39. {astrbot-4.1.3.dist-info → astrbot-4.1.5.dist-info}/entry_points.txt +0 -0
  40. {astrbot-4.1.3.dist-info → astrbot-4.1.5.dist-info}/licenses/LICENSE +0 -0
@@ -32,23 +32,23 @@ astrbot/core/persona_mgr.py,sha256=iWvGsiHpky1fbPhmfQP1jDzHTWqv6g3GQ7ZROeOdaAc,7
32
32
  astrbot/core/platform_message_history_mgr.py,sha256=qNd5No1HzaLKQ6XVFdJohaiwAB6cjJVXPSwgmxsUyAs,1514
33
33
  astrbot/core/updator.py,sha256=voVD-08Jc-s7TBqiRboZk1DLlPQjcstr6LgPklIWlVk,4588
34
34
  astrbot/core/zip_updator.py,sha256=iSwa3S2fHXGqYA3ie4SEMrWNy6fSDpW5toCygQFdKSQ,8828
35
- astrbot/core/agent/agent.py,sha256=uOriyVYpg1uDJj1yqcDix7Uj7k8mE5j9WbeX53ADk74,364
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=zJgTFpj1X1bRXpbG3rb6jBOWs9RaQI_nTxOByyW-sTk,7897
38
+ astrbot/core/agent/mcp_client.py,sha256=I417lU4JKKKyM5BkpY40ehhQRoxtddLkMbq-H1LX9wI,7999
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
- astrbot/core/agent/tool.py,sha256=ZkiyZUP2SdQSncjDCiNMYYi_rYhwtyQYxbiEgeIjvvw,8637
41
+ astrbot/core/agent/tool.py,sha256=fXFkQGFIIoX9Y1GYj_LIGyrybOeEKSqOo7-3F10zf58,8920
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=n_Mm4D289UKHPXVjb6gCq58i0eBsoe81lcTX8G30kkM,13970
45
+ astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=rdGgu_QUjOIO5mEDbb7Fe-WZFDqVnOzrW5_D4Th5mcI,12894
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=DlbgtiuIMKkjMwlcJ67Do9EUKlONjKMJ0xzJpMDwXtI,117266
48
+ astrbot/core/config/default.py,sha256=tm3qrOkgowigcjLfK7dbXfXb4chgWZ680y7lcyJg91M,119209
49
49
  astrbot/core/db/__init__.py,sha256=CAtPQ7lfNSNE4hUylUBWks_49ah2amgYmw1V1lA9FwQ,8291
50
50
  astrbot/core/db/po.py,sha256=9MfQf4oEOYCUz7qnCjs4isWkGNpQKhaDVYqKIY8W-l0,7707
51
- astrbot/core/db/sqlite.py,sha256=F-t2NQr6p63VmuYG6LScFJtnXWNxVT5yWxnbHirJtCw,20138
51
+ astrbot/core/db/sqlite.py,sha256=A5ZDyNK-RvVc8tx37oeJpujhHG3MIrX39fLxWpSEpvU,20866
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,18 +63,18 @@ 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=BWOF4SM5m4m9el4vsf5Ddw0i4tn1iamzfbSju4XjgKo,3458
66
+ astrbot/core/pipeline/context_utils.py,sha256=lJ2iJorUGOp641qHPEljNhcZn5353C8jUGOz2bp19dA,3524
67
67
  astrbot/core/pipeline/scheduler.py,sha256=8N6QuLV55gR1jQZDEOUDrvcf42ify8EDmw1aDU3Y4nE,3270
68
68
  astrbot/core/pipeline/stage.py,sha256=dqEhUuQIhAZpPV4dULmVN39R0pIPjyw8Ftvs4Y1C4lY,1352
69
- astrbot/core/pipeline/content_safety_check/stage.py,sha256=FsxIRBpoOm2euQSpcts8YTIX7zIwL6a2ntliQcEw2ww,1372
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
71
- astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=1r320ZNZJagoO95qzqhIiup_N8xSpsGN2j3suDLKngM,987
72
- astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=SiYIDjFbMpaeXz6TgY85oexPSH0P4sYbjiOXYMJ9jyM,892
71
+ astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=XCkEe9vxL1dKQ4BOhvxlIcOwy4971eObHF2jrEWz7-k,1007
72
+ astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=j3Ns_IHc6-CENccoLH92ZhHyqmi61SWQUEB4wi2jFFE,904
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=hHDUsSvOVlyzdWEQEk-P2oSNC0H4FmYI5WrdoP38Zbc,3329
75
75
  astrbot/core/pipeline/process_stage/stage.py,sha256=2hCX5LdUCzX2RbleMLF_Yqiot9YDyutF3ePPOZsWeA0,2677
76
- astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=CYDjQtTTDI05O06NPW-_TgD4mW4r1zKm4GwqH-EE49Y,23882
77
- astrbot/core/pipeline/process_stage/method/star_request.py,sha256=0KWbR0bnVXhMm0CgXnYD_OH3qjbUUvax1UmBWuGiLYU,2454
76
+ astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=udf7cTP4Fj5qYAtfPg06hLJ2UxjHOjq5uWynJZhXORA,24578
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=K_CrogwVS1EYNv9oAe3We95QwahPef1S9oBMwd5wdsw,10525
80
80
  astrbot/core/pipeline/result_decorate/stage.py,sha256=jGXXtAYyQeo6EHsvrJ56x4rpDBgntXyG5k3kAIt8-Hk,13497
@@ -84,14 +84,14 @@ astrbot/core/pipeline/whitelist_check/stage.py,sha256=VcmLs0VfmspNTsitL_WrZXfv2l
84
84
  astrbot/core/platform/__init__.py,sha256=jQ4UiThp7cDHfmIXAgBDodET87onl7mjii0CAD3RXTY,361
85
85
  astrbot/core/platform/astr_message_event.py,sha256=q1bf4g7BnZKWF36Htik3lO8ZPMU-ptWbGnI5s4X6LEQ,14103
86
86
  astrbot/core/platform/astrbot_message.py,sha256=r7jlUPfaOEh0yCSHaS1KQtYarZ9B4ikqMZwDj-wLv_k,2655
87
- astrbot/core/platform/manager.py,sha256=-H60fkUtH7uhr4aSm2NJF783o8oeN4HxaiiDxGew4B0,7893
87
+ astrbot/core/platform/manager.py,sha256=bJoNhJpLB_sXdC80kqQNB8OhBbAl_340HaOPnOmreug,8076
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=ke52xqAr5JzjfGr0X3thL5Ed9VqfShMxeBRJp1KbRRs,16716
94
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=X5Rk_5ZnQgzKazbnIoLf85gex35qSABDyp0SKzBk7g0,16768
95
95
  astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=unEkE_KBwCLn9mOBs49WMUKqk8ddpaKN8MMyYep6rhg,8514
96
96
  astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=CYTVhpiIedNdLQxjKJlK26GxSWZGlUFNbxZZ5i3tM4o,2672
97
97
  astrbot/core/platform/sources/discord/client.py,sha256=mNAE81bYJSvdhbSXrR7MDZIqtGEqDYynpRCGZNf9-ag,4592
@@ -100,18 +100,22 @@ astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=aeR1lv8
100
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/misskey/misskey_adapter.py,sha256=E1RSbuQ1D0blXBj66oQYyIHn2q5X4hkMZh6MS6XDKqg,14714
104
+ astrbot/core/platform/sources/misskey/misskey_api.py,sha256=3q4mE3Y5TuY3tErHHLhzwv1MC0Bu2_Wj2R4Qu73GtN4,14546
105
+ astrbot/core/platform/sources/misskey/misskey_event.py,sha256=wssLcT9bx-bXGiQw08uZNussmSR-2sfNjnbrrDn8xRY,4697
106
+ astrbot/core/platform/sources/misskey/misskey_utils.py,sha256=BQO2nsqMYy5UDhqAoRtUuj72x9OwAnrIUx5AoHrIiJE,10747
103
107
  astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=f8PA-kFZPe5iRqZZN4YYKj4wZSfozz8ySskxiE6BgpU,11954
104
108
  astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=6zJGUdXc-EkQp8ITPRYr99tVEFIRc20x4Fs-9QVT8Zk,7279
105
109
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PTW_WpZSzlFuchtpu0uAIMy2KcDMi_BBnr6tUgOJNZk,4295
106
110
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=BrxaNhG3sy5QAKf8DlZlum6R7m9X5Fm0SxBrKIC_1hg,499
107
111
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=5A8EVmdx0j1lrd4lmJhM3S_tJJYsdMrEcR93X-lYT4Y,3726
108
- astrbot/core/platform/sources/satori/satori_adapter.py,sha256=1wz4U8r70TcxBo04FT2QhEJpm5ZEyGB1sRXLBTbXBGE,16677
109
- astrbot/core/platform/sources/satori/satori_event.py,sha256=0z4Yn2WUn7-M2i2JbBp7VHoggsvk3mNUIRGgSWwsA30,9116
112
+ astrbot/core/platform/sources/satori/satori_adapter.py,sha256=1CJOMXraR1uXCZc8-oHQF0sdqIM_xmQBFjZarhNGlEQ,26827
113
+ astrbot/core/platform/sources/satori/satori_event.py,sha256=CAeFJHZWvT28YzHn01VP7ugVIfyJibkMdqO2JWww9vA,9553
110
114
  astrbot/core/platform/sources/slack/client.py,sha256=p0gCh9gj_VR8IacGg09-BXp2IM8C0oTnodrvEVmShMA,5637
111
115
  astrbot/core/platform/sources/slack/slack_adapter.py,sha256=BdZTCNXsO5nUKY2HrZD5tpxMzpnvL7n3_vr2JgJfDS0,15812
112
116
  astrbot/core/platform/sources/slack/slack_event.py,sha256=RYTJBqk5-CYQKgk-ejPuMKJyfaxSTqPjvfqKvPNg5Yw,8791
113
117
  astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=jEPkPKAbBgq9q9BZ3kx82RPrbU6LyZ8ugL-MmWiguPw,14145
114
- astrbot/core/platform/sources/telegram/tg_event.py,sha256=GtLETfmlHPkW-QoqS8Y07SbPspRMLueGHq402gMJ8Sc,9849
118
+ astrbot/core/platform/sources/telegram/tg_event.py,sha256=zrr7-XVdUKJHWLM5UmYBgzoOy_rlRkZi5vOtzUxj-Es,9814
115
119
  astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=X4FAaV2uFjU65Amc3kse9WJNCqsGpE7xYQjnF99HcW8,5992
116
120
  astrbot/core/platform/sources/webchat/webchat_event.py,sha256=qeKBQtUZVwknsFQQvwASs5Hybs-L3Rn-bjIUaji6n9o,5457
117
121
  astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
@@ -126,9 +130,9 @@ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,s
126
130
  astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=JpyQYaivJTUkPOMDz5ZXp4CLOQ6ek76eNLmrJXTXEEU,7196
127
131
  astrbot/core/provider/__init__.py,sha256=fhD_KB1-KpqJ7woaXDXc7kdlmL3XPQz3xlc5IkFDJJ4,171
128
132
  astrbot/core/provider/entites.py,sha256=-353AdRDA6ST4AS48cQ1RRAXHSy3F7pVS_28hW4cG2U,388
129
- astrbot/core/provider/entities.py,sha256=hT3T4hEFwpDscCD1Kt8pfvjdqUh3nZqjyTXmSzmMCIE,10938
130
- astrbot/core/provider/func_tool_manager.py,sha256=Qb6UrajD4Hkz5ZLmYCo3RJx8xTW5nFEmG-F_nzm9qXg,20819
131
- astrbot/core/provider/manager.py,sha256=hFNFzV8vuHQZnRlIAbMCLn8iTvYAUH3je4VGFxY2Zls,20508
133
+ astrbot/core/provider/entities.py,sha256=CkC-U9nafBKo2n2kLZqzukosDX7RuZWAK4DMBHQkasA,11238
134
+ astrbot/core/provider/func_tool_manager.py,sha256=NuWMmAJaEwoJ3XCSvhwtmzDPdzX4K4BIRKuKgF0FlQk,20881
135
+ astrbot/core/provider/manager.py,sha256=OBN96yiGvrlJno6C2XFA8TbALrLhG8pqdnKfRFKsLzQ,21163
132
136
  astrbot/core/provider/provider.py,sha256=rzzlUTUn3cRCRgfd2PhA5RcboHkEDlk3Dw9Q1P3DoJ8,7203
133
137
  astrbot/core/provider/register.py,sha256=bWAF9zWNnSYQWjmZIXiWgxFaeWIiWjEoEIN_xhmq3mM,1830
134
138
  astrbot/core/provider/sources/anthropic_source.py,sha256=9I6VEZ5ANv-SIx7TaNGr2o_9S1xK0eTMOxt1ZF4XrBM,14974
@@ -156,25 +160,25 @@ astrbot/core/provider/sources/zhipu_source.py,sha256=w-0C00U9_24HURUB5ppqcEvMr8l
156
160
  astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
157
161
  astrbot/core/star/__init__.py,sha256=ynSwMrdCLyVMN3Q9flS_mcDDjdIGrkLBpfeDVoFj6PM,2080
158
162
  astrbot/core/star/config.py,sha256=f4h1YFt1Tn6S2D-LvnhM483qaD8JdWjl-TBRV9CeYBo,3593
159
- astrbot/core/star/context.py,sha256=jeF6VLUwBm5b2kl0Uy4kz39uQ1C8esaOgeAIJavtTjo,12330
163
+ astrbot/core/star/context.py,sha256=eE1zRPk38A1uENHpVvtKL97vt1wDwWqspsxI_qzvN8A,12996
160
164
  astrbot/core/star/session_llm_manager.py,sha256=B2URKTxPW9FXUW1goZ0HkyuqE3PZ2X7o22GSPKnIAj0,8596
161
- astrbot/core/star/session_plugin_manager.py,sha256=EAN17vxRdpVwIsrqFy4-k0tGl9IpgYvpV42JFGHzXjQ,5229
165
+ astrbot/core/star/session_plugin_manager.py,sha256=3vxbqPikZg4ZTHG_STvEKeqNplo78wknILSnFCmHTr0,5291
162
166
  astrbot/core/star/star.py,sha256=fEgg7pxiIsnRg4Xw_KBIyOy3V919MpIgAWQ7FoE7bWc,1690
163
- astrbot/core/star/star_handler.py,sha256=njRMNHcbtJg8mIk6jofYggevMOdH7972bwK84jULNiY,4830
164
- astrbot/core/star/star_manager.py,sha256=QkMnNhchj2-5bYT_TLeHt3It4UCV6wJvf8svubrVFFs,36069
165
- astrbot/core/star/star_tools.py,sha256=A16aeLU78_BBOkfPQSOp1PPhg6krnP6ymKLiBUetLnQ,10795
166
- astrbot/core/star/updator.py,sha256=lHKLVE1mXBkkH0FpwJ8h23U9xJ9CsB1zo8rgZvADp88,3010
167
+ astrbot/core/star/star_handler.py,sha256=0hQq5QOre3AjPx7AfZfyfvx2k-iVBCaXg0hofvqE2k4,4888
168
+ astrbot/core/star/star_manager.py,sha256=c6s90gg3SgUIQ2UZxUUhslFPdS3jxVaVZOulvSMRU7M,36392
169
+ astrbot/core/star/star_tools.py,sha256=tAX49jAcGc5mFYu7FW3MrTFgAKtX-_TIE3tfeEArGx4,10863
170
+ astrbot/core/star/updator.py,sha256=IVml0S4WGmKRl42EeDbU0bP8-7d0yfEY0X9qpshI_RA,3129
167
171
  astrbot/core/star/filter/__init__.py,sha256=xhdp6MMbBJbCHDDtBcAzWZ86DSFTPKzj8RpE2Cdb8ls,469
168
- astrbot/core/star/filter/command.py,sha256=lWcZPnmyWKFtflMe8JjPZbvImfqGMLwuUukdPEcrSU8,6963
169
- astrbot/core/star/filter/command_group.py,sha256=XPONNccFEJeiRzryjySY28x3eS9cLzSDjObbQgI_xOI,4696
172
+ astrbot/core/star/filter/command.py,sha256=vHsrKT8prA3JO1tf29Qte_t6RMIZTeEGq5SwSF4YY0k,6911
173
+ astrbot/core/star/filter/command_group.py,sha256=vam1S4Cb5VGZ1RNKFT_-0ctMcoZOfQYsX7B5FGJz01s,4724
170
174
  astrbot/core/star/filter/custom_filter.py,sha256=UPEfr-vYJR1NsLOp75A8Oa8RFkluEC3rkzbHM2ct0ek,2238
171
175
  astrbot/core/star/filter/event_message_type.py,sha256=R45Buoy9YALxnY6oanFlZMLfSZex2NAHPsl8DFSI_2Y,1162
172
176
  astrbot/core/star/filter/permission.py,sha256=GmyA2xqPCGVryLMa7OrWiuYRR-9pcQ6PaYOedPySH_0,915
173
- astrbot/core/star/filter/platform_adapter_type.py,sha256=qkwUw07lSb92RzN2bVhhgzBwuKUV5Hl-1wGTM2INtac,1941
177
+ astrbot/core/star/filter/platform_adapter_type.py,sha256=hImNjA3ywU3_duXpoas3P_R_ZNCMKCwQak9facp3zXA,2206
174
178
  astrbot/core/star/filter/regex.py,sha256=yb4JVdQtWVvWm7Ba5Tt07HusPMccAvSrIEV0ewDPBus,543
175
179
  astrbot/core/star/register/__init__.py,sha256=DoVe-BX9jjYmGTzD3pr1sRfxzni5ryL3JPGwMBTY6iA,992
176
- astrbot/core/star/register/star.py,sha256=P-ToyRpAT2IE9ZZwUo544n12AvpPQpWesR9eVfmIwpg,1890
177
- astrbot/core/star/register/star_handler.py,sha256=UHGgaFqNg_2cSz3Kay9BBdq3GooEBgV3vNn6PUQT3lk,15209
180
+ astrbot/core/star/register/star.py,sha256=1Yml-_EGKr0uYUTmdu3CAVASIJss6JaBxoRP_D-oIKU,1903
181
+ astrbot/core/star/register/star_handler.py,sha256=prfI_-uwe7AL-nzOMJCLCIJCyI1dC8Gpalmtej2hg_4,16269
178
182
  astrbot/core/utils/astrbot_path.py,sha256=ZK-OmCTOxH63GQ4kBMGZs9ybKmKuHMNXdW9RKqLbYRk,1227
179
183
  astrbot/core/utils/command_parser.py,sha256=ktdaw4kdvhfCHIGLTIX7AfMjT9CCL_iuJq1I-V9LEUA,603
180
184
  astrbot/core/utils/dify_api_client.py,sha256=RAKS3zjSl3nmhlNPCzN-byJZyZcwE6GR-8xZ9wzc-yE,5590
@@ -212,8 +216,8 @@ astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHE
212
216
  astrbot/dashboard/routes/t2i.py,sha256=scp05AxoJM9cubrkSMBu1BbIWP1BMS50eFEPZ9S6WKM,8893
213
217
  astrbot/dashboard/routes/tools.py,sha256=FvWgjzImgeIGFWJM_r2tku3UTj0J5LwZXfmZJxfJWHM,13975
214
218
  astrbot/dashboard/routes/update.py,sha256=vhG6ET0GJNLTpfkKABYf3Aq5ChUCID1BvoZissWRBZg,6517
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,,
219
+ astrbot-4.1.5.dist-info/METADATA,sha256=ygr7ONOnIvGfoPO1sDwZ9VsCHpstUSvPl3dRdVBHQSg,11043
220
+ astrbot-4.1.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
221
+ astrbot-4.1.5.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
222
+ astrbot-4.1.5.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
223
+ astrbot-4.1.5.dist-info/RECORD,,