AstrBot 4.8.0__py3-none-any.whl → 4.9.1__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 (106) hide show
  1. astrbot/cli/__init__.py +1 -1
  2. astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1
  3. astrbot/core/agent/tool.py +7 -2
  4. astrbot/core/astr_agent_tool_exec.py +5 -1
  5. astrbot/core/config/astrbot_config.py +4 -0
  6. astrbot/core/config/default.py +72 -1
  7. astrbot/core/config/i18n_utils.py +1 -0
  8. astrbot/core/core_lifecycle.py +1 -1
  9. astrbot/core/db/__init__.py +2 -3
  10. astrbot/core/db/migration/migra_3_to_4.py +2 -0
  11. astrbot/core/db/migration/sqlite_v3.py +6 -4
  12. astrbot/core/db/po.py +16 -15
  13. astrbot/core/db/sqlite.py +4 -3
  14. astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +2 -0
  15. astrbot/core/event_bus.py +6 -1
  16. astrbot/core/knowledge_base/retrieval/manager.py +5 -1
  17. astrbot/core/log.py +2 -1
  18. astrbot/core/message/components.py +9 -3
  19. astrbot/core/persona_mgr.py +2 -2
  20. astrbot/core/pipeline/content_safety_check/stage.py +1 -1
  21. astrbot/core/pipeline/context_utils.py +2 -1
  22. astrbot/core/pipeline/process_stage/method/star_request.py +1 -2
  23. astrbot/core/pipeline/process_stage/stage.py +1 -1
  24. astrbot/core/pipeline/respond/stage.py +8 -2
  25. astrbot/core/pipeline/result_decorate/stage.py +89 -22
  26. astrbot/core/pipeline/scheduler.py +5 -1
  27. astrbot/core/pipeline/waking_check/stage.py +10 -0
  28. astrbot/core/platform/astr_message_event.py +5 -3
  29. astrbot/core/platform/astrbot_message.py +2 -2
  30. astrbot/core/platform/manager.py +4 -0
  31. astrbot/core/platform/platform.py +11 -3
  32. astrbot/core/platform/platform_metadata.py +1 -1
  33. astrbot/core/platform/register.py +1 -0
  34. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +8 -6
  35. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +9 -5
  36. astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +24 -16
  37. astrbot/core/platform/sources/dingtalk/dingtalk_event.py +5 -2
  38. astrbot/core/platform/sources/discord/client.py +16 -4
  39. astrbot/core/platform/sources/discord/components.py +2 -2
  40. astrbot/core/platform/sources/discord/discord_platform_adapter.py +52 -24
  41. astrbot/core/platform/sources/discord/discord_platform_event.py +29 -8
  42. astrbot/core/platform/sources/lark/lark_adapter.py +183 -20
  43. astrbot/core/platform/sources/lark/lark_event.py +39 -4
  44. astrbot/core/platform/sources/lark/server.py +206 -0
  45. astrbot/core/platform/sources/misskey/misskey_adapter.py +2 -3
  46. astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +62 -18
  47. astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +13 -7
  48. astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +5 -3
  49. astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +2 -1
  50. astrbot/core/platform/sources/slack/client.py +9 -2
  51. astrbot/core/platform/sources/slack/slack_adapter.py +15 -9
  52. astrbot/core/platform/sources/slack/slack_event.py +8 -7
  53. astrbot/core/platform/sources/telegram/tg_adapter.py +1 -1
  54. astrbot/core/platform/sources/telegram/tg_event.py +23 -27
  55. astrbot/core/platform/sources/webchat/webchat_adapter.py +2 -2
  56. astrbot/core/platform/sources/webchat/webchat_event.py +2 -2
  57. astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +26 -9
  58. astrbot/core/platform/sources/wecom/wecom_adapter.py +25 -28
  59. astrbot/core/platform/sources/wecom/wecom_event.py +2 -2
  60. astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +3 -3
  61. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +30 -25
  62. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +10 -7
  63. astrbot/core/provider/func_tool_manager.py +3 -3
  64. astrbot/core/provider/manager.py +130 -74
  65. astrbot/core/provider/provider.py +12 -1
  66. astrbot/core/provider/sources/azure_tts_source.py +31 -9
  67. astrbot/core/provider/sources/bailian_rerank_source.py +4 -0
  68. astrbot/core/provider/sources/dashscope_tts.py +3 -2
  69. astrbot/core/provider/sources/edge_tts_source.py +1 -1
  70. astrbot/core/provider/sources/fishaudio_tts_api_source.py +5 -4
  71. astrbot/core/provider/sources/gemini_embedding_source.py +15 -5
  72. astrbot/core/provider/sources/gemini_source.py +12 -10
  73. astrbot/core/provider/sources/minimax_tts_api_source.py +4 -2
  74. astrbot/core/provider/sources/openai_embedding_source.py +2 -2
  75. astrbot/core/provider/sources/openai_source.py +4 -0
  76. astrbot/core/provider/sources/sensevoice_selfhosted_source.py +5 -2
  77. astrbot/core/provider/sources/vllm_rerank_source.py +1 -0
  78. astrbot/core/provider/sources/whisper_api_source.py +1 -1
  79. astrbot/core/provider/sources/whisper_selfhosted_source.py +6 -2
  80. astrbot/core/provider/sources/xinference_rerank_source.py +10 -2
  81. astrbot/core/star/context.py +2 -2
  82. astrbot/core/star/register/star_handler.py +22 -5
  83. astrbot/core/star/star_handler.py +85 -4
  84. astrbot/core/updator.py +3 -3
  85. astrbot/core/utils/io.py +1 -1
  86. astrbot/core/utils/session_waiter.py +17 -10
  87. astrbot/core/utils/shared_preferences.py +32 -0
  88. astrbot/core/utils/t2i/__init__.py +2 -2
  89. astrbot/core/utils/t2i/local_strategy.py +25 -31
  90. astrbot/core/utils/tencent_record_helper.py +1 -1
  91. astrbot/core/utils/version_comparator.py +6 -3
  92. astrbot/core/utils/webhook_utils.py +19 -0
  93. astrbot/dashboard/routes/chat.py +14 -9
  94. astrbot/dashboard/routes/config.py +10 -20
  95. astrbot/dashboard/routes/conversation.py +91 -1
  96. astrbot/dashboard/routes/knowledge_base.py +253 -78
  97. astrbot/dashboard/routes/log.py +13 -8
  98. astrbot/dashboard/routes/platform.py +1 -1
  99. astrbot/dashboard/routes/plugin.py +113 -52
  100. astrbot/dashboard/routes/route.py +2 -0
  101. astrbot/dashboard/server.py +6 -3
  102. {astrbot-4.8.0.dist-info → astrbot-4.9.1.dist-info}/METADATA +9 -1
  103. {astrbot-4.8.0.dist-info → astrbot-4.9.1.dist-info}/RECORD +106 -105
  104. {astrbot-4.8.0.dist-info → astrbot-4.9.1.dist-info}/WHEEL +0 -0
  105. {astrbot-4.8.0.dist-info → astrbot-4.9.1.dist-info}/entry_points.txt +0 -0
  106. {astrbot-4.8.0.dist-info → astrbot-4.9.1.dist-info}/licenses/LICENSE +0 -0
@@ -8,7 +8,7 @@ astrbot/api/platform/__init__.py,sha256=HXvAy_KLtOJspoGVgDtLa7VjIZoF6WK3Puww55yy
8
8
  astrbot/api/provider/__init__.py,sha256=mJVcon0snjn_xYirk2hntwba6ymIYYC-ZKKmxvx-jok,379
9
9
  astrbot/api/star/__init__.py,sha256=OxgHGtWn3lEQGjb4twbpbWnRepUevPu7gxtDAkAsfhQ,250
10
10
  astrbot/api/util/__init__.py,sha256=L1O_mFEUDk8V4lEPsT5iiNbIiOVh7HbrNmitqzUWMZg,180
11
- astrbot/cli/__init__.py,sha256=NsvNfym-LKhyklkaZu-iwzlvcIWUdbdxxglpRMhC1TU,22
11
+ astrbot/cli/__init__.py,sha256=JZbUVuK1a1sqW03f1UPq7rbyr4VMkIHEraOfwjZuKEg,22
12
12
  astrbot/cli/__main__.py,sha256=QobgMyFoLNTgI_OYddhGOZ9ZvQeBVjjz79mA2cC2OEU,1758
13
13
  astrbot/cli/commands/__init__.py,sha256=eAgppZQIqFO1ylQJFABeYrzQ0oZqPWjtE80aKIPB3ks,149
14
14
  astrbot/cli/commands/cmd_conf.py,sha256=6-YLicBt_zjWTzaVLUJ1VQLQPbDEPYACB9IVnN8Zvng,6330
@@ -23,19 +23,19 @@ astrbot/core/__init__.py,sha256=zsaF9IeON4NaHk_Ktr0eB7xQEFC5tUZ4UJCesC3-KHM,1220
23
23
  astrbot/core/astr_agent_context.py,sha256=bgSbB-JgK_ncK-H2cxj-Ox0Gt_D8X4QmrgbalL9Hgzs,618
24
24
  astrbot/core/astr_agent_hooks.py,sha256=QOMtBaamDRiylGIby5D5ApThk94Y_Dcy4gDnhPBHXKo,1073
25
25
  astrbot/core/astr_agent_run_util.py,sha256=56ZhPrC16E34dbQzxNl3yhbgrQaF2Az5sYllQ6o6aDc,3741
26
- astrbot/core/astr_agent_tool_exec.py,sha256=jNaUEYJHJ42BT8DveBQ1YZ3lbcpq1LH3eGM6l-Lde60,8847
26
+ astrbot/core/astr_agent_tool_exec.py,sha256=KnUP1q0k_pOWT3krw8leH53G7QTnapDjMlXH-LnI-xA,9005
27
27
  astrbot/core/astrbot_config_mgr.py,sha256=SUvusfo8Qk89eNpEmduWcXuczJ9g5TBH-VOV69ax28g,8950
28
28
  astrbot/core/conversation_mgr.py,sha256=GsirCeMBmgxyaOb3hYNleF_11yyFyAER5PtpM3IUvIQ,15765
29
- astrbot/core/core_lifecycle.py,sha256=tkWPegbCZbBwabrHeA3OQ9mMXN3Y8zp0G4ws7GEDF8E,12664
30
- astrbot/core/event_bus.py,sha256=0rABGmFd01B5q972HS_2LQ5OFxd6iPLSyM9FbPKIgcg,2540
29
+ astrbot/core/core_lifecycle.py,sha256=ostfEUzhxaU1tancA6D88blXZ5gFcYj2OQoxWG1AWmo,12680
30
+ astrbot/core/event_bus.py,sha256=5Lg5L0UcwcJeL9NuX7DiTSRR7fr2IoaSbR6ECDKD4K8,2729
31
31
  astrbot/core/exceptions.py,sha256=GVCUgAjpvUHLL59MkJalFrSp_HbtliChu7XII_Px2WM,219
32
32
  astrbot/core/file_token_service.py,sha256=8X0Qyo-NPGhtxy6IcRsJg7Z2tx_ULPf_7OKvw-KBk6o,3317
33
33
  astrbot/core/initial_loader.py,sha256=q798G8wEti7-p3UC0y1GB3MOK-kO6z1Nt826iO5nJVA,1802
34
- astrbot/core/log.py,sha256=768CcnBvuL1vTWUw9sevqvuFm3nmogJjL2kCQMLo0xE,8523
35
- astrbot/core/persona_mgr.py,sha256=ed29GL0oWDy4kYCwxifyO-FLZjDjiJMuxYGUY0nuwAg,7420
34
+ astrbot/core/log.py,sha256=MQ249OPPudl-X8FQrs22IBR1lhPl4q8EdSvHy1K_EH8,8532
35
+ astrbot/core/persona_mgr.py,sha256=g6Xzhrvlvk9YRrcPNEpevHiCa6GVfut9NoKX7PRNmXM,7434
36
36
  astrbot/core/platform_message_history_mgr.py,sha256=0frxrq6Bt18OXbt24uRnQl039wpi2gK5L9ONLtBuMsM,1580
37
37
  astrbot/core/umop_config_router.py,sha256=PpCZ_SoQ6yXfgCJQiAVtuXYoowhEt2J-lCflHxNPoD0,3642
38
- astrbot/core/updator.py,sha256=fP7PxLAl7dCIqUjNKnPJu93LuOr8GnoDrGRdTZhrvyg,4645
38
+ astrbot/core/updator.py,sha256=-F9elTgp4UwCdGEPwUwA0SAMQpouvAruktH4uh6nTwY,4666
39
39
  astrbot/core/zip_updator.py,sha256=xBCtHl7XnlMksnS79e8j-FonfB3Lvs95rTmwoo1Z1T0,8824
40
40
  astrbot/core/agent/agent.py,sha256=wquvKo18JcsJM56dwKyFFAoGhc5qLyQaeqdZ-LlZsWQ,366
41
41
  astrbot/core/agent/handoff.py,sha256=AxO0yx4Uscy0CO-3Q3fvDOfpfr3gUscLRplH7gH7-Lc,1194
@@ -44,33 +44,33 @@ astrbot/core/agent/mcp_client.py,sha256=u52GPgpeZ1DCCVbI6x4kOGyodD_kweB8H1OgaVg-
44
44
  astrbot/core/agent/message.py,sha256=lSP67PoDzzcwcu_R0vcqVcTsnLmpn8SlV_Gkg3pzRRc,5931
45
45
  astrbot/core/agent/response.py,sha256=ddJABXu03Uw3b-YGTvRafFLJEGa40o93pIEz_CRTb4g,261
46
46
  astrbot/core/agent/run_context.py,sha256=h-teucYKYi5o4oTbAsIlkaa04yn2OSNC-ahIF2n6cwE,719
47
- astrbot/core/agent/tool.py,sha256=3F-zcADIJkACNljrlDJBZZCJwqhxFkfpgoKvg5v0TQM,9276
47
+ astrbot/core/agent/tool.py,sha256=ITSAmYBp2y-QPWdZkc-KXof3UIHjQ2rmweyUPuYykFA,9440
48
48
  astrbot/core/agent/tool_executor.py,sha256=8GGgVB_JaKGVLQUG1epeL-lvKMqgfQ7mJaOPnVytnXo,438
49
49
  astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
50
50
  astrbot/core/agent/runners/base.py,sha256=OHMt15x1C3O_F3EJI2Nb_3hwggGUkJHuPWWCa1kHX9o,1885
51
- astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=vGyr1wpQJtA7vM5utwwDYAf0elh9FVKpxtKBgmzO_e4,16527
51
+ astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=0DkkaaQPvwU7fOfeiuPodJpV5FKaXNQnNAFsy_gbsCo,16470
52
52
  astrbot/core/agent/runners/coze/coze_agent_runner.py,sha256=bc2GImNsBTyXuotl_ohKYiNqws5Dkcms_xmIoUtDJMM,13846
53
53
  astrbot/core/agent/runners/coze/coze_api_client.py,sha256=0k8pQsFsbjKdF-jkY91qZWsC8YSaSmwC98TMTK-zqw0,10853
54
54
  astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py,sha256=xr3otT0o6kHEy_sWjUv4xh-KmES3fjlowIPrtcKYiVI,13339
55
55
  astrbot/core/agent/runners/dify/dify_agent_runner.py,sha256=LYwpjOcBWf3XlwNVzrDvM4Kg8TK9SHSDtWmHcnmIlj0,13213
56
56
  astrbot/core/agent/runners/dify/dify_api_client.py,sha256=OXukDVgNx3VmYw6OCzjXyP8JmDWEFuy81sD9XnC4VRo,6530
57
57
  astrbot/core/config/__init__.py,sha256=vZjtpC7vr-IvBgSUtbS04C0wpulmCG5tPmcEP1WYE_4,172
58
- astrbot/core/config/astrbot_config.py,sha256=nGyvHyR9VJH9Pk0XKYyeDFVxjwbyVb9u0lIsuvpe3fg,6276
59
- astrbot/core/config/default.py,sha256=rxu9K4q0AHKyIhqrpdgFaxTWdCaeg31u-_67KxSvHk8,148807
60
- astrbot/core/config/i18n_utils.py,sha256=T2uLmhx1nohJIou14QQBjb2TSvdxDxtfUjVHpwy13z0,3841
61
- astrbot/core/db/__init__.py,sha256=XQPI0WFBpzkNyGFnNKLVGZGaiStnhXKlncEWvt1FTv8,11214
62
- astrbot/core/db/po.py,sha256=zFv5eU4tuM6E4ehGzugHnszWl6VBpS_rcD9IjjjkhXE,9398
63
- astrbot/core/db/sqlite.py,sha256=-2KfIMJM588qBWukFlDEn3PSPfnLyy--STJmIqGwtUo,32189
58
+ astrbot/core/config/astrbot_config.py,sha256=6bUTnMCOyaS8s6ELsWctDfUFTB53fKJQNu272dZXkdU,6347
59
+ astrbot/core/config/default.py,sha256=S4thwolOxQs0IDgFHmHPoLS57YgfN1I4SHwovHF2SJk,152197
60
+ astrbot/core/config/i18n_utils.py,sha256=HJn_0XeeVS9ryCBelYfnc0nEn10LlX702fcSSFrF1J8,3879
61
+ astrbot/core/db/__init__.py,sha256=Z3NMgMbxvxZyf5hroO9Kvn2TPKEoL2X21CTW96gzGLE,11200
62
+ astrbot/core/db/po.py,sha256=KIvtPCjf1i9IGOWXyhNKvxzEXmsfopfa7G0UaG98Ams,9313
63
+ astrbot/core/db/sqlite.py,sha256=bXXyA0RwgZTlwEZ6Uh4KSGMUyA3jamvkLVVcbF5K_ow,32274
64
64
  astrbot/core/db/migration/helper.py,sha256=Kogq0FLJdvWTDuAVWLT1PlTGGJcWkDMWO37KM-G8lTk,2087
65
- astrbot/core/db/migration/migra_3_to_4.py,sha256=hNn_tMququot1qUg3cx_nzxODxcZSlf4M_7YtBgKl2o,15277
65
+ astrbot/core/db/migration/migra_3_to_4.py,sha256=AZkywKcS2aKo81k04uD2qxHsPqKWRfVz9smEnHDxWqE,15343
66
66
  astrbot/core/db/migration/migra_45_to_46.py,sha256=wQk8NUiCNgmpSczO9U-OW6mMRHPWtJDlKuTCOGF8-WY,1560
67
67
  astrbot/core/db/migration/migra_webchat_session.py,sha256=KN2MaT4RPgaHuwQMGoSR_h6hPGEnPbuy_sVlVISgyuE,5251
68
68
  astrbot/core/db/migration/shared_preferences_v3.py,sha256=91zq_MrdAMF1MH5fxLaFkZO19nPNIW4gwqCCRn9u2dQ,1241
69
- astrbot/core/db/migration/sqlite_v3.py,sha256=pBBS5UemoVqus0aLJ5avqb3HgoN-b_S4fN5m4tBVf_U,15051
69
+ astrbot/core/db/migration/sqlite_v3.py,sha256=8G0_gAP5Lj6LaB0iiWhRUbcQQnhhDZ2w2-RUesbvm4o,15084
70
70
  astrbot/core/db/vec_db/base.py,sha256=0YxoCPNj_zVprLMamUj-OkUHJDlywIfdN8Q0Kpslm3A,1759
71
71
  astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=S3gwB-ZL9aPJwDM5ia8a_t-xsfANKoslpJvtNd5ErcU,57
72
72
  astrbot/core/db/vec_db/faiss_impl/document_storage.py,sha256=uR-Po1rSaANbZkIdOfo8QAwS0dcH0x4iRvnqNn80tis,13234
73
- astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=c4jk0y3tVsGBVI3I-xnUaX46WlwlEshNFKpl0TF8rI8,2929
73
+ astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=39DXHWufQXnglS1Czbvzm-Vcy0faY_rdcyj-Hq3F3qE,2979
74
74
  astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql,sha256=RiF1mnAFAHtyThOsS0qjvniUF5t9Y8k-gjSlh51p2x8,681
75
75
  astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=gZEXdHLIKx0aroD62RZjdY_L7-Twi9VrM594VlSkTuY,7094
76
76
  astrbot/core/knowledge_base/kb_db_sqlite.py,sha256=fkFqBZ1qjrPJoKjAzlckIdJriv5ky_ANQx2GIZqUSY8,10993
@@ -91,77 +91,78 @@ astrbot/core/knowledge_base/parsers/url_parser.py,sha256=q5vJQl8bscJKUtaNIHHGt4w
91
91
  astrbot/core/knowledge_base/parsers/util.py,sha256=YKtNg98vDv0d8F-RuGtkNUAYO_aQAWz2DlsVGaIMDig,396
92
92
  astrbot/core/knowledge_base/retrieval/__init__.py,sha256=Ou7mqN32YqKB99RHZTAqFHxN6ZpootzLtzUZe-Kjtw0,326
93
93
  astrbot/core/knowledge_base/retrieval/hit_stopwords.txt,sha256=8LikiRxpjLdAfJYyOQ2tUUPM9wEEZ0y3Mh_XXsxAeug,5271
94
- astrbot/core/knowledge_base/retrieval/manager.py,sha256=m_aphslIVJE8f7t9M9K32vS8-Ll4BO0Chnd0zdQae1M,8417
94
+ astrbot/core/knowledge_base/retrieval/manager.py,sha256=1kjjcBco_TdfZ1g6mEp7lb9AVkHr1dfBHVqgWVAiBsw,8560
95
95
  astrbot/core/knowledge_base/retrieval/rank_fusion.py,sha256=OeE4dSAsmyCt_ssAnMf7CQ4tQHlBFxjePgXVf_YwHmY,4441
96
96
  astrbot/core/knowledge_base/retrieval/sparse_retriever.py,sha256=sOCZ9I636j3P5WGxjKXVu7Amp-2DB9jQVQn96Ff7asI,3815
97
- astrbot/core/message/components.py,sha256=Cq8G8XsCY2PePvpCTCDbmaY4P8SSaMimb8nox8ZxUts,25707
97
+ astrbot/core/message/components.py,sha256=yePOJ9Gbidj4TVb5jHMIEJOCJPtFk9IDvIsHW8pNT5M,25918
98
98
  astrbot/core/message/message_event_result.py,sha256=1jC6NLeO7lzcTCi2NO28057sWpTsDabICkmGsiggyhk,7204
99
99
  astrbot/core/pipeline/__init__.py,sha256=nEepE3tnYYo0EYnzdLLyrp_k7XYg0LpQ3W6QuEeGL6k,1461
100
100
  astrbot/core/pipeline/context.py,sha256=jfEyX9i34XM7uqeqqK6rKRDgBXfsV9UHgRpf9Wj_hnI,505
101
- astrbot/core/pipeline/context_utils.py,sha256=3kos5YRBzHnOjr_ASw-rkYVpusCa2V9tlWvnw5tqoXM,3567
102
- astrbot/core/pipeline/scheduler.py,sha256=u96IOXoSpTOMj_X5z5Hnaz4Fwa8Nyl-P3qJauuqcQR0,3305
101
+ astrbot/core/pipeline/context_utils.py,sha256=QAtlRPvPTAzVkzqlP3bhOkQmdd1ZTU12l9vPNUROf2k,3663
102
+ astrbot/core/pipeline/scheduler.py,sha256=h6dwQBaZS6h4ou3EyxPWD0LMJLpS1x6KnFq8U-fTVPY,3498
103
103
  astrbot/core/pipeline/stage.py,sha256=hpzghbberezaBJtb2cwhY8x0xi6lZrgWfD2BYv-te1g,1350
104
- astrbot/core/pipeline/content_safety_check/stage.py,sha256=4C3k9wMXirIbyDNvUazPnbMKo6u0PZqnaDX9LKVdCiU,1396
104
+ astrbot/core/pipeline/content_safety_check/stage.py,sha256=wzHadhasKyYswVXfRJ_8My6S3mo_0Xjm6DF95TxD57g,1389
105
105
  astrbot/core/pipeline/content_safety_check/strategies/__init__.py,sha256=47gYlyvW-Dr401fO0dMAAAmMXnSkTI63MnYak3GGvNw,164
106
106
  astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=-DvF8O9dZ7PDzRtQwYmIJfYHz1aA5C_gKafGw9IVgYs,1005
107
107
  astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=N3bR19Deb3a-DOE-3hiuogsC068uYNL25fCe9BVkKKA,905
108
108
  astrbot/core/pipeline/content_safety_check/strategies/strategy.py,sha256=XM2c-6apssEtAllMAI6BUXaEN_t2XINHcCoAudeKNwc,1206
109
109
  astrbot/core/pipeline/preprocess_stage/stage.py,sha256=BFaON3u4MrQUXp0ZXETU5MIvN_w0p0KJDNc9D7Y3qsY,4202
110
- astrbot/core/pipeline/process_stage/stage.py,sha256=J01Xg8sNFFGU4Z6dZy6jJcQnwXfdop0X8hnwdb_DwEs,2419
110
+ astrbot/core/pipeline/process_stage/stage.py,sha256=tOg6HYGVU1GoY921YBYVO1MTM7a55M0N8uB9tOoTomg,2406
111
111
  astrbot/core/pipeline/process_stage/utils.py,sha256=q4V5G0PZD5b5mPh1lM-6w79LKGpp7RR7-PqYFhWpopM,4061
112
112
  astrbot/core/pipeline/process_stage/method/agent_request.py,sha256=GlGrGCsCASC4a3PpG6Oc1907aLdl_PrUMXrFiEiEEzc,2043
113
- astrbot/core/pipeline/process_stage/method/star_request.py,sha256=icx3zkXLHDtX4SU5soe0UiOLgJjYW6ehoSBpMYSEE8U,2508
113
+ astrbot/core/pipeline/process_stage/method/star_request.py,sha256=C-PTq_Wpq4QMS2ecfRDCcDSX3rYyldfsAN-jAaEEb-w,2430
114
114
  astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py,sha256=sDU4b85nV7LswGngFeYOG9VUv-BRR7gufy00ptU_Utg,21175
115
115
  astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py,sha256=LNBRItSpZn0MLP4fyHQ_3gUJ8lnmCwuPlqnZDVFLI6Q,7332
116
116
  astrbot/core/pipeline/rate_limit_check/stage.py,sha256=9EVJ0zYtxATFsj7ADyWDYcSGBRqmrMiKWp1kkD9LONI,3962
117
- astrbot/core/pipeline/respond/stage.py,sha256=im_UrME-g-YOk9TnrDFzFeYIvzZsGBy9BDCAp5PXuNM,10738
118
- astrbot/core/pipeline/result_decorate/stage.py,sha256=RF5YGPmH7aOUk_PcBg8lJ_Dz9-lPjgikekT5IdyLj-8,14626
117
+ astrbot/core/pipeline/respond/stage.py,sha256=G3GgABvDmN-ClrDbFVOFsaeENWnptOr0xzX0NxmXbjY,11038
118
+ astrbot/core/pipeline/result_decorate/stage.py,sha256=Ml7_E5P2YpGLHRc9aIBbL2gylLNsRuQqwxejEgPaIoo,17318
119
119
  astrbot/core/pipeline/session_status_check/stage.py,sha256=cFp6MMdFzeURjmW5LCrzsTGD_hnJN5jhDh_zoPbnFAw,1291
120
- astrbot/core/pipeline/waking_check/stage.py,sha256=V1xr7aGcYh8JoSNnR86_YAA2XZTJfjp2HKmYVM4tCLs,8280
120
+ astrbot/core/pipeline/waking_check/stage.py,sha256=u4s-UACcyFhydAbFKutvh1T4Aw6wdUyI_OU2hgCLiao,8650
121
121
  astrbot/core/pipeline/whitelist_check/stage.py,sha256=x6o4oswIvVtHFRbuKuLFoyFEgx-gSo3IMGYvopu8d9A,2411
122
122
  astrbot/core/platform/__init__.py,sha256=5Hhb2mIb8mS2RWfxILIMuV03XiyfqEbn4pAjvi8ntl0,361
123
- astrbot/core/platform/astr_message_event.py,sha256=UzGNg7mVLufPC2iDJpXFxdEM0g-Gb1QKtM4BojRlJlQ,14657
124
- astrbot/core/platform/astrbot_message.py,sha256=PmrszCZE98wLtrqV9qldjsTiWSOWP-aVORBHje8voOI,2656
125
- astrbot/core/platform/manager.py,sha256=ucjMuRE9pH9qmZg0ffVCUdNXz_zzVucJSsyd2KY2ftI,10271
123
+ astrbot/core/platform/astr_message_event.py,sha256=At8sT8cBrlPSZoozNsw9Bn31dpMjBXGxkwyZMERRtOQ,14746
124
+ astrbot/core/platform/astrbot_message.py,sha256=kdoiyZoCaH3iVua4pvKw7HHlfVpVB4bI36UeqYX1o38,2670
125
+ astrbot/core/platform/manager.py,sha256=s8hcV_DjUej9g8KuyV0IJHiN5Gl69GfTHNnG16CKwbw,10499
126
126
  astrbot/core/platform/message_session.py,sha256=AGI-fAyish5VYfIQf0dg2J3HZbiYPzpPMdAwBODzc1M,1089
127
127
  astrbot/core/platform/message_type.py,sha256=uGn5KN8B_7b9F5nFTpvLAXRlXx2VFHP3JmJjN8cC7fg,261
128
- astrbot/core/platform/platform.py,sha256=1e6eT8GidKDmGQz32oKOi37vy_wn2jiHs_ruMej7Rmw,4808
129
- astrbot/core/platform/platform_metadata.py,sha256=b10aFNvC9HFYBJbedlaUxerLUyeVAOqvVksh2yE-s-M,707
130
- astrbot/core/platform/register.py,sha256=KiAMpiuEP6H5RwR9ItOgQEth02urvasKhObjiy5X-Hc,1956
131
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=wuHJZu_Q86KQ83vaj_V-t3u5P7JIBURNtnFmYfCU4wM,8080
132
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=PkNsQwIZTn_JWGNUo0GX7fQtilmCcIHXUNa5y9CQdAw,17778
133
- astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=SzM0jzHifjMefUzajHwCOelcc10hIG0wei7qldfUNAs,9195
134
- astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=Ph8AP03qct0dFDHKB1be0VY8Slxe9yiwqMsd7Zhpvas,2696
135
- astrbot/core/platform/sources/discord/client.py,sha256=dYu9ANCMeI9nY1K2FRquPOwTe1xLWHuVYslSLXoXNkY,4622
136
- astrbot/core/platform/sources/discord/components.py,sha256=sh0vvqKcO1a293XNApcA-olunPTHbVWFauq-Nwvj-o4,3957
137
- astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=IVH__tOPs0YESDQtzaSNxcCuXtjTQx4vqD7WSgpuz3w,18573
138
- astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=u6OE7TTW1VTqaWcd0t7uvwwttZk1qWkGGU9ycftu-UQ,12594
139
- astrbot/core/platform/sources/lark/lark_adapter.py,sha256=smpLmSeehm8D17K6NHnE3GU_ecIOxBVDbYflUZRKzVY,8314
140
- astrbot/core/platform/sources/lark/lark_event.py,sha256=bK6575i7SnkkKeYfegcod3Z_eo0fLoOzFzi53UbSDww,5198
141
- astrbot/core/platform/sources/misskey/misskey_adapter.py,sha256=U233A004cUSa580xO9bOirj3gYBu-YxwDMGZAT6jAaQ,29648
128
+ astrbot/core/platform/platform.py,sha256=U2jq248bfPaAcIa8PUO5aiPyAOGIN1lz6LVnqQOPFik,5114
129
+ astrbot/core/platform/platform_metadata.py,sha256=PCqNk-H-V7BtiQXbbyHd84s43BBIZNhUQ9X-SVKP3uM,693
130
+ astrbot/core/platform/register.py,sha256=ptIPhVvbzODuWwXr8J0jJSzSPfv3rr7F67gXqvIpvvk,1985
131
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=ycNdNPKUnBJ3hJuDn_S8GM_W7XFbhumpotM8yqcOrqg,8146
132
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=wR8aTS_GJdTM5o73YJOzsjQP34miSJ_gM-Z3nwS3dB8,17914
133
+ astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=FBlNB7BpwGIp0frGNY45seep4hV06fPmckfOH7qFS58,9558
134
+ astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=01If6T-YJqlCfmyIh6UO668LA1f5EKUqeoZLVYkxds0,2850
135
+ astrbot/core/platform/sources/discord/client.py,sha256=YGrUSopQKDRFfzjCdcBQm-EcNWonBwAgXzW678G0e_c,5181
136
+ astrbot/core/platform/sources/discord/components.py,sha256=qKcGssKA3vBLHpad0g96KMD722Ng5jYKgpQBGQFOPX8,3971
137
+ astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=rnHqOrCGCeZ0JzCKj335zjuWMqDNAJ0k8jnpjWqWmoo,19554
138
+ astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=nVuqZtoF2Vl3Bo5-rik1YFJZz892qkj30T0qCdVSB9c,13332
139
+ astrbot/core/platform/sources/lark/lark_adapter.py,sha256=9rDfS_zcsdCODa43WJNiHByPYC_SoVBOjKxhV-viY3Q,14079
140
+ astrbot/core/platform/sources/lark/lark_event.py,sha256=0H1TR-ajktyRhjLxY6-Xf8x7Zkc-2wfz4c-EeBEEOrc,6422
141
+ astrbot/core/platform/sources/lark/server.py,sha256=athZuUArNqlpCV6_KDkv7AQrYbh7Z99gThN1ZsCvMeg,6385
142
+ astrbot/core/platform/sources/misskey/misskey_adapter.py,sha256=JTPcBhCtray4rCk924X8ruy6mL7jPzUsVX0f3vzoO0E,29614
142
143
  astrbot/core/platform/sources/misskey/misskey_api.py,sha256=YlE1zxHs0dPWJVuVsWR0Lr0d9TPQmnTwsLCQKI4p6Gk,35905
143
144
  astrbot/core/platform/sources/misskey/misskey_event.py,sha256=2PYSU9arxzbS71jz5D__3maFFNKqxYZiGmXtLuC_aAc,6550
144
145
  astrbot/core/platform/sources/misskey/misskey_utils.py,sha256=KEzX-_5-EfzKmLdcrZyQiUR09NHXDT0A6v3DrDp3fyk,17859
145
- astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=PkHUWMzspzywOAtFipUNN1oxnBwc9yHBdeL4yHGcdhw,12431
146
- astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=anKpo0AuTSPOD5nWrFobirein02DWVKTipv8MPh5xhI,7392
147
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=UYYrPwT2oTCzWr8xB0Lre4JzQT6EfU22RkpzXQ0bHhA,5700
146
+ astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=cfUsFRmm18-5RvMeYTXl2A3_-Me4sxb1vrjODrbuG4o,13725
147
+ astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=Qk2Pg-CvHYhhJGabft-aFFMXHp1FuAGitNo4EHPYXsw,7572
148
+ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PNQQ9kNvaigG8iE48ZpJ2Y057u0fF1lMkIF8elSWjqQ,5752
148
149
  astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=vqifw9itvrcr7sV9cL0T19qLZ7I9CWORi4oUBgZrOqc,501
149
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=fjKFuJtCZocC944HIGXdPwKhVUffmQeg_7Cwx1JhYEQ,4183
150
+ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=oV5l58IcE732c3Y7lBfJpro52dahC5scPP_SNqEMmg4,4219
150
151
  astrbot/core/platform/sources/satori/satori_adapter.py,sha256=_pJN4CJE0WH6tI12Q4FEiXxIC6pJ74vyfFrzaJ9bs3s,28043
151
152
  astrbot/core/platform/sources/satori/satori_event.py,sha256=agI9FYUwBZM2CnxPANxDOw9vnRqPQSCGZi6UK5UVrdA,16183
152
- astrbot/core/platform/sources/slack/client.py,sha256=w8yp1M2VMRIlT-QIC1QBmhtK9QrQN_TRs3Q9zok5O0E,5791
153
- astrbot/core/platform/sources/slack/slack_adapter.py,sha256=kSovVkwPS-zm2lbX0IQssH_fnatNnjHxOhuABeWouaU,17001
154
- astrbot/core/platform/sources/slack/slack_event.py,sha256=VUlnKhmzXWMu3eq6ZLyaaMgb100mcRPJjPU4D0-CDmE,8878
155
- astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=SHB_bF2v7WakDiN8ah3VcV4r48bL3UlbNAsnwRLCGTk,16108
156
- astrbot/core/platform/sources/telegram/tg_event.py,sha256=Xh8IDfSLtjJqzyiZVX05LKT8adm7Q2YPUHHKIZ-rpI4,11641
157
- astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=7H1nDrXQtic9sp5RAc0Th2ClI6c-OSHckPmlheYOdHY,8727
158
- astrbot/core/platform/sources/webchat/webchat_event.py,sha256=Vzx_iL2RrtuMedUdbqJhJezzGUMedMcYZKCTGC1X9pk,5475
153
+ astrbot/core/platform/sources/slack/client.py,sha256=JkdC3e12I08cnZv577krfIOlJWW4MdXgdBemVPkPuAE,6039
154
+ astrbot/core/platform/sources/slack/slack_adapter.py,sha256=ZUzAyQsb1ZrgWhZz9hNzoGCZJuTAb_eOW_zk3E08rdI,17260
155
+ astrbot/core/platform/sources/slack/slack_event.py,sha256=Vb4IHuTsRi22PxxjUZ6TKfDg0DpiYBMxAeV8mhMPBTE,8984
156
+ astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=juXvp5iiX39oDs9WoK6SblOtQV1ovb3YJIT-pIRL-bg,16099
157
+ astrbot/core/platform/sources/telegram/tg_event.py,sha256=h70dObgwEPw_5NRHyMA9G06VOOX5v2x_ZX9NndNfMWQ,11327
158
+ astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=CjMpKAqs1DbMhD4irkHS2TwpaYaoKFhLXxR_cfuzjwg,8738
159
+ astrbot/core/platform/sources/webchat/webchat_event.py,sha256=P_nbvvY6rdEAFuFEonV_9zTEELrcJT-CAVtns7GvUAA,5491
159
160
  astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
160
- astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=L6rasmkp2xqJ3nAuMY_Ff-PpGcTag6upvoGEgT5E7ws,40687
161
+ astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=UKXfOwOGW2CtVdx-o4x1VnLXOGSwKgQsUUtQBifM2rE,41511
161
162
  astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py,sha256=pdvKtziixnvNrrk3fhJtUZrfX33LY0X9bV5GPmn4ITA,6574
162
163
  astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py,sha256=n1PZRcNjGN_w1-z2CXcIMZL7oSTprteQpPbJ992Lsu4,6306
163
- astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=j-v8EtADW4XLIZ2pZ3QmJ5bU1hzY4JM3L5nk3RA4YEw,15401
164
- astrbot/core/platform/sources/wecom/wecom_event.py,sha256=hEkZs4v-HkPkZ7O6Sg_OPOdxwx2r8qixQ-k4VDRfB9U,9178
164
+ astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=n0SlqDKoJuH0sPu0rXcvPzXD346l7Vw8lix8mAuPUVI,15608
165
+ astrbot/core/platform/sources/wecom/wecom_event.py,sha256=sCIM1fAfMrEIVeUZzx3sfu77412dcxbgOUt5rI3LEvk,9145
165
166
  astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=eenwV2hmH0j70OfYFsnAw9vukwHYmfF-YTzCym-6JE0,10820
166
167
  astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=__9zR3FCgggRDDwaEUsgfUgvhCtkUE5Uoi4jAuJrVUo,5934
167
168
  astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py,sha256=j6dV8PbpXzB0FNAU6JB4dB_T-aIjiKED4Ig0nBQjmCc,11406
@@ -169,51 +170,51 @@ astrbot/core/platform/sources/wecom_ai_bot/__init__.py,sha256=WOYATxFKjq7ZIU0pf3
169
170
  astrbot/core/platform/sources/wecom_ai_bot/ierror.py,sha256=6F08cRDiy3mbBLuTHgxkKIkgpXTQsNe4vnB4T1WvZe0,792
170
171
  astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py,sha256=T_1JPEUUO_XRxJiCio2BUByVYpKFAgKy5v6CKx75h_M,18394
171
172
  astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py,sha256=ZDLQvAEQztFXgzBAamLWFFC3BPr7jEhcjEGAcqIUd9g,12008
172
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=bo79QZtbxagBb-RhvUXOW4Xsy1deRFmDvAjzAXC-miQ,5228
173
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=vn2g1lXQjzjLIYoAIumekjATLkCu6PKBEo14MYmJQDY,5251
173
174
  astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py,sha256=Vs1cSUe6xM145HPEUCzE5NxVWEUaIcnfx3o5TsNHcjA,4588
174
175
  astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py,sha256=NkQywylnI2xju4yINTYEVgJ6u2Rd_ASfj8V-4vwUpJ4,5936
175
176
  astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py,sha256=6vTeKwrt-zXsA0Lt_7GFk7_J0IXWX-ErVvwK9VC0EDM,5427
176
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=JoNd1-JZFp9ZjrkEPWB3NMs-eRpj7m_8FGRJdrsqkhI,12199
177
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=-LgtbTl5jblNsfSWURRxoj9ncsLlvXcfxKQ7pyMQ6X0,7103
177
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=TC_8-rXSjHqLmim-sAw2thiy8CbK5RwzKP__3rqxb-M,12740
178
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=tGfu6DNsqRCrr8P83VVep3Sh035-esKHTXriDsIOdJA,7233
178
179
  astrbot/core/provider/__init__.py,sha256=0NVyKtTapnrUy0lkXVYWyM5KetwtDwXmTwBzqLG0MA4,142
179
180
  astrbot/core/provider/entites.py,sha256=0eYiQ-xttqFTb3WZR2b1oemdZy3d5sevELvj9FixJtE,388
180
181
  astrbot/core/provider/entities.py,sha256=AwD8KOG8dSlfQXSc1n8gx4xv2vW4niZDiaMoO1Y_dOw,12533
181
- astrbot/core/provider/func_tool_manager.py,sha256=28fOKbpWOxiclwfcNkmP6sHSBlK4cZKwPXyNhFjjXps,21181
182
- astrbot/core/provider/manager.py,sha256=_nXzEqWrOnIq-O845ECMJ79ez0TKQGzVJtRoYX8lCdo,22902
183
- astrbot/core/provider/provider.py,sha256=BED65O2i4X1uArYGqNCHa6Yc_q1zJ5Vljcw_9zkCTDY,11641
182
+ astrbot/core/provider/func_tool_manager.py,sha256=2pBKHAuj-6rITOipHmH8hrs8D4N2bAUx5TcJfUVYtsk,21241
183
+ astrbot/core/provider/manager.py,sha256=NTMcDFqZPRBh-nI7gYkoQdeOovn_Rv4RlwV0QaaIVJQ,25102
184
+ astrbot/core/provider/provider.py,sha256=Jc8oXoj2-W1LP9nEung63IHGVN8LYsaCPb5Gc6jYfRE,11954
184
185
  astrbot/core/provider/register.py,sha256=0WMYrT9vbRjeq-72HD0oRT45kJmeKA96UgSItpTJbX8,1904
185
186
  astrbot/core/provider/sources/anthropic_source.py,sha256=oSd7I8pCGwrmTKMQuxVza0vRNqgQw7nqhMxuZnc9ro0,15586
186
- astrbot/core/provider/sources/azure_tts_source.py,sha256=uhPr4Dja6XANesAmrfZiuINNIlXej0NV7Goo8ahMm14,9387
187
- astrbot/core/provider/sources/bailian_rerank_source.py,sha256=-kxF2XRnQRikGggymOBS2aJHRi8Y-zZgc4ykmred9UQ,7451
188
- astrbot/core/provider/sources/dashscope_tts.py,sha256=GMslnWn9e30c78qHhnMioJrG60nAwSWo3nXsQmISJno,5603
189
- astrbot/core/provider/sources/edge_tts_source.py,sha256=7C04B0voPmQdeaB4u-U5Lip6qN3UAyB_yNPBYHLaxo8,4680
190
- astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=P2N_dkwxx3Kk1uWae1TT4yJShj6i0Q_jTpWT1V_dLQ0,5484
191
- astrbot/core/provider/sources/gemini_embedding_source.py,sha256=XpTqb5rlI5z34FmrdFkpvwkk9BiuyFKcpWm6xQEHpNE,2248
192
- astrbot/core/provider/sources/gemini_source.py,sha256=uUtQozqVv2JNaqt9K7MwKHONRIy4VVxwA2J1ZyFKNMY,31328
187
+ astrbot/core/provider/sources/azure_tts_source.py,sha256=m6zbwJGSddyTlhdD80CxWtWWUISmTSx8CboUbYCUKdM,10086
188
+ astrbot/core/provider/sources/bailian_rerank_source.py,sha256=fsfVqzYMaZHrsPDdJlNRKSnYOYRNwmzl6OuSo-lkF2s,7587
189
+ astrbot/core/provider/sources/dashscope_tts.py,sha256=-qBMwbIt_QSmWCT_uPAxrXSYuEbYJZ3WzjE_FhMhxgg,5629
190
+ astrbot/core/provider/sources/edge_tts_source.py,sha256=dsf6YtSGzCJvas3BqBwHSn8vlMgQ_vgD9NEwngqDlEo,4690
191
+ astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=z5yJuc47iky31N0Za3Li7uwMP15N1gsKJkV9ybIbKew,5556
192
+ astrbot/core/provider/sources/gemini_embedding_source.py,sha256=bj4iXnMyONTyUBmBFeezPcBpjtfX_UBjMrbwMFyCis8,2607
193
+ astrbot/core/provider/sources/gemini_source.py,sha256=_DYVpszBGM-rpNowUDllFPOgNmn2gXCqf5DA4vFGKl4,31525
193
194
  astrbot/core/provider/sources/gemini_tts_source.py,sha256=6LJIT2aTjoZaMszjYRzDu38prsO9G5Xg7SzJmQb2TzE,2880
194
195
  astrbot/core/provider/sources/groq_source.py,sha256=NqmiQn37mrMsaTyGX25eNzMpIgkCifY-5TJO8DFzHaA,456
195
196
  astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=RYQgwCc67N7RWPaODN4sSLJZn6o5gpgk_jF_KaRnD0M,5942
196
197
  astrbot/core/provider/sources/gsvi_tts_source.py,sha256=nGGctfkzrAeTofAvB2b_VNTYHW44SzyO12B-mBWb1rY,2011
197
- astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=qMN6iBR2V145d5BAIkjAa2pVrH5eZOHeWnd8yhemOCY,5837
198
- astrbot/core/provider/sources/openai_embedding_source.py,sha256=26hjOYrQ8eHHPi8wybCubtsY-UOOfGx0qcCxQ3BvjIE,1616
199
- astrbot/core/provider/sources/openai_source.py,sha256=LAP2agr6_-ZmoxVuofTuTAw5p6zapaNZTlMA5prafgc,24277
198
+ astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=oQoRYTU-_MrQqCkdtIF4AEa1HSgtQJgD3prk7Yp7b8Q,5925
199
+ astrbot/core/provider/sources/openai_embedding_source.py,sha256=TMUU7J-uo3KrERr1ZKTjoNK9byEm-IU0UZK5YHM3WpM,1614
200
+ astrbot/core/provider/sources/openai_source.py,sha256=0AmZMIkJy7C_uVsObEPDEoHuxO-fAYpjy6dreCFIvOg,24454
200
201
  astrbot/core/provider/sources/openai_tts_api_source.py,sha256=DVviGQdBpCk6lW3LjnJHzwZr9wGkXRDNwfoQ3FYFVcs,1667
201
- astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=aG7m3HvqSdcTRJcncqFNhyz9D-TVIdjiCbGFQPhDcdM,3819
202
- astrbot/core/provider/sources/vllm_rerank_source.py,sha256=5mZwtOUG1w7AfqQR7AYznxL_L0HVOKq6_T2G0CrNkZg,2316
202
+ astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=99I6OfSUDJDgXCKK__QNk8EaCbX3TElGIbjBY6VJkWg,3900
203
+ astrbot/core/provider/sources/vllm_rerank_source.py,sha256=-aXaIPRIgzzGDA7ev4Nuq4FTBM_qwMPgc5SpMtIWTKI,2355
203
204
  astrbot/core/provider/sources/volcengine_tts.py,sha256=pcw4lXbyyiLqJWRHZEaqKMcp8lYPZsDf4OIH4e5mHOw,4065
204
- astrbot/core/provider/sources/whisper_api_source.py,sha256=mzhTitbxtmEdrQloGvuhVoP_NP_osk-aOLbKPduRqqM,3586
205
- astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=5R7Xwg3gZF6TW-D8WSivd4ZCG6RcLlv7gcHYqxzojEw,2640
206
- astrbot/core/provider/sources/xinference_rerank_source.py,sha256=X3Jm3zB7cGUedsYasDJjiNpOAVleB-5LR4j4DqALd1A,4428
205
+ astrbot/core/provider/sources/whisper_api_source.py,sha256=OuhxXufqL61Qax95P4GcsHg9w3gygXeCljyXqsCvkcg,3582
206
+ astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=I65tuE34UtyVXJP8QblQK5oUnoSW67qghwzW4v9DhLY,2760
207
+ astrbot/core/provider/sources/xinference_rerank_source.py,sha256=DsF4JVlXGeeqqycyP05zz0I-jJ3R1cXiTUsjDeaQNpE,4692
207
208
  astrbot/core/provider/sources/xinference_stt_provider.py,sha256=DPEc7cVo2KXKGIgb8IXKagPH9qpNAdp5gx5PAink0j4,7731
208
209
  astrbot/core/provider/sources/zhipu_source.py,sha256=oOCPXGsR9PLWOuu3h8RSVNRw1Qy2Se6dwmeFR3zk3GM,612
209
210
  astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
210
211
  astrbot/core/star/__init__.py,sha256=ccAN4tGmHjKmMIuL4L0KTFpPz6_uf26yhCj0XQBf2do,2112
211
212
  astrbot/core/star/config.py,sha256=FgrBz_fUrBU0-9BxD8enX-xGNGVbFxst3UT10sboYNA,3531
212
- astrbot/core/star/context.py,sha256=a4jeHhQSx5NpzOmO1kPR5QxeOJEoivx9bsncou_-Wn4,21036
213
+ astrbot/core/star/context.py,sha256=voL-U8XAm-yfQWW_62L5BE1wOn3qaCDstGqvpnWTk9g,21020
213
214
  astrbot/core/star/session_llm_manager.py,sha256=W_ZgNDyUPjMQGccqnK83hFjZvSCv5BLQeyv5fHvRLUw,5307
214
215
  astrbot/core/star/session_plugin_manager.py,sha256=8sEzOxf_Gq-dwK_S-4rwocAFsYzx7Yi4FJuMRttPTac,2830
215
216
  astrbot/core/star/star.py,sha256=Wkf81teNZ27JE_JrENuP0SrpFc2uFYRxHQsWo8R9-No,1826
216
- astrbot/core/star/star_handler.py,sha256=Vv8GW70AUrezB0bjj8AzzdlnqOsX27LTypTlhiYbB-A,4927
217
+ astrbot/core/star/star_handler.py,sha256=LQqM6szmedro_TtAMJRFt3vn8uQtiOM25Af5PmlOHKs,7529
217
218
  astrbot/core/star/star_manager.py,sha256=_oFOYaf8IFhWy2KwRJ6TVVbjoywYLt2imuv5yTAqP4o,40343
218
219
  astrbot/core/star/star_tools.py,sha256=4q8emjyTbyIsVXHmzT88kX9uK28rIhlHc0re40Xm6m0,10847
219
220
  astrbot/core/star/updator.py,sha256=4pl42Ks_yjJ3kydx3BwOqocAczhhFBrRnxhBKh4_0Eo,3106
@@ -227,51 +228,51 @@ astrbot/core/star/filter/platform_adapter_type.py,sha256=90h4g9xB1IfC8ws53M-pjeP
227
228
  astrbot/core/star/filter/regex.py,sha256=GHB5YvBMLFbOOiFVUnEHaqHTER7sU1pAVrAcXdwBtkQ,545
228
229
  astrbot/core/star/register/__init__.py,sha256=Z2dbNKCsh5wzh9a6XFvb_x-9wO5SvowynJAd8kpWEJU,992
229
230
  astrbot/core/star/register/star.py,sha256=Eto7nD_HFuCNt-VJnXUXKv2D7a5TQ6qkhzLJ_itXo_8,1920
230
- astrbot/core/star/register/star_handler.py,sha256=kCIQVzI5EBWVAugkEsXHLTOoOQp3r5uTLYc4sPfdZls,17483
231
+ astrbot/core/star/register/star_handler.py,sha256=SF_peEWGfAPxGvwvsliMdARsW7e3u86AhNBoSamC1JY,18097
231
232
  astrbot/core/utils/astrbot_path.py,sha256=tQFD55EFwGbpR1tpoJADpdElPS5iTFAZVLIxCVvKypY,1213
232
233
  astrbot/core/utils/command_parser.py,sha256=Cwd4zzyKEoC-er0a-9WZ5n2g4F8eH9p6BHxD96gjaVM,617
233
234
  astrbot/core/utils/file_extract.py,sha256=I9jgcaPYK74-BwuI18oUpoupnPYINeP3QFD3kFodqBA,697
234
- astrbot/core/utils/io.py,sha256=oowzwkZC76-BKofm6vI2sJnrg6IgJubcmvoaSvX2AsM,10815
235
+ astrbot/core/utils/io.py,sha256=WUgM6V9_a-hi3CRKS9a-RFRAkZ5yu0M3WgpbR3-3tCw,10817
235
236
  astrbot/core/utils/log_pipe.py,sha256=jphGRAdmzhBVRKdpJwOP1AtpbGlun9v7Cr50kHZtlyo,883
236
237
  astrbot/core/utils/metrics.py,sha256=CxEkdV2gJai0mw1IbL4DJ81WiQ5mY7v9M_-T6UtRJDs,2427
237
238
  astrbot/core/utils/migra_helper.py,sha256=pnv3VvDD_9gj1nKjroVQYUeePpvyd0DXJz9CoJvG_Og,2763
238
239
  astrbot/core/utils/path_util.py,sha256=FXx9oBrsL-dcq-6OlmiSwk2ygqJ9vMmkCBEi2sL50f8,3050
239
240
  astrbot/core/utils/pip_installer.py,sha256=H8Bk5QKh-GBBRvGp7sDKDkh6A1UDy4xU9AtUL10B6Jg,1969
240
241
  astrbot/core/utils/session_lock.py,sha256=fZDIbyy1nYfgsQSGUc_pWHZp4Kv6inXjENP8ay2bKGI,913
241
- astrbot/core/utils/session_waiter.py,sha256=TDGhAgxHhkFqMELfxY3x4wdz5j0VJwpWdHNsEwl-WJs,6756
242
- astrbot/core/utils/shared_preferences.py,sha256=Kw2Gm3CRH0k1MVtBCzE6g2jdPZwT4VyTTFp3AznHtbE,6156
243
- astrbot/core/utils/tencent_record_helper.py,sha256=ggkML0LF26l3gzJpwDJNHiSyoXty3IGuINZIyn9vlN0,5038
244
- astrbot/core/utils/version_comparator.py,sha256=Bvi-mvAHVfbtla6goftZ5nVOLMRFoC8l9XbPFUKdg3Y,3299
245
- astrbot/core/utils/webhook_utils.py,sha256=CQf5E8cLFqY5mTkvm4UjsDIjUVay7k0knYz6C9PaaZc,1429
246
- astrbot/core/utils/t2i/__init__.py,sha256=p6NpLd-xC8UBNoHxSMxqX5kOHKpq59XrHoLMyXkLiaA,324
247
- astrbot/core/utils/t2i/local_strategy.py,sha256=KxPNLF9zXHTfATIAjnXenIlVVT5KjIvOexBjXa1Bl2E,29855
242
+ astrbot/core/utils/session_waiter.py,sha256=Q4zdrvxs-cLLopLCQES6bYZ6MQrajl4fzqZjmmXX170,7073
243
+ astrbot/core/utils/shared_preferences.py,sha256=1dod97F8dT3itDi_APZXqWNdiB57FRhbWlMyyYTbogA,6755
244
+ astrbot/core/utils/tencent_record_helper.py,sha256=utfxCdqn4Beiv7Vd5OosNSLJQuLMusUXdbsxpDV2IxM,5048
245
+ astrbot/core/utils/version_comparator.py,sha256=_VnI50v1xqcZ-wXtOCwknUVwq-wk2Pjh3TLBVe1MTf8,3405
246
+ astrbot/core/utils/webhook_utils.py,sha256=B-dnZdXFAoRo4GMO8FjjT4Em7IYIsU8olJlMCqJt2pc,2021
247
+ astrbot/core/utils/t2i/__init__.py,sha256=wAPd4gcBfuUfFmp_QdYR2AyxmQgMgtY3-AhblbGHqMk,336
248
+ astrbot/core/utils/t2i/local_strategy.py,sha256=ltnm2mHo4qyLYwPvHvlCTmeTAJNtWJCDSPqkWgqfU00,29882
248
249
  astrbot/core/utils/t2i/network_strategy.py,sha256=mezOtitI3XPx1qqJOTbaRn-2xIlpikZ1ZI633zXXjaw,4940
249
250
  astrbot/core/utils/t2i/renderer.py,sha256=3IH-eLxOCIpEPHjXA1GF-ylGGyKz4GlMIbkjfvQg6-o,2004
250
251
  astrbot/core/utils/t2i/template_manager.py,sha256=Pfht7PZCdVteF93lja1LZQcUFNeCOKLs6EFx9XMeYKQ,4520
251
252
  astrbot/core/utils/t2i/template/astrbot_powershell.html,sha256=UcjetoIJG3pJRUHMDOor3Nhj7FFmVXXpkySkpXXztO4,4943
252
253
  astrbot/core/utils/t2i/template/base.html,sha256=fQvq4I4lrlH2s_jwAzj62lWeC4g87xXsYJMJ0XunCPA,6619
253
- astrbot/dashboard/server.py,sha256=k0xJcopwFujxbtTxWtRl9u7hHW7I1wcK9qOKKEvMxPk,9530
254
+ astrbot/dashboard/server.py,sha256=oUeejzlq3CtWthxTlTa1kO3EjBxswRLXcZbZUV3Sc5c,9692
254
255
  astrbot/dashboard/utils.py,sha256=KrAv0lnPaVR0bx8yevT1CLGbSNsJizlfkKkPEtVVANI,5355
255
256
  astrbot/dashboard/routes/__init__.py,sha256=MAQlYoPi-AwUftdp1Ixg9E6im6Af5eruuZ525wtj8G0,840
256
257
  astrbot/dashboard/routes/auth.py,sha256=rYkvt3MpCY9BhWjG0DUoX3YaBkJT1Id7M2pKqTmXbvo,2946
257
- astrbot/dashboard/routes/chat.py,sha256=l-YaOFoSyFFyknCaL3PiWLDjq3FCicUMvpEr60OWnlI,24713
258
- astrbot/dashboard/routes/config.py,sha256=phLX1UBDAZ_URsWTOJupihsBL2-Ahn4drdviq6QX_oA,34043
259
- astrbot/dashboard/routes/conversation.py,sha256=sFHgkpNDdTR9qkSOC_JfSjzkfTuv63iaMxvh52wQUzM,10773
258
+ astrbot/dashboard/routes/chat.py,sha256=XcXuGfLZvjUeYCFPosoMpIAaecuvq48s8aFHrT9P2qc,24822
259
+ astrbot/dashboard/routes/config.py,sha256=jwrlP23zbTpnrMhQKrTfBjb1NLEln4tDYNExRP0BQeM,33438
260
+ astrbot/dashboard/routes/conversation.py,sha256=TWGY7BJ9QfmbxurAieBrbMmCi4_Ua2klxsAUlSRXbng,14302
260
261
  astrbot/dashboard/routes/file.py,sha256=gULvXP9PnVOQlyv_PCEzZQE5ptnGQEjFPvwOLxdVgb4,708
261
- astrbot/dashboard/routes/knowledge_base.py,sha256=dpp0OvBtp8ZR1hxwdAOLOO3MmYcjuJe912ZtL7NZ2Ag,39870
262
- astrbot/dashboard/routes/log.py,sha256=84OFiLM-Cnqf3HxFne-ykUezfnArlwH4HyY8MJxch00,2143
262
+ astrbot/dashboard/routes/knowledge_base.py,sha256=GZ_iDYV2uXXzvGMF-4VJ8hZxLdHIWSSfg_3wlWwsizA,46081
263
+ astrbot/dashboard/routes/log.py,sha256=YJWj1982YUSzja_MZQS5UoKf6pImQoeP0zaS0AGp0nY,2299
263
264
  astrbot/dashboard/routes/persona.py,sha256=MEcNHMxJmyvZ3ZhytI5IP7L3FSlMr1JDvdd5efN9Q-M,7833
264
- astrbot/dashboard/routes/platform.py,sha256=FAo4qSUYq9nebaiOpNzXI_azhmJsLPqUBNfxVr0vIao,3416
265
- astrbot/dashboard/routes/plugin.py,sha256=t0XQdodA5SM7clgUmQAWfE744qlCeOaGUWpDfOrfxZg,22807
266
- astrbot/dashboard/routes/route.py,sha256=GT5fYW9fxYmdVj5_6-Wob7nw_-JXuUNDMXGPWKZUbd8,1547
265
+ astrbot/dashboard/routes/platform.py,sha256=JfQzzmWSnahKjke3lBUeXo7Auzz_nTB0mUv0fIf_Nag,3392
266
+ astrbot/dashboard/routes/plugin.py,sha256=CvTUNOaBBjgk7q58bJ4El7BxkUopzPEdqxFnE2LC2UY,25436
267
+ astrbot/dashboard/routes/route.py,sha256=vhNIWFhic1eVHRx7ej8OUmmcNDA3FPaRPdXO_-SS4K4,1572
267
268
  astrbot/dashboard/routes/session_management.py,sha256=3h-zlkiAN4MQQLETGORNoWDtnGCSbqxnK2mTu6jMeCY,14998
268
269
  astrbot/dashboard/routes/stat.py,sha256=OgNM491WFuDSAQbbJUGl4_UsqrQNefOGMMRIPLLoVBQ,6780
269
270
  astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
270
271
  astrbot/dashboard/routes/t2i.py,sha256=F6smxdL99MF7cRw3hqS6-2GErw8Zhsv0V0mfBUeEk-c,8931
271
272
  astrbot/dashboard/routes/tools.py,sha256=YsVFrwVIhxAI-Ikme7YPrHVnPVTkJ1IaH7n6ciREjdE,14663
272
273
  astrbot/dashboard/routes/update.py,sha256=qXiqQ_dbqRVftOzGgCQrvK8-qopVK6zKhhVVJ9SK26U,6648
273
- astrbot-4.8.0.dist-info/METADATA,sha256=InfHmHSs7KgQ22ZcIkLSeaRNFXADDqoZfY_6wZ4fvxI,10232
274
- astrbot-4.8.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
275
- astrbot-4.8.0.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
276
- astrbot-4.8.0.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
277
- astrbot-4.8.0.dist-info/RECORD,,
274
+ astrbot-4.9.1.dist-info/METADATA,sha256=_-vXi0mOf7CQUSATK8Zv2H0R_zSCIc8DnOfHGt5fjEk,11932
275
+ astrbot-4.9.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
276
+ astrbot-4.9.1.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
277
+ astrbot-4.9.1.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
278
+ astrbot-4.9.1.dist-info/RECORD,,