AstrBot 4.5.1__py3-none-any.whl → 4.5.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 (244) hide show
  1. astrbot/api/__init__.py +10 -11
  2. astrbot/api/event/__init__.py +5 -6
  3. astrbot/api/event/filter/__init__.py +37 -36
  4. astrbot/api/platform/__init__.py +7 -8
  5. astrbot/api/provider/__init__.py +7 -7
  6. astrbot/api/star/__init__.py +3 -4
  7. astrbot/api/util/__init__.py +2 -2
  8. astrbot/cli/__main__.py +5 -5
  9. astrbot/cli/commands/__init__.py +3 -3
  10. astrbot/cli/commands/cmd_conf.py +19 -16
  11. astrbot/cli/commands/cmd_init.py +3 -2
  12. astrbot/cli/commands/cmd_plug.py +8 -10
  13. astrbot/cli/commands/cmd_run.py +5 -6
  14. astrbot/cli/utils/__init__.py +6 -6
  15. astrbot/cli/utils/basic.py +14 -14
  16. astrbot/cli/utils/plugin.py +24 -15
  17. astrbot/cli/utils/version_comparator.py +10 -12
  18. astrbot/core/__init__.py +8 -6
  19. astrbot/core/agent/agent.py +3 -2
  20. astrbot/core/agent/handoff.py +6 -2
  21. astrbot/core/agent/hooks.py +9 -6
  22. astrbot/core/agent/mcp_client.py +50 -15
  23. astrbot/core/agent/message.py +168 -0
  24. astrbot/core/agent/response.py +2 -1
  25. astrbot/core/agent/run_context.py +2 -3
  26. astrbot/core/agent/runners/base.py +10 -13
  27. astrbot/core/agent/runners/tool_loop_agent_runner.py +52 -51
  28. astrbot/core/agent/tool.py +60 -41
  29. astrbot/core/agent/tool_executor.py +9 -3
  30. astrbot/core/astr_agent_context.py +3 -1
  31. astrbot/core/astrbot_config_mgr.py +29 -9
  32. astrbot/core/config/__init__.py +2 -2
  33. astrbot/core/config/astrbot_config.py +28 -26
  34. astrbot/core/config/default.py +4 -6
  35. astrbot/core/conversation_mgr.py +105 -36
  36. astrbot/core/core_lifecycle.py +68 -54
  37. astrbot/core/db/__init__.py +33 -18
  38. astrbot/core/db/migration/helper.py +12 -10
  39. astrbot/core/db/migration/migra_3_to_4.py +53 -34
  40. astrbot/core/db/migration/migra_45_to_46.py +1 -1
  41. astrbot/core/db/migration/shared_preferences_v3.py +2 -1
  42. astrbot/core/db/migration/sqlite_v3.py +26 -23
  43. astrbot/core/db/po.py +27 -18
  44. astrbot/core/db/sqlite.py +74 -45
  45. astrbot/core/db/vec_db/base.py +10 -14
  46. astrbot/core/db/vec_db/faiss_impl/document_storage.py +90 -77
  47. astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +9 -3
  48. astrbot/core/db/vec_db/faiss_impl/vec_db.py +36 -31
  49. astrbot/core/event_bus.py +8 -6
  50. astrbot/core/file_token_service.py +6 -5
  51. astrbot/core/initial_loader.py +7 -5
  52. astrbot/core/knowledge_base/chunking/__init__.py +1 -3
  53. astrbot/core/knowledge_base/chunking/base.py +1 -0
  54. astrbot/core/knowledge_base/chunking/fixed_size.py +2 -0
  55. astrbot/core/knowledge_base/chunking/recursive.py +16 -10
  56. astrbot/core/knowledge_base/kb_db_sqlite.py +50 -48
  57. astrbot/core/knowledge_base/kb_helper.py +30 -17
  58. astrbot/core/knowledge_base/kb_mgr.py +6 -7
  59. astrbot/core/knowledge_base/models.py +10 -4
  60. astrbot/core/knowledge_base/parsers/__init__.py +3 -5
  61. astrbot/core/knowledge_base/parsers/base.py +1 -0
  62. astrbot/core/knowledge_base/parsers/markitdown_parser.py +2 -1
  63. astrbot/core/knowledge_base/parsers/pdf_parser.py +2 -1
  64. astrbot/core/knowledge_base/parsers/text_parser.py +1 -0
  65. astrbot/core/knowledge_base/parsers/util.py +1 -1
  66. astrbot/core/knowledge_base/retrieval/__init__.py +6 -8
  67. astrbot/core/knowledge_base/retrieval/manager.py +17 -14
  68. astrbot/core/knowledge_base/retrieval/rank_fusion.py +7 -3
  69. astrbot/core/knowledge_base/retrieval/sparse_retriever.py +11 -5
  70. astrbot/core/log.py +21 -13
  71. astrbot/core/message/components.py +123 -217
  72. astrbot/core/message/message_event_result.py +24 -24
  73. astrbot/core/persona_mgr.py +20 -11
  74. astrbot/core/pipeline/__init__.py +7 -7
  75. astrbot/core/pipeline/content_safety_check/stage.py +13 -9
  76. astrbot/core/pipeline/content_safety_check/strategies/__init__.py +1 -2
  77. astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +12 -13
  78. astrbot/core/pipeline/content_safety_check/strategies/keywords.py +1 -0
  79. astrbot/core/pipeline/content_safety_check/strategies/strategy.py +6 -6
  80. astrbot/core/pipeline/context.py +4 -1
  81. astrbot/core/pipeline/context_utils.py +77 -7
  82. astrbot/core/pipeline/preprocess_stage/stage.py +12 -9
  83. astrbot/core/pipeline/process_stage/method/llm_request.py +125 -72
  84. astrbot/core/pipeline/process_stage/method/star_request.py +19 -17
  85. astrbot/core/pipeline/process_stage/stage.py +13 -10
  86. astrbot/core/pipeline/process_stage/utils.py +6 -5
  87. astrbot/core/pipeline/rate_limit_check/stage.py +37 -36
  88. astrbot/core/pipeline/respond/stage.py +23 -20
  89. astrbot/core/pipeline/result_decorate/stage.py +31 -23
  90. astrbot/core/pipeline/scheduler.py +12 -8
  91. astrbot/core/pipeline/session_status_check/stage.py +12 -8
  92. astrbot/core/pipeline/stage.py +10 -4
  93. astrbot/core/pipeline/waking_check/stage.py +24 -18
  94. astrbot/core/pipeline/whitelist_check/stage.py +10 -7
  95. astrbot/core/platform/__init__.py +6 -6
  96. astrbot/core/platform/astr_message_event.py +76 -110
  97. astrbot/core/platform/astrbot_message.py +11 -13
  98. astrbot/core/platform/manager.py +16 -15
  99. astrbot/core/platform/message_session.py +5 -3
  100. astrbot/core/platform/platform.py +16 -24
  101. astrbot/core/platform/platform_metadata.py +4 -4
  102. astrbot/core/platform/register.py +8 -8
  103. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +23 -15
  104. astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +51 -33
  105. astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +42 -27
  106. astrbot/core/platform/sources/dingtalk/dingtalk_event.py +7 -3
  107. astrbot/core/platform/sources/discord/client.py +9 -6
  108. astrbot/core/platform/sources/discord/components.py +18 -14
  109. astrbot/core/platform/sources/discord/discord_platform_adapter.py +45 -30
  110. astrbot/core/platform/sources/discord/discord_platform_event.py +38 -30
  111. astrbot/core/platform/sources/lark/lark_adapter.py +23 -17
  112. astrbot/core/platform/sources/lark/lark_event.py +21 -14
  113. astrbot/core/platform/sources/misskey/misskey_adapter.py +107 -67
  114. astrbot/core/platform/sources/misskey/misskey_api.py +153 -129
  115. astrbot/core/platform/sources/misskey/misskey_event.py +20 -15
  116. astrbot/core/platform/sources/misskey/misskey_utils.py +74 -62
  117. astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +63 -44
  118. astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +41 -26
  119. astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +36 -17
  120. astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +3 -1
  121. astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +12 -7
  122. astrbot/core/platform/sources/satori/satori_adapter.py +56 -38
  123. astrbot/core/platform/sources/satori/satori_event.py +34 -25
  124. astrbot/core/platform/sources/slack/client.py +11 -9
  125. astrbot/core/platform/sources/slack/slack_adapter.py +52 -36
  126. astrbot/core/platform/sources/slack/slack_event.py +34 -24
  127. astrbot/core/platform/sources/telegram/tg_adapter.py +38 -18
  128. astrbot/core/platform/sources/telegram/tg_event.py +32 -18
  129. astrbot/core/platform/sources/webchat/webchat_adapter.py +27 -17
  130. astrbot/core/platform/sources/webchat/webchat_event.py +14 -10
  131. astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +115 -120
  132. astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +9 -8
  133. astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +15 -16
  134. astrbot/core/platform/sources/wecom/wecom_adapter.py +35 -18
  135. astrbot/core/platform/sources/wecom/wecom_event.py +55 -48
  136. astrbot/core/platform/sources/wecom/wecom_kf.py +34 -44
  137. astrbot/core/platform/sources/wecom/wecom_kf_message.py +26 -10
  138. astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +18 -10
  139. astrbot/core/platform/sources/wecom_ai_bot/__init__.py +3 -5
  140. astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -1
  141. astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +61 -37
  142. astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +67 -28
  143. astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +8 -9
  144. astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +18 -9
  145. astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +14 -12
  146. astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +22 -12
  147. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +40 -26
  148. astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +47 -45
  149. astrbot/core/platform_message_history_mgr.py +5 -3
  150. astrbot/core/provider/__init__.py +2 -3
  151. astrbot/core/provider/entites.py +8 -8
  152. astrbot/core/provider/entities.py +61 -75
  153. astrbot/core/provider/func_tool_manager.py +59 -55
  154. astrbot/core/provider/manager.py +32 -22
  155. astrbot/core/provider/provider.py +72 -46
  156. astrbot/core/provider/register.py +7 -7
  157. astrbot/core/provider/sources/anthropic_source.py +48 -30
  158. astrbot/core/provider/sources/azure_tts_source.py +17 -13
  159. astrbot/core/provider/sources/coze_api_client.py +27 -17
  160. astrbot/core/provider/sources/coze_source.py +104 -87
  161. astrbot/core/provider/sources/dashscope_source.py +18 -11
  162. astrbot/core/provider/sources/dashscope_tts.py +36 -23
  163. astrbot/core/provider/sources/dify_source.py +25 -20
  164. astrbot/core/provider/sources/edge_tts_source.py +21 -17
  165. astrbot/core/provider/sources/fishaudio_tts_api_source.py +22 -14
  166. astrbot/core/provider/sources/gemini_embedding_source.py +12 -13
  167. astrbot/core/provider/sources/gemini_source.py +72 -58
  168. astrbot/core/provider/sources/gemini_tts_source.py +8 -6
  169. astrbot/core/provider/sources/gsv_selfhosted_source.py +17 -14
  170. astrbot/core/provider/sources/gsvi_tts_source.py +11 -7
  171. astrbot/core/provider/sources/minimax_tts_api_source.py +50 -40
  172. astrbot/core/provider/sources/openai_embedding_source.py +6 -8
  173. astrbot/core/provider/sources/openai_source.py +77 -69
  174. astrbot/core/provider/sources/openai_tts_api_source.py +14 -6
  175. astrbot/core/provider/sources/sensevoice_selfhosted_source.py +13 -11
  176. astrbot/core/provider/sources/vllm_rerank_source.py +10 -4
  177. astrbot/core/provider/sources/volcengine_tts.py +38 -31
  178. astrbot/core/provider/sources/whisper_api_source.py +14 -12
  179. astrbot/core/provider/sources/whisper_selfhosted_source.py +15 -11
  180. astrbot/core/provider/sources/xinference_rerank_source.py +16 -8
  181. astrbot/core/provider/sources/xinference_stt_provider.py +35 -25
  182. astrbot/core/star/__init__.py +16 -11
  183. astrbot/core/star/config.py +10 -15
  184. astrbot/core/star/context.py +97 -75
  185. astrbot/core/star/filter/__init__.py +4 -3
  186. astrbot/core/star/filter/command.py +30 -28
  187. astrbot/core/star/filter/command_group.py +27 -24
  188. astrbot/core/star/filter/custom_filter.py +6 -5
  189. astrbot/core/star/filter/event_message_type.py +4 -2
  190. astrbot/core/star/filter/permission.py +4 -2
  191. astrbot/core/star/filter/platform_adapter_type.py +4 -2
  192. astrbot/core/star/filter/regex.py +4 -2
  193. astrbot/core/star/register/__init__.py +19 -19
  194. astrbot/core/star/register/star.py +6 -2
  195. astrbot/core/star/register/star_handler.py +96 -73
  196. astrbot/core/star/session_llm_manager.py +48 -14
  197. astrbot/core/star/session_plugin_manager.py +29 -15
  198. astrbot/core/star/star.py +1 -2
  199. astrbot/core/star/star_handler.py +13 -8
  200. astrbot/core/star/star_manager.py +151 -59
  201. astrbot/core/star/star_tools.py +44 -37
  202. astrbot/core/star/updator.py +10 -10
  203. astrbot/core/umop_config_router.py +10 -4
  204. astrbot/core/updator.py +13 -5
  205. astrbot/core/utils/astrbot_path.py +3 -5
  206. astrbot/core/utils/dify_api_client.py +33 -15
  207. astrbot/core/utils/io.py +66 -42
  208. astrbot/core/utils/log_pipe.py +1 -1
  209. astrbot/core/utils/metrics.py +7 -7
  210. astrbot/core/utils/path_util.py +15 -16
  211. astrbot/core/utils/pip_installer.py +5 -5
  212. astrbot/core/utils/session_waiter.py +19 -20
  213. astrbot/core/utils/shared_preferences.py +45 -20
  214. astrbot/core/utils/t2i/__init__.py +4 -1
  215. astrbot/core/utils/t2i/network_strategy.py +35 -26
  216. astrbot/core/utils/t2i/renderer.py +11 -5
  217. astrbot/core/utils/t2i/template_manager.py +14 -15
  218. astrbot/core/utils/tencent_record_helper.py +19 -13
  219. astrbot/core/utils/version_comparator.py +10 -13
  220. astrbot/core/zip_updator.py +43 -40
  221. astrbot/dashboard/routes/__init__.py +18 -18
  222. astrbot/dashboard/routes/auth.py +10 -8
  223. astrbot/dashboard/routes/chat.py +30 -21
  224. astrbot/dashboard/routes/config.py +92 -75
  225. astrbot/dashboard/routes/conversation.py +46 -39
  226. astrbot/dashboard/routes/file.py +4 -2
  227. astrbot/dashboard/routes/knowledge_base.py +47 -40
  228. astrbot/dashboard/routes/log.py +9 -4
  229. astrbot/dashboard/routes/persona.py +19 -16
  230. astrbot/dashboard/routes/plugin.py +69 -55
  231. astrbot/dashboard/routes/route.py +3 -1
  232. astrbot/dashboard/routes/session_management.py +130 -116
  233. astrbot/dashboard/routes/stat.py +34 -34
  234. astrbot/dashboard/routes/t2i.py +15 -12
  235. astrbot/dashboard/routes/tools.py +56 -53
  236. astrbot/dashboard/routes/update.py +32 -28
  237. astrbot/dashboard/server.py +30 -26
  238. astrbot/dashboard/utils.py +8 -4
  239. {astrbot-4.5.1.dist-info → astrbot-4.5.3.dist-info}/METADATA +2 -1
  240. astrbot-4.5.3.dist-info/RECORD +261 -0
  241. astrbot-4.5.1.dist-info/RECORD +0 -260
  242. {astrbot-4.5.1.dist-info → astrbot-4.5.3.dist-info}/WHEEL +0 -0
  243. {astrbot-4.5.1.dist-info → astrbot-4.5.3.dist-info}/entry_points.txt +0 -0
  244. {astrbot-4.5.1.dist-info → astrbot-4.5.3.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,261 @@
1
+ astrbot/__init__.py,sha256=QZZ0-g1T26mH28hIq98lEHh29pW1c1GqQUyY-lBRUKI,84
2
+ astrbot/api/__init__.py,sha256=ec-txHoj5ytUG85VkDf5sW6eH6Wkd068-anFwO1Xaf4,568
3
+ astrbot/api/all.py,sha256=pg_9_cv55aKjU2z7dUq8tm59l3MBVa0J3UAP2Sq8oFY,1446
4
+ astrbot/api/message_components.py,sha256=4x2LXczK598y9dVbfvfQJR8-UwhPRjQ99kYw_F7ZGms,46
5
+ astrbot/api/event/__init__.py,sha256=w2pZepTsWEGvuBYWggdxoqx2Y3k3R5haCeuUgizs0Wk,368
6
+ astrbot/api/event/filter/__init__.py,sha256=OTGVKQWw2FtPULMTgukw5ZkpliNr4sNf-QfRpsKrZyA,2055
7
+ astrbot/api/platform/__init__.py,sha256=HXvAy_KLtOJspoGVgDtLa7VjIZoF6WK3Puww55yy89M,465
8
+ astrbot/api/provider/__init__.py,sha256=8sMm_S3XwYNlaQnYo7W1f3VLE27iH5iaCoiQnlBvTkw,349
9
+ astrbot/api/star/__init__.py,sha256=OxgHGtWn3lEQGjb4twbpbWnRepUevPu7gxtDAkAsfhQ,250
10
+ astrbot/api/util/__init__.py,sha256=L1O_mFEUDk8V4lEPsT5iiNbIiOVh7HbrNmitqzUWMZg,180
11
+ astrbot/cli/__init__.py,sha256=b5kXc-KWXgh_CEs-Gwrxdta2EjaWkLB9RgvwamG7L4g,23
12
+ astrbot/cli/__main__.py,sha256=QobgMyFoLNTgI_OYddhGOZ9ZvQeBVjjz79mA2cC2OEU,1758
13
+ astrbot/cli/commands/__init__.py,sha256=eAgppZQIqFO1ylQJFABeYrzQ0oZqPWjtE80aKIPB3ks,149
14
+ astrbot/cli/commands/cmd_conf.py,sha256=6-YLicBt_zjWTzaVLUJ1VQLQPbDEPYACB9IVnN8Zvng,6330
15
+ astrbot/cli/commands/cmd_init.py,sha256=E39Z6nPlHKmgOFUOef8HbObojVt4v2W01wyUR4PFfQY,1819
16
+ astrbot/cli/commands/cmd_plug.py,sha256=IUxRrUoap4IYOdvSzcDeJQiYqsVHzlb63Gq_QbsbTR4,7369
17
+ astrbot/cli/commands/cmd_run.py,sha256=aPjSIY5n4CW1-XJNT7A5SwfCfCbI2Agz269iCzwqhDE,1972
18
+ astrbot/cli/utils/__init__.py,sha256=Mo9646QOR9VOael2XL22CJK0OiifXRB7zu0vLJc9abY,416
19
+ astrbot/cli/utils/basic.py,sha256=-sjbBl0YfF-gt1jvkVyddBk-OWXIVpfG6JcF0DqOLZA,2682
20
+ astrbot/cli/utils/plugin.py,sha256=FdLVcDHH5dBpoBhLC6iWriUomp_5ONGlWNJnOG4ZOnM,8666
21
+ astrbot/cli/utils/version_comparator.py,sha256=NVUmshfb5LU4a-S453rI7opqo0QtIHvlT1KUD3pdoVM,3462
22
+ astrbot/core/__init__.py,sha256=zsaF9IeON4NaHk_Ktr0eB7xQEFC5tUZ4UJCesC3-KHM,1220
23
+ astrbot/core/astr_agent_context.py,sha256=xXR_X5--nXlqPIPpoJ-qhF8U1HclNKQCuey9H5e9CdU,402
24
+ astrbot/core/astrbot_config_mgr.py,sha256=SUvusfo8Qk89eNpEmduWcXuczJ9g5TBH-VOV69ax28g,8950
25
+ astrbot/core/conversation_mgr.py,sha256=GsirCeMBmgxyaOb3hYNleF_11yyFyAER5PtpM3IUvIQ,15765
26
+ astrbot/core/core_lifecycle.py,sha256=uoRlYqg33g3XgHDXFq9uOUSOEjomezidwqiA1r8z7-Q,12603
27
+ astrbot/core/event_bus.py,sha256=0rABGmFd01B5q972HS_2LQ5OFxd6iPLSyM9FbPKIgcg,2540
28
+ astrbot/core/file_token_service.py,sha256=8X0Qyo-NPGhtxy6IcRsJg7Z2tx_ULPf_7OKvw-KBk6o,3317
29
+ astrbot/core/initial_loader.py,sha256=q798G8wEti7-p3UC0y1GB3MOK-kO6z1Nt826iO5nJVA,1802
30
+ astrbot/core/log.py,sha256=768CcnBvuL1vTWUw9sevqvuFm3nmogJjL2kCQMLo0xE,8523
31
+ astrbot/core/persona_mgr.py,sha256=ed29GL0oWDy4kYCwxifyO-FLZjDjiJMuxYGUY0nuwAg,7420
32
+ astrbot/core/platform_message_history_mgr.py,sha256=n3ru9r45AQ3mMwWZ21uznNIjCR-2llwpUQO0VObm2WU,1553
33
+ astrbot/core/umop_config_router.py,sha256=dSZq2Sbb8u4wusyLKmv20hnStyfjFqXejNbMjrV6j8c,2997
34
+ astrbot/core/updator.py,sha256=fP7PxLAl7dCIqUjNKnPJu93LuOr8GnoDrGRdTZhrvyg,4645
35
+ astrbot/core/zip_updator.py,sha256=xBCtHl7XnlMksnS79e8j-FonfB3Lvs95rTmwoo1Z1T0,8824
36
+ astrbot/core/agent/agent.py,sha256=wquvKo18JcsJM56dwKyFFAoGhc5qLyQaeqdZ-LlZsWQ,366
37
+ astrbot/core/agent/handoff.py,sha256=AxO0yx4Uscy0CO-3Q3fvDOfpfr3gUscLRplH7gH7-Lc,1194
38
+ astrbot/core/agent/hooks.py,sha256=ooe9uUz7czlVt2W7jTDwkRbI-qDrOOXWjCaXtiAkrvE,830
39
+ astrbot/core/agent/mcp_client.py,sha256=3N52RRlbscgLZbKwhH-lutO_cOo6ygK5cvcOQ07WGzM,9548
40
+ astrbot/core/agent/message.py,sha256=ORvFtBPgpgvv7hNeRkoFdlPbOEkQZ6OoE7Bz8671B14,5027
41
+ astrbot/core/agent/response.py,sha256=ddJABXu03Uw3b-YGTvRafFLJEGa40o93pIEz_CRTb4g,261
42
+ astrbot/core/agent/run_context.py,sha256=P5XIyscWSS6G1W9U-CdAEeADwsaKJh8trruZ7f7vf-c,428
43
+ astrbot/core/agent/tool.py,sha256=stWY7C9OWys20Q13tNmbm7WkY3gT2xwmFD2bdrTCuCU,9298
44
+ astrbot/core/agent/tool_executor.py,sha256=8GGgVB_JaKGVLQUG1epeL-lvKMqgfQ7mJaOPnVytnXo,438
45
+ astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
46
+ astrbot/core/agent/runners/base.py,sha256=5vDgK676B_39yTHfbWS324e9z4R8E5w4Q9HqqH2c3MA,1582
47
+ astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=EjYPCImSv7bVRkN6ljS3qOS_yd37HoAUVz7cEQlutG0,14915
48
+ astrbot/core/config/__init__.py,sha256=vZjtpC7vr-IvBgSUtbS04C0wpulmCG5tPmcEP1WYE_4,172
49
+ astrbot/core/config/astrbot_config.py,sha256=nGyvHyR9VJH9Pk0XKYyeDFVxjwbyVb9u0lIsuvpe3fg,6276
50
+ astrbot/core/config/default.py,sha256=MLApxqW-zrmRPZFQ10Tas2jPk4uGwVBDe9UWShKQxiQ,133409
51
+ astrbot/core/db/__init__.py,sha256=XA1ootJl_SoMHG6sNUWNR5nj663JHvNF--WEM-hfd1o,8965
52
+ astrbot/core/db/po.py,sha256=jLrmhbtqbnjZ1r7sS0WO6SZIubZr1FH04qmD64N4Y50,7845
53
+ astrbot/core/db/sqlite.py,sha256=H7DOQDktJ3gRFwK0H9TFb3miJqnpx5pRFjwdTETWhWo,26520
54
+ astrbot/core/db/migration/helper.py,sha256=Kogq0FLJdvWTDuAVWLT1PlTGGJcWkDMWO37KM-G8lTk,2087
55
+ astrbot/core/db/migration/migra_3_to_4.py,sha256=hNn_tMququot1qUg3cx_nzxODxcZSlf4M_7YtBgKl2o,15277
56
+ astrbot/core/db/migration/migra_45_to_46.py,sha256=wQk8NUiCNgmpSczO9U-OW6mMRHPWtJDlKuTCOGF8-WY,1560
57
+ astrbot/core/db/migration/shared_preferences_v3.py,sha256=91zq_MrdAMF1MH5fxLaFkZO19nPNIW4gwqCCRn9u2dQ,1241
58
+ astrbot/core/db/migration/sqlite_v3.py,sha256=pBBS5UemoVqus0aLJ5avqb3HgoN-b_S4fN5m4tBVf_U,15051
59
+ astrbot/core/db/vec_db/base.py,sha256=0YxoCPNj_zVprLMamUj-OkUHJDlywIfdN8Q0Kpslm3A,1759
60
+ astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=S3gwB-ZL9aPJwDM5ia8a_t-xsfANKoslpJvtNd5ErcU,57
61
+ astrbot/core/db/vec_db/faiss_impl/document_storage.py,sha256=uR-Po1rSaANbZkIdOfo8QAwS0dcH0x4iRvnqNn80tis,13234
62
+ astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=c4jk0y3tVsGBVI3I-xnUaX46WlwlEshNFKpl0TF8rI8,2929
63
+ astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql,sha256=RiF1mnAFAHtyThOsS0qjvniUF5t9Y8k-gjSlh51p2x8,681
64
+ astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=gZEXdHLIKx0aroD62RZjdY_L7-Twi9VrM594VlSkTuY,7094
65
+ astrbot/core/knowledge_base/kb_db_sqlite.py,sha256=fkFqBZ1qjrPJoKjAzlckIdJriv5ky_ANQx2GIZqUSY8,10993
66
+ astrbot/core/knowledge_base/kb_helper.py,sha256=FAhhmuVDErAKsZa-xqi00BpMxezVXYdTE13EaeOzKwU,12140
67
+ astrbot/core/knowledge_base/kb_mgr.py,sha256=7K_RUdb49vcENFRQ2BDF6Hq3Zfx5SapXhBcETtCfbGU,9739
68
+ astrbot/core/knowledge_base/models.py,sha256=ugENK3bKXG9xP5Av0ls2kkclVVT68gB_wY2p5Q-pdjU,3982
69
+ astrbot/core/knowledge_base/chunking/__init__.py,sha256=haajNOd42ZA12a2kIdeZ31_QsTsL4rZRU5xaXJvs0Oo,155
70
+ astrbot/core/knowledge_base/chunking/base.py,sha256=Zy5q6uA-ttPxpzbOGuFGlNlsCRWUeokMl0adQnWIZBA,471
71
+ astrbot/core/knowledge_base/chunking/fixed_size.py,sha256=WUHJ400ZHJncAPRMkAIzgUbbuzvIwDkwzy-cORRiCSw,1559
72
+ astrbot/core/knowledge_base/chunking/recursive.py,sha256=QaDEHdThlJpw7PJEwcMSicK2AwGuoPUfwbMzUyMcRzM,5790
73
+ astrbot/core/knowledge_base/parsers/__init__.py,sha256=8Ol3IFMRUVryh8YKG_izmNs4lz4-lQOzSnXHFYcL5Aw,256
74
+ astrbot/core/knowledge_base/parsers/base.py,sha256=4bQyCfXaQs5OFHi9fanhXshBaWkKwmpTp3R2eskcLi8,963
75
+ astrbot/core/knowledge_base/parsers/markitdown_parser.py,sha256=dmlQ1OwAND-e87fL227dAfumZ3CnZN29mmSQimE3naw,701
76
+ astrbot/core/knowledge_base/parsers/pdf_parser.py,sha256=jDSyrJMwMH1VozlQNyG8agU4rP9YCNghe5OJGJxEoEY,3093
77
+ astrbot/core/knowledge_base/parsers/text_parser.py,sha256=_lnGbZxDaFDVkv294hJmnY3JI6ybhrtZVI-8EALm5EI,1095
78
+ astrbot/core/knowledge_base/parsers/util.py,sha256=YKtNg98vDv0d8F-RuGtkNUAYO_aQAWz2DlsVGaIMDig,396
79
+ astrbot/core/knowledge_base/retrieval/__init__.py,sha256=Ou7mqN32YqKB99RHZTAqFHxN6ZpootzLtzUZe-Kjtw0,326
80
+ astrbot/core/knowledge_base/retrieval/hit_stopwords.txt,sha256=8LikiRxpjLdAfJYyOQ2tUUPM9wEEZ0y3Mh_XXsxAeug,5271
81
+ astrbot/core/knowledge_base/retrieval/manager.py,sha256=m_aphslIVJE8f7t9M9K32vS8-Ll4BO0Chnd0zdQae1M,8417
82
+ astrbot/core/knowledge_base/retrieval/rank_fusion.py,sha256=OeE4dSAsmyCt_ssAnMf7CQ4tQHlBFxjePgXVf_YwHmY,4441
83
+ astrbot/core/knowledge_base/retrieval/sparse_retriever.py,sha256=sOCZ9I636j3P5WGxjKXVu7Amp-2DB9jQVQn96Ff7asI,3815
84
+ astrbot/core/message/components.py,sha256=lQhxsfRPVMFFDdpCbyWjVN-uXyHIzDOc-3WLWoBAoL8,25526
85
+ astrbot/core/message/message_event_result.py,sha256=1jC6NLeO7lzcTCi2NO28057sWpTsDabICkmGsiggyhk,7204
86
+ astrbot/core/pipeline/__init__.py,sha256=nEepE3tnYYo0EYnzdLLyrp_k7XYg0LpQ3W6QuEeGL6k,1461
87
+ astrbot/core/pipeline/context.py,sha256=2Mm7p7KdKmzlQgnc0iUFch_zQZlcWUqBmy1nF2I_Z1M,572
88
+ astrbot/core/pipeline/context_utils.py,sha256=pJ65WhYvSSPXnQFKb2GUipxt5FA0PxcsSSNvNGhq32g,6091
89
+ astrbot/core/pipeline/scheduler.py,sha256=u96IOXoSpTOMj_X5z5Hnaz4Fwa8Nyl-P3qJauuqcQR0,3305
90
+ astrbot/core/pipeline/stage.py,sha256=hpzghbberezaBJtb2cwhY8x0xi6lZrgWfD2BYv-te1g,1350
91
+ astrbot/core/pipeline/content_safety_check/stage.py,sha256=4C3k9wMXirIbyDNvUazPnbMKo6u0PZqnaDX9LKVdCiU,1396
92
+ astrbot/core/pipeline/content_safety_check/strategies/__init__.py,sha256=47gYlyvW-Dr401fO0dMAAAmMXnSkTI63MnYak3GGvNw,164
93
+ astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=-DvF8O9dZ7PDzRtQwYmIJfYHz1aA5C_gKafGw9IVgYs,1005
94
+ astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=N3bR19Deb3a-DOE-3hiuogsC068uYNL25fCe9BVkKKA,905
95
+ astrbot/core/pipeline/content_safety_check/strategies/strategy.py,sha256=XM2c-6apssEtAllMAI6BUXaEN_t2XINHcCoAudeKNwc,1206
96
+ astrbot/core/pipeline/preprocess_stage/stage.py,sha256=BFaON3u4MrQUXp0ZXETU5MIvN_w0p0KJDNc9D7Y3qsY,4202
97
+ astrbot/core/pipeline/process_stage/stage.py,sha256=yd1CpHbGzmLn-2C2QwvyAHa9WhsF7QKEqb_ojl6HJ6I,2679
98
+ astrbot/core/pipeline/process_stage/utils.py,sha256=EPooTG8hs4uB8I8lMtRi23BkDjMu-7eM07v3O305po4,2593
99
+ astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=jFJUw40Rtn6056UFB313uRVncPFnKkfJhP6i6iMsB3Y,28482
100
+ astrbot/core/pipeline/process_stage/method/star_request.py,sha256=cbZO2bcS3LIsk21DLO-V7rRrZed3fOjholafAVKDrvI,2515
101
+ astrbot/core/pipeline/rate_limit_check/stage.py,sha256=9EVJ0zYtxATFsj7ADyWDYcSGBRqmrMiKWp1kkD9LONI,3962
102
+ astrbot/core/pipeline/respond/stage.py,sha256=-LGDmf32YSCKpvK5ahH4SO_K396cDwo_i-f5NWROMwI,10821
103
+ astrbot/core/pipeline/result_decorate/stage.py,sha256=t_UJ4uC3GQtgbO6MUkDClfLJcU5Z_8oe1hDjGHrTQUM,14053
104
+ astrbot/core/pipeline/session_status_check/stage.py,sha256=cFp6MMdFzeURjmW5LCrzsTGD_hnJN5jhDh_zoPbnFAw,1291
105
+ astrbot/core/pipeline/waking_check/stage.py,sha256=V1xr7aGcYh8JoSNnR86_YAA2XZTJfjp2HKmYVM4tCLs,8280
106
+ astrbot/core/pipeline/whitelist_check/stage.py,sha256=x6o4oswIvVtHFRbuKuLFoyFEgx-gSo3IMGYvopu8d9A,2411
107
+ astrbot/core/platform/__init__.py,sha256=5Hhb2mIb8mS2RWfxILIMuV03XiyfqEbn4pAjvi8ntl0,361
108
+ astrbot/core/platform/astr_message_event.py,sha256=UzGNg7mVLufPC2iDJpXFxdEM0g-Gb1QKtM4BojRlJlQ,14657
109
+ astrbot/core/platform/astrbot_message.py,sha256=PmrszCZE98wLtrqV9qldjsTiWSOWP-aVORBHje8voOI,2656
110
+ astrbot/core/platform/manager.py,sha256=BMIVCP9Ymz4tpxiyTHia4JNQIuJvjyFsgMMWxmKFlpo,8251
111
+ astrbot/core/platform/message_session.py,sha256=AGI-fAyish5VYfIQf0dg2J3HZbiYPzpPMdAwBODzc1M,1089
112
+ astrbot/core/platform/message_type.py,sha256=uGn5KN8B_7b9F5nFTpvLAXRlXx2VFHP3JmJjN8cC7fg,261
113
+ astrbot/core/platform/platform.py,sha256=UETCazEPfEfQq0utZSMOIKcgIvQ3XbKv2yldwvte0IA,1694
114
+ astrbot/core/platform/platform_metadata.py,sha256=4tSTRGMnJq9fv59k6GDtHH7bQyPaCwSQfL8zSjFMfdU,616
115
+ astrbot/core/platform/register.py,sha256=cFNQNetx8tG3hCkKu9GZJ6Q6K8zkslBFer5gaOPV18w,1847
116
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=wuHJZu_Q86KQ83vaj_V-t3u5P7JIBURNtnFmYfCU4wM,8080
117
+ astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=pwZuJSsZfpeEr1bXi-zc0M4qIcyltUh8ihioDB_0x7A,16972
118
+ astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=5OI3CSfiIxx1HPO3mbD3yv1nC1csDV_Bq3PdOFkMs7w,8791
119
+ astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=Ph8AP03qct0dFDHKB1be0VY8Slxe9yiwqMsd7Zhpvas,2696
120
+ astrbot/core/platform/sources/discord/client.py,sha256=dYu9ANCMeI9nY1K2FRquPOwTe1xLWHuVYslSLXoXNkY,4622
121
+ astrbot/core/platform/sources/discord/components.py,sha256=sh0vvqKcO1a293XNApcA-olunPTHbVWFauq-Nwvj-o4,3957
122
+ astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=4f6RwrvRf8LrZffSBEVd4dRB38NvP6akX3UEd6dKeg0,18510
123
+ astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=riLViGLTM0DUrcdp1r0NyeCachyZsV8KG7ZiR-eETCk,12201
124
+ astrbot/core/platform/sources/lark/lark_adapter.py,sha256=6sx4q0JeSpVpDKgr7tk5TUKU62Sf0pD0W9TGihINz58,8252
125
+ astrbot/core/platform/sources/lark/lark_event.py,sha256=bK6575i7SnkkKeYfegcod3Z_eo0fLoOzFzi53UbSDww,5198
126
+ astrbot/core/platform/sources/misskey/misskey_adapter.py,sha256=WMobfssXd3zKIAnqqAJ8j01mXxvXn7fHcCLiQQcZKoo,29585
127
+ astrbot/core/platform/sources/misskey/misskey_api.py,sha256=YlE1zxHs0dPWJVuVsWR0Lr0d9TPQmnTwsLCQKI4p6Gk,35905
128
+ astrbot/core/platform/sources/misskey/misskey_event.py,sha256=2PYSU9arxzbS71jz5D__3maFFNKqxYZiGmXtLuC_aAc,6550
129
+ astrbot/core/platform/sources/misskey/misskey_utils.py,sha256=KEzX-_5-EfzKmLdcrZyQiUR09NHXDT0A6v3DrDp3fyk,17859
130
+ astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=0QM1JeWmpSrqobNAlpaoN5M5zfsDv26BzJYgoMYOlPk,12367
131
+ astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=iZ5UN6owMiw5kiDobBsS4cUeLr0HXnKWFyTsyPmDph8,7414
132
+ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=ZUb5Td6kaaxCwrnBikZE_pjBU1vMvJE7JH8AKqtZMlQ,4507
133
+ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=vqifw9itvrcr7sV9cL0T19qLZ7I9CWORi4oUBgZrOqc,501
134
+ astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=dYhnveFWSIpFsphS7Hec70pOenPBVMJOFDTzQXK1NFw,3853
135
+ astrbot/core/platform/sources/satori/satori_adapter.py,sha256=F8xTxvXpcz4xjXFzmZ4L45F1DJIfKKPwwZXTNX55Zr4,27991
136
+ astrbot/core/platform/sources/satori/satori_event.py,sha256=agI9FYUwBZM2CnxPANxDOw9vnRqPQSCGZi6UK5UVrdA,16183
137
+ astrbot/core/platform/sources/slack/client.py,sha256=opkwKKwgaLxw3EpYILLAf7gzzC6KwpiUoq3TOewolh4,5633
138
+ astrbot/core/platform/sources/slack/slack_adapter.py,sha256=GUb1E5YZcUmk3InaFFB4GKaRU66dhvHj3fBIwIpfNLs,16052
139
+ astrbot/core/platform/sources/slack/slack_event.py,sha256=qtd7AkYDrX5-rcf6-N3QX6Lm3YzvO8ipsUL8iFF6T_U,8926
140
+ astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=5eGR5PK1wUSDIBZQw7IW7JpfNfjSB3zldpVDpMs7zUo,16076
141
+ astrbot/core/platform/sources/telegram/tg_event.py,sha256=Xh8IDfSLtjJqzyiZVX05LKT8adm7Q2YPUHHKIZ-rpI4,11641
142
+ astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=pvfoKzzSHegqUvJx9bc2uipV5OPeGAS9VEr3le1FP8c,6050
143
+ astrbot/core/platform/sources/webchat/webchat_event.py,sha256=0MDy-yeV1XwCA8wYBrksNh4T5nZLGw1zVodqdeujWGg,5498
144
+ astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
145
+ astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=autcUNTq7VKnBjkrn5xlMB03S14LkeMx5TrvEGrhp3c,40624
146
+ astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py,sha256=DMbWWYceKbNVdvSo1Wb380dwB1pfn-JU84agRmJOj9M,6042
147
+ astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py,sha256=n1PZRcNjGN_w1-z2CXcIMZL7oSTprteQpPbJ992Lsu4,6306
148
+ astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=17nRVNUP7fSRtFgl0uEDBOz6NKywvsAci0IfRs5XoOg,13820
149
+ astrbot/core/platform/sources/wecom/wecom_event.py,sha256=sH_6Ix6mtW9ePkk3SqMDlM7Y8Q2SrjV4IIZPkJfK10k,9175
150
+ astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=eenwV2hmH0j70OfYFsnAw9vukwHYmfF-YTzCym-6JE0,10820
151
+ astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=__9zR3FCgggRDDwaEUsgfUgvhCtkUE5Uoi4jAuJrVUo,5934
152
+ astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py,sha256=j6dV8PbpXzB0FNAU6JB4dB_T-aIjiKED4Ig0nBQjmCc,11406
153
+ astrbot/core/platform/sources/wecom_ai_bot/__init__.py,sha256=WOYATxFKjq7ZIU0pf3M7MZVvW3ovxdAvXvB9PPJiSkc,435
154
+ astrbot/core/platform/sources/wecom_ai_bot/ierror.py,sha256=6F08cRDiy3mbBLuTHgxkKIkgpXTQsNe4vnB4T1WvZe0,792
155
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py,sha256=7JVdujeCjnUH8fIfVwGkthfUt1u7Q85uiml5-33AiOQ,17444
156
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py,sha256=ZDLQvAEQztFXgzBAamLWFFC3BPr7jEhcjEGAcqIUd9g,12008
157
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=Bd3-dRPKBOTA2POWVbNUoOkX3AvNS6KVXx5RUyTb2oo,5076
158
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py,sha256=fv06hqscDE5EQvXl8P3aAORppZ8RL4XcAouxmJz8o-g,4658
159
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py,sha256=hLhWV26Wa2HGBtw-eSKGq0LAeCS7HNNDnSRm7OuHJSQ,5280
160
+ astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py,sha256=6vTeKwrt-zXsA0Lt_7GFk7_J0IXWX-ErVvwK9VC0EDM,5427
161
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=iMhA-l4Odw29VUjiTQf3E4Yhzd1o2qJhIT4HCcfUZDk,10575
162
+ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=_DYWTs5u3MoOKt-7eIH7fGHIpvxae2qckkceH9X9DCQ,7100
163
+ astrbot/core/provider/__init__.py,sha256=b5lr-mm9VdMgUI5N0Y6AFa76lqow6j8g5cUMRlQq3oI,170
164
+ astrbot/core/provider/entites.py,sha256=0eYiQ-xttqFTb3WZR2b1oemdZy3d5sevELvj9FixJtE,388
165
+ astrbot/core/provider/entities.py,sha256=2p1vuOg6pVVcdeVOJ-GyCFDe_DA6fi-KHzcJ4IYGEB0,10801
166
+ astrbot/core/provider/func_tool_manager.py,sha256=ynCsK5RVeNQfNVxBqIzg1yt2njs-2yfEhIpX5z9wCvU,20839
167
+ astrbot/core/provider/manager.py,sha256=bDiKHuZnoNylfiqlgWehKT1c5A4ToqCr3RXqzzJ1AHg,22458
168
+ astrbot/core/provider/provider.py,sha256=jiNT38q13MiDOnDV8XvMaFmt7YfeaV7YoGvPtRM7-jw,11076
169
+ astrbot/core/provider/register.py,sha256=5ooo5FQ-KpfwkXUvB2C4fWSsFBqSpHwfbf4uamJ5IUc,1816
170
+ astrbot/core/provider/sources/anthropic_source.py,sha256=2GvY3KJPExbzVDagqkpyyIPyQ1WwzorwL-4ZyahfpUU,15643
171
+ astrbot/core/provider/sources/azure_tts_source.py,sha256=uhPr4Dja6XANesAmrfZiuINNIlXej0NV7Goo8ahMm14,9387
172
+ astrbot/core/provider/sources/coze_api_client.py,sha256=0k8pQsFsbjKdF-jkY91qZWsC8YSaSmwC98TMTK-zqw0,10853
173
+ astrbot/core/provider/sources/coze_source.py,sha256=xjUztewnR8n2jqunyqxO5zY0OGuIsPCzaMV1JJqT1ZI,25400
174
+ astrbot/core/provider/sources/dashscope_source.py,sha256=GqKfEbLe_h0XwTTRt-J6B4aLUWLN3d4Dc3svrEU4_NA,7463
175
+ astrbot/core/provider/sources/dashscope_tts.py,sha256=GMslnWn9e30c78qHhnMioJrG60nAwSWo3nXsQmISJno,5603
176
+ astrbot/core/provider/sources/dify_source.py,sha256=mOIQSerhjBKp7i_XS1Ky9rUBe1nMr918F9p8VFG-U3U,11400
177
+ astrbot/core/provider/sources/edge_tts_source.py,sha256=7C04B0voPmQdeaB4u-U5Lip6qN3UAyB_yNPBYHLaxo8,4680
178
+ astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=P2N_dkwxx3Kk1uWae1TT4yJShj6i0Q_jTpWT1V_dLQ0,5484
179
+ astrbot/core/provider/sources/gemini_embedding_source.py,sha256=XpTqb5rlI5z34FmrdFkpvwkk9BiuyFKcpWm6xQEHpNE,2248
180
+ astrbot/core/provider/sources/gemini_source.py,sha256=OsH_InknZRgg5lTgtv-fg5847HDt0CjbIoiMyqK9EEY,29179
181
+ astrbot/core/provider/sources/gemini_tts_source.py,sha256=6LJIT2aTjoZaMszjYRzDu38prsO9G5Xg7SzJmQb2TzE,2880
182
+ astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=RYQgwCc67N7RWPaODN4sSLJZn6o5gpgk_jF_KaRnD0M,5942
183
+ astrbot/core/provider/sources/gsvi_tts_source.py,sha256=nGGctfkzrAeTofAvB2b_VNTYHW44SzyO12B-mBWb1rY,2011
184
+ astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=qMN6iBR2V145d5BAIkjAa2pVrH5eZOHeWnd8yhemOCY,5837
185
+ astrbot/core/provider/sources/openai_embedding_source.py,sha256=26hjOYrQ8eHHPi8wybCubtsY-UOOfGx0qcCxQ3BvjIE,1616
186
+ astrbot/core/provider/sources/openai_source.py,sha256=Wk4AECPh5t7m5Qmi3fLy8cEsYDvdWf7clPgDzw1BYTA,22229
187
+ astrbot/core/provider/sources/openai_tts_api_source.py,sha256=DVviGQdBpCk6lW3LjnJHzwZr9wGkXRDNwfoQ3FYFVcs,1667
188
+ astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=aG7m3HvqSdcTRJcncqFNhyz9D-TVIdjiCbGFQPhDcdM,3819
189
+ astrbot/core/provider/sources/vllm_rerank_source.py,sha256=5mZwtOUG1w7AfqQR7AYznxL_L0HVOKq6_T2G0CrNkZg,2316
190
+ astrbot/core/provider/sources/volcengine_tts.py,sha256=pcw4lXbyyiLqJWRHZEaqKMcp8lYPZsDf4OIH4e5mHOw,4065
191
+ astrbot/core/provider/sources/whisper_api_source.py,sha256=elK7TIdq55qixf6hmwj8QWiV5k7cdyY9il5L8I1VK6A,2599
192
+ astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=5R7Xwg3gZF6TW-D8WSivd4ZCG6RcLlv7gcHYqxzojEw,2640
193
+ astrbot/core/provider/sources/xinference_rerank_source.py,sha256=X3Jm3zB7cGUedsYasDJjiNpOAVleB-5LR4j4DqALd1A,4428
194
+ astrbot/core/provider/sources/xinference_stt_provider.py,sha256=DPEc7cVo2KXKGIgb8IXKagPH9qpNAdp5gx5PAink0j4,7731
195
+ astrbot/core/provider/sources/zhipu_source.py,sha256=wUXp9wjMoFjYKqjwkDDUWGduzkrqYvoffjsJch3iNnw,706
196
+ astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
197
+ astrbot/core/star/__init__.py,sha256=ccAN4tGmHjKmMIuL4L0KTFpPz6_uf26yhCj0XQBf2do,2112
198
+ astrbot/core/star/config.py,sha256=FgrBz_fUrBU0-9BxD8enX-xGNGVbFxst3UT10sboYNA,3531
199
+ astrbot/core/star/context.py,sha256=TQS8eKTUfOSg7uL1mXWJhnAR5GpvfjX6GSL61h82VoA,14304
200
+ astrbot/core/star/session_llm_manager.py,sha256=S6vYYgW8Y3igIvrqYJZhFlzFcsFKXMehSmwEmgLG9mk,8776
201
+ astrbot/core/star/session_plugin_manager.py,sha256=bu_YeO-YldfribTz987ZBR-0NAhVT1nqlQE1ExX5vwg,5423
202
+ astrbot/core/star/star.py,sha256=Wkf81teNZ27JE_JrENuP0SrpFc2uFYRxHQsWo8R9-No,1826
203
+ astrbot/core/star/star_handler.py,sha256=Vv8GW70AUrezB0bjj8AzzdlnqOsX27LTypTlhiYbB-A,4927
204
+ astrbot/core/star/star_manager.py,sha256=_oFOYaf8IFhWy2KwRJ6TVVbjoywYLt2imuv5yTAqP4o,40343
205
+ astrbot/core/star/star_tools.py,sha256=4q8emjyTbyIsVXHmzT88kX9uK28rIhlHc0re40Xm6m0,10847
206
+ astrbot/core/star/updator.py,sha256=4pl42Ks_yjJ3kydx3BwOqocAczhhFBrRnxhBKh4_0Eo,3106
207
+ astrbot/core/star/filter/__init__.py,sha256=bC6eHXh0CjzHmn-LTvsanWReoGIPhhMnBSrMLh97hZQ,470
208
+ astrbot/core/star/filter/command.py,sha256=iMylbc6Jb7UHxd8xB8rFuteW0dfVbPjYalA_BOPMTVw,8857
209
+ astrbot/core/star/filter/command_group.py,sha256=RAtImtR5-flVzbAikaCZtJd-2R0NS6_JDabntac_VU8,5002
210
+ astrbot/core/star/filter/custom_filter.py,sha256=vyMqtRoiLx3CtTHLqhqamKZSeSkoj2GnW4YMQ1ihbC8,2241
211
+ astrbot/core/star/filter/event_message_type.py,sha256=DMQy1463oTcwZbIZwbr4uxH7wIVkzsQ6bSe4aRrYn2M,1164
212
+ astrbot/core/star/filter/permission.py,sha256=BYO9kd0coAJ4ayy0YOvTb4b35mavBSCKqR4mjm47jjQ,917
213
+ astrbot/core/star/filter/platform_adapter_type.py,sha256=90h4g9xB1IfC8ws53M-pjePia2B0G1tCSct_xrpje9E,2208
214
+ astrbot/core/star/filter/regex.py,sha256=GHB5YvBMLFbOOiFVUnEHaqHTER7sU1pAVrAcXdwBtkQ,545
215
+ astrbot/core/star/register/__init__.py,sha256=Z2dbNKCsh5wzh9a6XFvb_x-9wO5SvowynJAd8kpWEJU,992
216
+ astrbot/core/star/register/star.py,sha256=Eto7nD_HFuCNt-VJnXUXKv2D7a5TQ6qkhzLJ_itXo_8,1920
217
+ astrbot/core/star/register/star_handler.py,sha256=1bk9i5cGoGt9lm_7_YBvOqJzPjRSnqdzCd8U35fRXhE,16586
218
+ astrbot/core/utils/astrbot_path.py,sha256=tQFD55EFwGbpR1tpoJADpdElPS5iTFAZVLIxCVvKypY,1213
219
+ astrbot/core/utils/command_parser.py,sha256=Cwd4zzyKEoC-er0a-9WZ5n2g4F8eH9p6BHxD96gjaVM,617
220
+ astrbot/core/utils/dify_api_client.py,sha256=nQRgDv40rNxzIzOJdURHRHOjfIvXQJxw89OHRK8lPug,5067
221
+ astrbot/core/utils/io.py,sha256=oowzwkZC76-BKofm6vI2sJnrg6IgJubcmvoaSvX2AsM,10815
222
+ astrbot/core/utils/log_pipe.py,sha256=jphGRAdmzhBVRKdpJwOP1AtpbGlun9v7Cr50kHZtlyo,883
223
+ astrbot/core/utils/metrics.py,sha256=CxEkdV2gJai0mw1IbL4DJ81WiQ5mY7v9M_-T6UtRJDs,2427
224
+ astrbot/core/utils/path_util.py,sha256=FXx9oBrsL-dcq-6OlmiSwk2ygqJ9vMmkCBEi2sL50f8,3050
225
+ astrbot/core/utils/pip_installer.py,sha256=H8Bk5QKh-GBBRvGp7sDKDkh6A1UDy4xU9AtUL10B6Jg,1969
226
+ astrbot/core/utils/session_lock.py,sha256=fZDIbyy1nYfgsQSGUc_pWHZp4Kv6inXjENP8ay2bKGI,913
227
+ astrbot/core/utils/session_waiter.py,sha256=TDGhAgxHhkFqMELfxY3x4wdz5j0VJwpWdHNsEwl-WJs,6756
228
+ astrbot/core/utils/shared_preferences.py,sha256=q8ezu8uayc1_7QsLoi8SiKfKRgE3v8tgvRP1A2X_a1w,6740
229
+ astrbot/core/utils/tencent_record_helper.py,sha256=wJwbl2Q5SVXqQcYCKx0oS8T4cw01DAP5H_xfu7jMimw,5035
230
+ astrbot/core/utils/version_comparator.py,sha256=Bvi-mvAHVfbtla6goftZ5nVOLMRFoC8l9XbPFUKdg3Y,3299
231
+ astrbot/core/utils/t2i/__init__.py,sha256=p6NpLd-xC8UBNoHxSMxqX5kOHKpq59XrHoLMyXkLiaA,324
232
+ astrbot/core/utils/t2i/local_strategy.py,sha256=KxPNLF9zXHTfATIAjnXenIlVVT5KjIvOexBjXa1Bl2E,29855
233
+ astrbot/core/utils/t2i/network_strategy.py,sha256=mezOtitI3XPx1qqJOTbaRn-2xIlpikZ1ZI633zXXjaw,4940
234
+ astrbot/core/utils/t2i/renderer.py,sha256=3IH-eLxOCIpEPHjXA1GF-ylGGyKz4GlMIbkjfvQg6-o,2004
235
+ astrbot/core/utils/t2i/template_manager.py,sha256=Pfht7PZCdVteF93lja1LZQcUFNeCOKLs6EFx9XMeYKQ,4520
236
+ astrbot/core/utils/t2i/template/astrbot_powershell.html,sha256=UcjetoIJG3pJRUHMDOor3Nhj7FFmVXXpkySkpXXztO4,4943
237
+ astrbot/core/utils/t2i/template/base.html,sha256=fQvq4I4lrlH2s_jwAzj62lWeC4g87xXsYJMJ0XunCPA,6619
238
+ astrbot/dashboard/server.py,sha256=HiuqrnMKWOER8j6h1ZAIAONUb3DwJCEjXl7LkLFXMiI,9388
239
+ astrbot/dashboard/utils.py,sha256=KrAv0lnPaVR0bx8yevT1CLGbSNsJizlfkKkPEtVVANI,5355
240
+ astrbot/dashboard/routes/__init__.py,sha256=IKg0EzasXsd-OleSixE54Ul5wQcBeMHzVwhhjMFZ2dE,783
241
+ astrbot/dashboard/routes/auth.py,sha256=rYkvt3MpCY9BhWjG0DUoX3YaBkJT1Id7M2pKqTmXbvo,2946
242
+ astrbot/dashboard/routes/chat.py,sha256=qNqHc9V8bZ20z1T0ca5iWCeJbANUO8KlJiLSaw4PVoA,13290
243
+ astrbot/dashboard/routes/config.py,sha256=DHWd56JZrtXdxuf80DIfmyFYmeOcZ6mC8aCKZc6QacA,40070
244
+ astrbot/dashboard/routes/conversation.py,sha256=sFHgkpNDdTR9qkSOC_JfSjzkfTuv63iaMxvh52wQUzM,10773
245
+ astrbot/dashboard/routes/file.py,sha256=gULvXP9PnVOQlyv_PCEzZQE5ptnGQEjFPvwOLxdVgb4,708
246
+ astrbot/dashboard/routes/knowledge_base.py,sha256=B4q9Zkph95xcNRIluKSIgTH0mL7KjPGXp7UzJjQ4S54,39584
247
+ astrbot/dashboard/routes/log.py,sha256=84OFiLM-Cnqf3HxFne-ykUezfnArlwH4HyY8MJxch00,2143
248
+ astrbot/dashboard/routes/persona.py,sha256=MEcNHMxJmyvZ3ZhytI5IP7L3FSlMr1JDvdd5efN9Q-M,7833
249
+ astrbot/dashboard/routes/plugin.py,sha256=lc50jRSRcJfpKMrT1OlFDuA7e841SSCEyEhFXiX742c,20508
250
+ astrbot/dashboard/routes/route.py,sha256=GT5fYW9fxYmdVj5_6-Wob7nw_-JXuUNDMXGPWKZUbd8,1547
251
+ astrbot/dashboard/routes/session_management.py,sha256=gb3fiGFFEu5RU3Yedh1hsSfPLPPTDTAJnEDIDvqdyGk,26681
252
+ astrbot/dashboard/routes/stat.py,sha256=OgNM491WFuDSAQbbJUGl4_UsqrQNefOGMMRIPLLoVBQ,6780
253
+ astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
254
+ astrbot/dashboard/routes/t2i.py,sha256=F6smxdL99MF7cRw3hqS6-2GErw8Zhsv0V0mfBUeEk-c,8931
255
+ astrbot/dashboard/routes/tools.py,sha256=YsVFrwVIhxAI-Ikme7YPrHVnPVTkJ1IaH7n6ciREjdE,14663
256
+ astrbot/dashboard/routes/update.py,sha256=qXiqQ_dbqRVftOzGgCQrvK8-qopVK6zKhhVVJ9SK26U,6648
257
+ astrbot-4.5.3.dist-info/METADATA,sha256=Mu78zqWEBmEaEjSeZrv3QXQcnwcagNugL5tdamij61I,10968
258
+ astrbot-4.5.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
259
+ astrbot-4.5.3.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
260
+ astrbot-4.5.3.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
261
+ astrbot-4.5.3.dist-info/RECORD,,
@@ -1,260 +0,0 @@
1
- astrbot/__init__.py,sha256=QZZ0-g1T26mH28hIq98lEHh29pW1c1GqQUyY-lBRUKI,84
2
- astrbot/api/__init__.py,sha256=voqziH3MTgEyujweOMPFbhYT0yvnirEDgQcLwisbccg,592
3
- astrbot/api/all.py,sha256=pg_9_cv55aKjU2z7dUq8tm59l3MBVa0J3UAP2Sq8oFY,1446
4
- astrbot/api/message_components.py,sha256=4x2LXczK598y9dVbfvfQJR8-UwhPRjQ99kYw_F7ZGms,46
5
- astrbot/api/event/__init__.py,sha256=dINwOiLOHL6zpvQlCIZGTa-tRuiCs5vJyJaRSdBk2DA,369
6
- astrbot/api/event/filter/__init__.py,sha256=3_VMKNepU-x3IKm_WYl6hGSdT5qTVSrI2PQDXNiFU44,1605
7
- astrbot/api/platform/__init__.py,sha256=03LX6YlFgWsyMdwE4FFPk8Q2Ak5jIUKHBgnuoPu0rr4,466
8
- astrbot/api/provider/__init__.py,sha256=jVcfbml6WpIU7cSqhuE1QMS-RSMvv1jvZSNvdmUOrZQ,349
9
- astrbot/api/star/__init__.py,sha256=GJaFd5jpGrfgFLHtnwtglpinX3zDfhq3nGrLNXXIBog,251
10
- astrbot/api/util/__init__.py,sha256=zBVGafa4n1oYRcvgcRxaBnn4RIcq3jp0lYj2XE9ikZU,180
11
- astrbot/cli/__init__.py,sha256=b5kXc-KWXgh_CEs-Gwrxdta2EjaWkLB9RgvwamG7L4g,23
12
- astrbot/cli/__main__.py,sha256=M7l1LfvCcATSl0_MX2tOfspTqaQSAKLRL6bJ2fPJqzI,1758
13
- astrbot/cli/commands/__init__.py,sha256=ia3R7gN5QZZFJLIkqmkpWj2WJDHP5yYpvsTFjqC85AA,149
14
- astrbot/cli/commands/cmd_conf.py,sha256=LP4UdiEv8ef4QJJd1Tlv5eJvlWDpowIvfk0at7I-G5o,6321
15
- astrbot/cli/commands/cmd_init.py,sha256=2fdhFlgOmqxQCorTyBmdxKY9_NfksV9MxnupUlre0ng,1787
16
- astrbot/cli/commands/cmd_plug.py,sha256=rs4ahzEeUPhLlggjxvfCXqmDWSYv66bI9bpO0NUu2oY,7381
17
- astrbot/cli/commands/cmd_run.py,sha256=myIZ4SSjwEOLNrv0fO2So-a3oe3jNL7T2sI8cZj-pfc,1972
18
- astrbot/cli/utils/__init__.py,sha256=EYu82Q-QKNhET-NjgdG0eqh8VY2uCc-EhPIkudhciaY,416
19
- astrbot/cli/utils/basic.py,sha256=Rxg0LdluIdwPIEbhk_1H6MzzEz2JbhP3d73SWcLfJqA,2751
20
- astrbot/cli/utils/plugin.py,sha256=kS37S3bAK3q43mL2wvQM8FuqaSkgLQU_Yt2XqxjnxNo,8483
21
- astrbot/cli/utils/version_comparator.py,sha256=3gLFA94eswvFsBVDSJmOTLJKxTdCD9kkQFy2Lu7vcTc,3482
22
- astrbot/core/__init__.py,sha256=-1atHjMqQyequsw6A1heEr4LldE0JVII9MXcuQFSAQM,1218
23
- astrbot/core/astr_agent_context.py,sha256=emypZloG0UWATEKUobDH8yLYcqmaVj9N3HwMQmvY3sc,375
24
- astrbot/core/astrbot_config_mgr.py,sha256=jQZJjdcmYF-dSdWLykTDi3IW-OwEBPboSmYWXLAsVs0,8747
25
- astrbot/core/conversation_mgr.py,sha256=_N91hLjpW7BgnOtqvjRX-OK6xAZU4a0trawfJBCc60c,13569
26
- astrbot/core/core_lifecycle.py,sha256=MBOeW0B8Kkg6fF5BRVf2tx4jJ4oXqlxUlOJMiAQmRTg,12467
27
- astrbot/core/event_bus.py,sha256=781lHFtnOfxBqS4CSxwTiPyoPvYOlbJce6arUGVfZEg,2536
28
- astrbot/core/file_token_service.py,sha256=LMU9NOc4RF7FUniZq5dhpR-auE3mVdZ2o0-ogcY-PEA,3315
29
- astrbot/core/initial_loader.py,sha256=c-rvcPIOOYYzlfSfu4VN5LsAmblFWJTr8tQRX2mooWo,1789
30
- astrbot/core/log.py,sha256=wFCYVMMoyiMlGCI0PE8lYdJBd3SpxrkXjx1PvnlOEIU,8521
31
- astrbot/core/persona_mgr.py,sha256=iWvGsiHpky1fbPhmfQP1jDzHTWqv6g3GQ7ZROeOdaAc,7300
32
- astrbot/core/platform_message_history_mgr.py,sha256=qNd5No1HzaLKQ6XVFdJohaiwAB6cjJVXPSwgmxsUyAs,1514
33
- astrbot/core/umop_config_router.py,sha256=ky6mTDQ3tIq-7Xz5XiM9Djmg_7b7WD8ejQIt5qsjkr0,2962
34
- astrbot/core/updator.py,sha256=ry2Xg5ex1k_TdhOM1UMi_PsK2HF6H6n4OUlaXWLXs7c,4592
35
- astrbot/core/zip_updator.py,sha256=iSwa3S2fHXGqYA3ie4SEMrWNy6fSDpW5toCygQFdKSQ,8828
36
- astrbot/core/agent/agent.py,sha256=ruwCYv7ySS5zxmhD_49ABKJ8CZSS4lY2fQ2rTlitP-k,365
37
- astrbot/core/agent/handoff.py,sha256=_046TjTUda3CxtXR0ngb_z3f1XGTqx9pfhh28_Dl3Ts,1168
38
- astrbot/core/agent/hooks.py,sha256=AWCxG4pvq9uZ9D3yixhtsaqkIGTkYLAY7BsMxdfYC2Q,855
39
- astrbot/core/agent/mcp_client.py,sha256=74LKME_Mh4kPbZRG0NgcuIRsFaYMnUyH7OGiIWJS2ak,8493
40
- astrbot/core/agent/response.py,sha256=xLgAJc-_FpvA7J9ROaMUHuSZZ-NGI1LBkaR0qnwrp7I,260
41
- astrbot/core/agent/run_context.py,sha256=MDvJBvKXq17R0f4-vetJbwS0DhHG2dFqDJ6YmUXik4A,454
42
- astrbot/core/agent/tool.py,sha256=fXFkQGFIIoX9Y1GYj_LIGyrybOeEKSqOo7-3F10zf58,8920
43
- astrbot/core/agent/tool_executor.py,sha256=keliOV_lyrI6CALr-MAVCdLE-HjxZh9zygoY61IVkfM,384
44
- astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
45
- astrbot/core/agent/runners/base.py,sha256=exZS_d2BsrLz-xgeY9ZUPuXikBDUnKxO-dU3ZFQMhRs,1625
46
- astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=bg-YKJV2jRNyR2gu3FZNx_aKIFUYr5zjyzJWDlVLVpU,14940
47
- astrbot/core/config/__init__.py,sha256=0CO_3sKtI3WOwWT0k4i6TleWq1SAWJFfB8KjnYB8Zig,172
48
- astrbot/core/config/astrbot_config.py,sha256=X-b3c5m4msgJrdYFH2LXic5XKY0ViuUMdNZ335zqSBw,6335
49
- astrbot/core/config/default.py,sha256=CsZR9TnL-ZhGKZlCutKLcKJZssjFfmc7DkBZeihJfJg,133409
50
- astrbot/core/db/__init__.py,sha256=JOAMt7_j0y96CuArXJ-YY_qXisSartOZwyDTKf9ZDn8,8844
51
- astrbot/core/db/po.py,sha256=NDOJpUXI1i4BF1uymCj07opwXM0gdHBtwCoL16Xj4jc,7798
52
- astrbot/core/db/sqlite.py,sha256=_5-B2Jlare4twLG0TlO95bVTaLu0HAXsfpX5LOcoVWA,26082
53
- astrbot/core/db/migration/helper.py,sha256=zWh_bjEpINQ2Dm9xF7NEOblG7jFoMNq--7APT0CCDAQ,2078
54
- astrbot/core/db/migration/migra_3_to_4.py,sha256=I1CesaBbf5wj9agtNWxDl1V-qixmwdURbBQf5Vzagrk,15025
55
- astrbot/core/db/migration/migra_45_to_46.py,sha256=Fw6DG_eJ2zNZkEs2tmSqvgDDapslzLpm5SaJhGuN32E,1559
56
- astrbot/core/db/migration/shared_preferences_v3.py,sha256=tE11WIpwT-Q8yVBkw4eveRr1PmFdNRJQSprH4xdO3G4,1245
57
- astrbot/core/db/migration/sqlite_v3.py,sha256=U3Uysd_IGT4ObqCFE7yQeIo_1kBrAYb_r09Uy_Vvr3A,15002
58
- astrbot/core/db/vec_db/base.py,sha256=CGqXkxoUluu4L-m-Pkx04ecU2hHg7z6xs2fKlavTPuM,1809
59
- astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=S3gwB-ZL9aPJwDM5ia8a_t-xsfANKoslpJvtNd5ErcU,57
60
- astrbot/core/db/vec_db/faiss_impl/document_storage.py,sha256=CHNYUasgiIth35BRt2mMw_PfBwlcsSlaQ9ZaSemsYTE,13448
61
- astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=xh1ym9VJ1-TOJQ-u_thA31g9wpqlApKG2VUHmq-_F-Y,2920
62
- astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql,sha256=RiF1mnAFAHtyThOsS0qjvniUF5t9Y8k-gjSlh51p2x8,681
63
- astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=tgE0O58XIbd0tf7kAUdkSjFEiIB-PgjgWrT5VWhwdcI,7085
64
- astrbot/core/knowledge_base/kb_db_sqlite.py,sha256=_yWPGRnqYG7TG1nNqGmRP3cu5ZVmQvumX2rhvhrHLyo,11052
65
- astrbot/core/knowledge_base/kb_helper.py,sha256=46E1WNgAJwvIlPnEug7Do7TCE9nsIivrNbRcq36wP5Y,12030
66
- astrbot/core/knowledge_base/kb_mgr.py,sha256=DJY3noHavR9NzxqlAW-T9kjjssZ0-pyuaKnMKziZ2nI,9740
67
- astrbot/core/knowledge_base/models.py,sha256=k5iijWxEIhxkdinIVFQZ5MXVNi78tAh7uRhUl-qDwMA,3931
68
- astrbot/core/knowledge_base/chunking/__init__.py,sha256=l_N4AhYoRksf0Ba9DTRkagTMh-GPtJhIdrLhD2KlwOQ,157
69
- astrbot/core/knowledge_base/chunking/base.py,sha256=a8EcYz3Oo0IJVVGTN_Lgce72RHFF5CSx1-4rG2CiQP4,470
70
- astrbot/core/knowledge_base/chunking/fixed_size.py,sha256=yitpENu_IcFo8SsIEyt9IEPOhbWIqZrgZlTqYm1xTdc,1557
71
- astrbot/core/knowledge_base/chunking/recursive.py,sha256=6JXMFx7HrV_diYqUMym8QJ-rUYfpwSp1E-D8cvL2AYo,5721
72
- astrbot/core/knowledge_base/parsers/__init__.py,sha256=VedaV8zxk8TPBKzIQhUwbIop5FVN-INoNJYdTGDdqLg,258
73
- astrbot/core/knowledge_base/parsers/base.py,sha256=JAsLZ6-57PADmSaaBW9mBllNZIuSRziqW_zhV73vTn8,962
74
- astrbot/core/knowledge_base/parsers/markitdown_parser.py,sha256=L6W2PhkLIUP0xy8BOR1DwH7vMCDORztTnRG8rG-ykgg,700
75
- astrbot/core/knowledge_base/parsers/pdf_parser.py,sha256=TxUQHl4dp3lVXbdJMxX3ZWFjblg2hZFoyFKbsVK40wk,3091
76
- astrbot/core/knowledge_base/parsers/text_parser.py,sha256=XFo6y3eha4g4y3iZ_4KORoWdvYWX-zrjLUt4phSk2Ao,1094
77
- astrbot/core/knowledge_base/parsers/util.py,sha256=wjBUHBC3Cfau5hvspjDrqsMjxh5BF8NjZgNiQtShmss,398
78
- astrbot/core/knowledge_base/retrieval/__init__.py,sha256=UHpL0MqdRtpySSk2Yd-C_yd_m1nlhRK0rFv24lUCwlU,328
79
- astrbot/core/knowledge_base/retrieval/hit_stopwords.txt,sha256=8LikiRxpjLdAfJYyOQ2tUUPM9wEEZ0y3Mh_XXsxAeug,5271
80
- astrbot/core/knowledge_base/retrieval/manager.py,sha256=VP31I5lG_qQLFE7e27IljPT-lcd9MQbJi3jYT3FOFNk,8433
81
- astrbot/core/knowledge_base/retrieval/rank_fusion.py,sha256=Rf5_BShFRTTYp7I6VbNnUnaEp0OhIMSfb3u1seSXTr4,4412
82
- astrbot/core/knowledge_base/retrieval/sparse_retriever.py,sha256=O93uwRkZYJwS0C2Yi92bM4jPTVST0Ye13xaQOLfohek,3777
83
- astrbot/core/message/components.py,sha256=AzJACQYgw0Yo1iwSIyQWtfE8Xyo-6Q8KcQPE9yT5otQ,28208
84
- astrbot/core/message/message_event_result.py,sha256=dooPyzDVV4danPNQBvZsSXemGsihnBjW3qYByYUEa1s,7248
85
- astrbot/core/pipeline/__init__.py,sha256=-jo6a9lKmwY8oPoifJi0IMLPOVdknQKG30ppIyCs5Bg,1461
86
- astrbot/core/pipeline/context.py,sha256=3ySHVzhjdT54kTDMMKPse1EFdvb7XfmscNEp3YCJLVM,503
87
- astrbot/core/pipeline/context_utils.py,sha256=CmR45Er5yFpI-IPwDfbJA1rOhzgNybkZg149dpgtl6w,3548
88
- astrbot/core/pipeline/scheduler.py,sha256=HwFQnQ5LCh66qKXGTOP4arONbpVeM4qMQ8a-t_4DNCg,3288
89
- astrbot/core/pipeline/stage.py,sha256=dqEhUuQIhAZpPV4dULmVN39R0pIPjyw8Ftvs4Y1C4lY,1352
90
- astrbot/core/pipeline/content_safety_check/stage.py,sha256=yUF2h_E41VZQt70pCtIqr1-pgobbJ49omSnKUgg_G-M,1379
91
- astrbot/core/pipeline/content_safety_check/strategies/__init__.py,sha256=woX7d9yN3Fcp3VEC42qLOHL8rf3V3rVbM9dB_6EmWog,189
92
- astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=XCkEe9vxL1dKQ4BOhvxlIcOwy4971eObHF2jrEWz7-k,1007
93
- astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=j3Ns_IHc6-CENccoLH92ZhHyqmi61SWQUEB4wi2jFFE,904
94
- astrbot/core/pipeline/content_safety_check/strategies/strategy.py,sha256=G32Xf42EgeyEnhyPLVYlUMiSnDNHUUnnz_MG0PXqfV4,1234
95
- astrbot/core/pipeline/preprocess_stage/stage.py,sha256=QSgOswf8FHy1j4QozRxJv4qVd-RynG8eriHufian60U,4194
96
- astrbot/core/pipeline/process_stage/stage.py,sha256=2hCX5LdUCzX2RbleMLF_Yqiot9YDyutF3ePPOZsWeA0,2677
97
- astrbot/core/pipeline/process_stage/utils.py,sha256=1pGcZpQiMpdvULLrLpqTau9IwkTKTAE4L0XmcIPwPxU,2591
98
- astrbot/core/pipeline/process_stage/method/llm_request.py,sha256=LaI9GaFhzm1Du_dDvgfLM1nUhdXC3rjm4hI6XAUl39o,26945
99
- astrbot/core/pipeline/process_stage/method/star_request.py,sha256=IuPP7qnxvBgKV6a9D3wLU4_KU3Ec3Ml7IOADQCXDgqk,2501
100
- astrbot/core/pipeline/rate_limit_check/stage.py,sha256=I_GkpSgioN0-T_catMwpRKtxx-TiMmvu8vV_FE5ORIA,4072
101
- astrbot/core/pipeline/respond/stage.py,sha256=XE5yGsHGxESP0zAGmx3qHovP1wGaJDXUgfLb5Z4wasE,10837
102
- astrbot/core/pipeline/result_decorate/stage.py,sha256=mxTBH5jDWDrfQV2H6XCWMYJLCuPiTAZut4-Gqrpufk4,13847
103
- astrbot/core/pipeline/session_status_check/stage.py,sha256=woucuVbzzQoi62MDoP3lTha4es_fUu4p-IPCzSiYDBw,1262
104
- astrbot/core/pipeline/waking_check/stage.py,sha256=URBFmfid1CKhtCGjH7OzFmxBE-Gt9vv1eYlp6msIv_Q,8240
105
- astrbot/core/pipeline/whitelist_check/stage.py,sha256=VcmLs0VfmspNTsitL_WrZXfv2lR2Nktrb5JEWc1VJuw,2403
106
- astrbot/core/platform/__init__.py,sha256=jQ4UiThp7cDHfmIXAgBDodET87onl7mjii0CAD3RXTY,361
107
- astrbot/core/platform/astr_message_event.py,sha256=Re_tL9bugMXYpBu9WbWIeIPgHlDNy56FNGWShkCV5hg,14851
108
- astrbot/core/platform/astrbot_message.py,sha256=r7jlUPfaOEh0yCSHaS1KQtYarZ9B4ikqMZwDj-wLv_k,2655
109
- astrbot/core/platform/manager.py,sha256=UTA6Y4DE5gpkJtV_oEeKG1EH0KoaWHFT3RkjJ7HEwzM,8264
110
- astrbot/core/platform/message_session.py,sha256=Hitdfb7IK4SohaMFld0s0UlwLDpVw5UPTToh05bvH60,1076
111
- astrbot/core/platform/message_type.py,sha256=uGn5KN8B_7b9F5nFTpvLAXRlXx2VFHP3JmJjN8cC7fg,261
112
- astrbot/core/platform/platform.py,sha256=170_1Y1T5R-3nsu06y3i8Ote7zs8JASnskImp-IP04Q,1772
113
- astrbot/core/platform/platform_metadata.py,sha256=efQQrAquLK_8SxJm1h0HLR0k-RKS29Sbul-4H69JCyw,588
114
- astrbot/core/platform/register.py,sha256=5uLNIbxyMbQDAvTEZ5Iv9k9uT3sI0QASP6yChMcdkNM,1860
115
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=PN4h7TjH2UrQZX9bZmI6bGtmXgxHEx5GJREI-Vw0qX4,8036
116
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=X5Rk_5ZnQgzKazbnIoLf85gex35qSABDyp0SKzBk7g0,16768
117
- astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=vlvVkyroRSt7QaJiKaCadpDBvNJXPDn2uNaWqbzlm4o,8703
118
- astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=CYTVhpiIedNdLQxjKJlK26GxSWZGlUFNbxZZ5i3tM4o,2672
119
- astrbot/core/platform/sources/discord/client.py,sha256=mNAE81bYJSvdhbSXrR7MDZIqtGEqDYynpRCGZNf9-ag,4592
120
- astrbot/core/platform/sources/discord/components.py,sha256=QQYKLrdWjvzxMVrNZTxGW-rhdnn4L0CY5wbzxvQ0DY0,3845
121
- astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=aeR1lv8sY3XNSSnN8q1XJ5N8SuxBPri0sGlQJD3vWlg,18389
122
- astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=1YjlH3P-jY3tsE2dBFBnX9833_h55lI6A4xmLcOvlac,12008
123
- astrbot/core/platform/sources/lark/lark_adapter.py,sha256=JO_gBvAw6e2hTkXWOYeeSPUqdDjnsyVmtXh9SWXZO4A,8233
124
- astrbot/core/platform/sources/lark/lark_event.py,sha256=NXz624wDWV8NLi00va9KdMOvRo7o4FMafV-w2-Znzxg,5133
125
- astrbot/core/platform/sources/misskey/misskey_adapter.py,sha256=GrHoeogD4xe7H6c-yFEkDf5FrhEH2WfsqTGJyErGwkE,29088
126
- astrbot/core/platform/sources/misskey/misskey_api.py,sha256=JEvYyKCxjLNo0WdVE2MiqxKryn3ki9YqZRZmZZCxsvs,35773
127
- astrbot/core/platform/sources/misskey/misskey_event.py,sha256=Rt6I0ho1MyZUOVNKlxIQaPqzc1JR61HmBIKe7NVQOsQ,6464
128
- astrbot/core/platform/sources/misskey/misskey_utils.py,sha256=fTxgsScSTWJ1XqsKXYxMMhb_U3CXAyMKlzHQ7Wc5zic,18029
129
- astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=f8PA-kFZPe5iRqZZN4YYKj4wZSfozz8ySskxiE6BgpU,11954
130
- astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=6zJGUdXc-EkQp8ITPRYr99tVEFIRc20x4Fs-9QVT8Zk,7279
131
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PTW_WpZSzlFuchtpu0uAIMy2KcDMi_BBnr6tUgOJNZk,4295
132
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=BrxaNhG3sy5QAKf8DlZlum6R7m9X5Fm0SxBrKIC_1hg,499
133
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=YOH6yV6YqI0RlxMVLA29cPh7CkS7CBbdbFe1QmFVxSo,3812
134
- astrbot/core/platform/sources/satori/satori_adapter.py,sha256=wOsWD-Jb3Mps8fzfDGfokRB42k6pDN2gvpieajWULcQ,27815
135
- astrbot/core/platform/sources/satori/satori_event.py,sha256=I-ppTK4lPd2TY58LdiQ20eCGPtMPn-nSaWpS6J4zqhM,16095
136
- astrbot/core/platform/sources/slack/client.py,sha256=p0gCh9gj_VR8IacGg09-BXp2IM8C0oTnodrvEVmShMA,5637
137
- astrbot/core/platform/sources/slack/slack_adapter.py,sha256=BdZTCNXsO5nUKY2HrZD5tpxMzpnvL7n3_vr2JgJfDS0,15812
138
- astrbot/core/platform/sources/slack/slack_event.py,sha256=RYTJBqk5-CYQKgk-ejPuMKJyfaxSTqPjvfqKvPNg5Yw,8791
139
- astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=c4B1MaPiXhzHI4rOxFLMuRY8VloCFmAwPcHSztlEKNQ,15838
140
- astrbot/core/platform/sources/telegram/tg_event.py,sha256=L66nk47Tn2gdeOTK5wPdz5fkVBH-Gdb_I5mQir7DwP8,11353
141
- astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=bHzmEg1AMTBMQuZ5fp_B0L5RZ4HMaGEaYQi9N7BBskw,5964
142
- astrbot/core/platform/sources/webchat/webchat_event.py,sha256=qeKBQtUZVwknsFQQvwASs5Hybs-L3Rn-bjIUaji6n9o,5457
143
- astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
144
- astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=oXxy6ZJ-42_7yKZko9oepN0vBvVbLJRNjLbaxVr6ehk,40791
145
- astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py,sha256=3K7NKrE46s5jhbxLEzduLPQF4Pt4Rj6IXXdu0TwoZUw,6019
146
- astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py,sha256=tfQGwWXEra99hvrYTHI4einQSt7ATcLm57Uq4VTP7d8,6230
147
- astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=iDTE-CRCaER4zzo_1XbGXNiSVRkXSWkdEvBxi3EF9YQ,13621
148
- astrbot/core/platform/sources/wecom/wecom_event.py,sha256=WkP7EP7k4AS5KUrxF7ouByyR3qS-GMZODv3yORQb0kI,9181
149
- astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=xPPt3P3tqB6d0gzPT0-0YfTkYfzlMki1PNUMGWMkH74,10891
150
- astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=nHPOnrOEnEx2uawL1_6Ht0QB7k7G1Nbt3BLpPQekfZA,5787
151
- astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py,sha256=KlsziA-PImEQEChuxV4PHPpKH8oVZkPnsLdCeGBlRsw,10962
152
- astrbot/core/platform/sources/wecom_ai_bot/__init__.py,sha256=iVFuTOcEyTaEfOvrxjjUHiXkgZ2EL2lrsewyy_inwDk,437
153
- astrbot/core/platform/sources/wecom_ai_bot/ierror.py,sha256=mIcT8B5xY07RQ1Vd4QHMDsnehQDFz5fHgJDWSVRdWCE,817
154
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py,sha256=SYWarSySXLl_eb6rc4msTressPEQH1pWi4BDEnJOkDA,17083
155
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py,sha256=84I3GqIGO8ISEDbkKZ9Aw4_8G50sRTl93ACE5aKOnYc,11812
156
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=9uN_pMJJOcjNXw3kSlFP46PR6M8ba6L-cCe0pKm1uaw,5072
157
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py,sha256=6RCBipqWKRvN6o8xzdoMChgnA5eDWYUUEHg6rPng-OI,4668
158
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py,sha256=S4GWt10se99K0BlVkw9wFPYT5g3lGY4qUHlCD8oLQxo,5241
159
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py,sha256=L5MrXro7swHK9w4C0Qh_FSCQv1xY4YpIfyQHn6be818,5421
160
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=oWZSYSjlE-cGyXVq1aDlACnMGB4Q40rmD3EYRTQo8fg,10475
161
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=JpyQYaivJTUkPOMDz5ZXp4CLOQ6ek76eNLmrJXTXEEU,7196
162
- astrbot/core/provider/__init__.py,sha256=fhD_KB1-KpqJ7woaXDXc7kdlmL3XPQz3xlc5IkFDJJ4,171
163
- astrbot/core/provider/entites.py,sha256=-353AdRDA6ST4AS48cQ1RRAXHSy3F7pVS_28hW4cG2U,388
164
- astrbot/core/provider/entities.py,sha256=CkC-U9nafBKo2n2kLZqzukosDX7RuZWAK4DMBHQkasA,11238
165
- astrbot/core/provider/func_tool_manager.py,sha256=NuWMmAJaEwoJ3XCSvhwtmzDPdzX4K4BIRKuKgF0FlQk,20881
166
- astrbot/core/provider/manager.py,sha256=qcu_CpYfcf7BBmyHnR6sHoI3dVgcImG9zBqxf6fvgss,22361
167
- astrbot/core/provider/provider.py,sha256=I_240hwpzkHudVdeGrCEqJODjVR0yls3n84cviXyquI,9954
168
- astrbot/core/provider/register.py,sha256=bWAF9zWNnSYQWjmZIXiWgxFaeWIiWjEoEIN_xhmq3mM,1830
169
- astrbot/core/provider/sources/anthropic_source.py,sha256=VKTd1wc6_6Z5G4l7Sqy3sqEqid-IMbPgi1s7RiYpaBw,15202
170
- astrbot/core/provider/sources/azure_tts_source.py,sha256=V8WGpMFeYn-DhmE2FtYYYir-51T1S81XKvP08tslm8E,9350
171
- astrbot/core/provider/sources/coze_api_client.py,sha256=dr2QpON0I83eIyadh5XDEVnGl26Jm5rbXGzQKkLBBcc,10820
172
- astrbot/core/provider/sources/coze_source.py,sha256=KddH9Ryl-cuaobjVBY5ar_cPEb5MUDvc7Pqx9BTp9Oo,25215
173
- astrbot/core/provider/sources/dashscope_source.py,sha256=M93QNShgfdVy1rG8ffEKPUdHNLc02xEK-hGEbGvhr3k,7346
174
- astrbot/core/provider/sources/dashscope_tts.py,sha256=gMm876jMiL15bmMbkAaQSP-XKjSdL1rBLrXCFVQXJhQ,5522
175
- astrbot/core/provider/sources/dify_source.py,sha256=ktT-uHoCnDFQYMS1U5ueOHvuMvIVyX9qiPgWZADBTlE,11352
176
- astrbot/core/provider/sources/edge_tts_source.py,sha256=foO2E0Wdc2wJy8yMbLUyX0cjkP6MD4vPCbc8q3Ckkug,4716
177
- astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=Tu4wHh5txKDWn3_Z57hWgzTU8QUw1oVFBndAqmp4aLY,5439
178
- astrbot/core/provider/sources/gemini_embedding_source.py,sha256=jrB2NJqXuZQootOiAGzZfuh-xEaeUxGc4HAfqjqjRLk,2272
179
- astrbot/core/provider/sources/gemini_source.py,sha256=U7imSkoR1kQyTZN_ueCnbMlJ3bi6cjSNdKivLeOUGeU,28787
180
- astrbot/core/provider/sources/gemini_tts_source.py,sha256=mNcb9G6Lb58L2zoSYzroQGyASGrv3k4ZjmOIVvhii_o,2886
181
- astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=7wSQ32AJv4cisjnedENfpThd1kHDqYvnMSCpwbpNNM4,5936
182
- astrbot/core/provider/sources/gsvi_tts_source.py,sha256=EoYuAf85NVcPPbyRWkE_doWF-7R8IM5o9ozxbbvaFRk,2025
183
- astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=jNLP_4-UHq_Iekvjn3h7G6YZjTCGuII-hq-1RhzjSlE,5877
184
- astrbot/core/provider/sources/openai_embedding_source.py,sha256=3KH9WDXZEShESgu1lGgR_8wKzG88qKm0u5yR8lafBHQ,1634
185
- astrbot/core/provider/sources/openai_source.py,sha256=B3PjeCWhNpOIF1MXe5JeU93CAuFw8egFZAG0mKlLOzM,22021
186
- astrbot/core/provider/sources/openai_tts_api_source.py,sha256=HpLR-hnwNV2u5ohO78phCpkAVRXnBkOSSPLKMeyzGmQ,1624
187
- astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=2-NUDRiJJs3onxnrovdoVqUMI8bxGu2J2n3ZgwjxEm0,3828
188
- astrbot/core/provider/sources/vllm_rerank_source.py,sha256=Gv_veniilJ5v9lPGlQG_zmQYmHfhNggYIwj5p02CoLE,2275
189
- astrbot/core/provider/sources/volcengine_tts.py,sha256=eNS7XUtDTunGuZV8UaI4-ghNyY_fDRW0hiZPssBNsPQ,4143
190
- astrbot/core/provider/sources/whisper_api_source.py,sha256=qKE9Wx7Nse9pKovbDb__sVBeG7opR_yar5ZsbIYx9e4,2626
191
- astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=Qggu2IkNyCYVqNYc5NsonVcVpcLe-t04L-IpqnCzh_A,2636
192
- astrbot/core/provider/sources/xinference_rerank_source.py,sha256=VB6wHkdWlFexKgQ8udFC1LXDWPM-FdAVsVEfq0_twwQ,4343
193
- astrbot/core/provider/sources/xinference_stt_provider.py,sha256=Upzf_4ZDKxcJ2Ucrprb86JdYo_vv9RpA85d3ExKCYhI,7653
194
- astrbot/core/provider/sources/zhipu_source.py,sha256=wUXp9wjMoFjYKqjwkDDUWGduzkrqYvoffjsJch3iNnw,706
195
- astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
196
- astrbot/core/star/__init__.py,sha256=ynSwMrdCLyVMN3Q9flS_mcDDjdIGrkLBpfeDVoFj6PM,2080
197
- astrbot/core/star/config.py,sha256=f4h1YFt1Tn6S2D-LvnhM483qaD8JdWjl-TBRV9CeYBo,3593
198
- astrbot/core/star/context.py,sha256=Vhm1-IJy-iZuW09Y28ggx7oSJyOnL9tN9LR8IDdAj_0,13305
199
- astrbot/core/star/session_llm_manager.py,sha256=c9vPbL454_H--x5c-cjbiH-y1CrcMfTLfbhNmKgSYio,8467
200
- astrbot/core/star/session_plugin_manager.py,sha256=3vxbqPikZg4ZTHG_STvEKeqNplo78wknILSnFCmHTr0,5291
201
- astrbot/core/star/star.py,sha256=5jdigpi4WCTLROdg0q15cLOCgER6uNY9x3elqglCa_g,1831
202
- astrbot/core/star/star_handler.py,sha256=0hQq5QOre3AjPx7AfZfyfvx2k-iVBCaXg0hofvqE2k4,4888
203
- astrbot/core/star/star_manager.py,sha256=cVj4yQYPwS20Y9w1ThnVz8jfeG62xKFDPxcJi65muyE,36703
204
- astrbot/core/star/star_tools.py,sha256=tAX49jAcGc5mFYu7FW3MrTFgAKtX-_TIE3tfeEArGx4,10863
205
- astrbot/core/star/updator.py,sha256=IVml0S4WGmKRl42EeDbU0bP8-7d0yfEY0X9qpshI_RA,3129
206
- astrbot/core/star/filter/__init__.py,sha256=xhdp6MMbBJbCHDDtBcAzWZ86DSFTPKzj8RpE2Cdb8ls,469
207
- astrbot/core/star/filter/command.py,sha256=ejA7L5aCvS5V0ea6lQW0S3wJk6vezBO82k-e6OM9kag,8812
208
- astrbot/core/star/filter/command_group.py,sha256=PBvIWBji6EJejWVXppvOVRojGR8y6WfRF5qlyJ2jSRo,4981
209
- astrbot/core/star/filter/custom_filter.py,sha256=UPEfr-vYJR1NsLOp75A8Oa8RFkluEC3rkzbHM2ct0ek,2238
210
- astrbot/core/star/filter/event_message_type.py,sha256=R45Buoy9YALxnY6oanFlZMLfSZex2NAHPsl8DFSI_2Y,1162
211
- astrbot/core/star/filter/permission.py,sha256=GmyA2xqPCGVryLMa7OrWiuYRR-9pcQ6PaYOedPySH_0,915
212
- astrbot/core/star/filter/platform_adapter_type.py,sha256=hImNjA3ywU3_duXpoas3P_R_ZNCMKCwQak9facp3zXA,2206
213
- astrbot/core/star/filter/regex.py,sha256=yb4JVdQtWVvWm7Ba5Tt07HusPMccAvSrIEV0ewDPBus,543
214
- astrbot/core/star/register/__init__.py,sha256=DoVe-BX9jjYmGTzD3pr1sRfxzni5ryL3JPGwMBTY6iA,992
215
- astrbot/core/star/register/star.py,sha256=1Yml-_EGKr0uYUTmdu3CAVASIJss6JaBxoRP_D-oIKU,1903
216
- astrbot/core/star/register/star_handler.py,sha256=Dy6WkDyhHOe975uB9yAB7NsWFo0njZbspuHoYXQFIlw,16408
217
- astrbot/core/utils/astrbot_path.py,sha256=ZK-OmCTOxH63GQ4kBMGZs9ybKmKuHMNXdW9RKqLbYRk,1227
218
- astrbot/core/utils/command_parser.py,sha256=Cwd4zzyKEoC-er0a-9WZ5n2g4F8eH9p6BHxD96gjaVM,617
219
- astrbot/core/utils/dify_api_client.py,sha256=EpV3hPB0aFWGQtjgtS-SEM3EFmBoMmvEOKyU52TQgbY,4809
220
- astrbot/core/utils/io.py,sha256=gHviSn-HCqoImGhusgFrgtxzGIeewbfJPM1ZlRRkdNA,9423
221
- astrbot/core/utils/log_pipe.py,sha256=AU-y7vvAUtegH3XRenJqsFpmH0UIV4zUfLWh-5uPkCI,883
222
- astrbot/core/utils/metrics.py,sha256=uFGS3ZU81vcUbhiIrc-VAy9t5Lc6Oxh13wGYcl3oVGY,2456
223
- astrbot/core/utils/path_util.py,sha256=_PKjMtQBGD_C7o5BzN4-NSsqCffPSr9NwiHQHTSehkM,3130
224
- astrbot/core/utils/pip_installer.py,sha256=k_oTjh_mGLD3DXrRM7lhE9IP9gRzCyd6ofZV-dnLcHc,1941
225
- astrbot/core/utils/session_lock.py,sha256=fZDIbyy1nYfgsQSGUc_pWHZp4Kv6inXjENP8ay2bKGI,913
226
- astrbot/core/utils/session_waiter.py,sha256=pGcO8m-0ULeaAfMb_KKJhO7ZdKiotL8SOZMH2hf55eU,6763
227
- astrbot/core/utils/shared_preferences.py,sha256=nXIBQ1FZ-SQH7JupBR475KPQ1-6ljnzXzTRpEUiOPis,6529
228
- astrbot/core/utils/tencent_record_helper.py,sha256=-4EB0m00D5SzFv8x8z3C7i1TbBtxPOEyE6WVj9-R3JE,4974
229
- astrbot/core/utils/version_comparator.py,sha256=eIS6midUHyH02X6pKxlm24Zi4d-SGP3z2N7unsWit5U,3425
230
- astrbot/core/utils/t2i/__init__.py,sha256=SluLHjCoUmd1X7P2_WtedUk6xSLNxiDJo42y1ieJXcE,299
231
- astrbot/core/utils/t2i/local_strategy.py,sha256=KxPNLF9zXHTfATIAjnXenIlVVT5KjIvOexBjXa1Bl2E,29855
232
- astrbot/core/utils/t2i/network_strategy.py,sha256=OCrRr4ASVpQb2K4hYo0N26j8kTVNoDJ7SRG-Oh5IVn0,4826
233
- astrbot/core/utils/t2i/renderer.py,sha256=WPA1EBt8RQ3_3asnK9neIy66eg9WYdlPzJKh_D7aSxI,1924
234
- astrbot/core/utils/t2i/template_manager.py,sha256=EO6YO9A9bkwv_MLUNTqMtaFfd5r7sWpD0-K1qcRu1lI,4522
235
- astrbot/core/utils/t2i/template/astrbot_powershell.html,sha256=UcjetoIJG3pJRUHMDOor3Nhj7FFmVXXpkySkpXXztO4,4943
236
- astrbot/core/utils/t2i/template/base.html,sha256=fQvq4I4lrlH2s_jwAzj62lWeC4g87xXsYJMJ0XunCPA,6619
237
- astrbot/dashboard/server.py,sha256=EEm0l76TY39B14ZebPjsVEsi83-qVAzGw-kqOWksHaI,9296
238
- astrbot/dashboard/utils.py,sha256=SqfUqTaRseeiJWGgSlrRm4CuxgJgqw7MXODjl0J2pXA,5343
239
- astrbot/dashboard/routes/__init__.py,sha256=tx0Rp-SV0dfj7f9znL0d84MOxK4lRLeqfCQhBA7_aac,783
240
- astrbot/dashboard/routes/auth.py,sha256=igVjZWluaQpF-lrg-Ueb4IA553dA_Sn6pAxY34-83i8,2964
241
- astrbot/dashboard/routes/chat.py,sha256=6dGKXBkbGb5TGcIMFh6tr6bvdv7yekrgehSdkYSZ8Ls,13232
242
- astrbot/dashboard/routes/config.py,sha256=AucpVJgif082vMtemB8kD7YG7nF4nSF3NPIqJZj5Zx8,39961
243
- astrbot/dashboard/routes/conversation.py,sha256=4-jGtd5ApzcN1Jh6UAGet0A7oPkRMvvxk1gKc47KHmo,10768
244
- astrbot/dashboard/routes/file.py,sha256=y3yi4ari-ELwiDicuniBlvXhVe8d1JgWRl6FdC42v9k,706
245
- astrbot/dashboard/routes/knowledge_base.py,sha256=EKF2e1htzwQ85RHHRiOuzqUh986KoymU_i3DJdwC0vE,39547
246
- astrbot/dashboard/routes/log.py,sha256=hDl6Niz_Vs4xb64USjCBzdOcm68GDpEsQrNrLr8yKGc,2114
247
- astrbot/dashboard/routes/persona.py,sha256=6icnNNE8A0Yy1WI0INWD9ZPKC7VcZG-xHDfYElhaP8M,7857
248
- astrbot/dashboard/routes/plugin.py,sha256=aAGDd2mLblJuGoA4vyyteKEXqqVGN7kn0qTS5TMQnrA,20268
249
- astrbot/dashboard/routes/route.py,sha256=V-Wm88D0BmxSYAUbedunykbWy5p7Tggae9nDhxm7LZU,1545
250
- astrbot/dashboard/routes/session_management.py,sha256=yYcaXDwOiNYoLrseCxazLoFpxj_rsOUQ9-_8zifAAXE,26811
251
- astrbot/dashboard/routes/stat.py,sha256=KCtP0-f9g664gM2SOBgnU8uKx6zt93-5Kut-d7wd7zk,6910
252
- astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
253
- astrbot/dashboard/routes/t2i.py,sha256=scp05AxoJM9cubrkSMBu1BbIWP1BMS50eFEPZ9S6WKM,8893
254
- astrbot/dashboard/routes/tools.py,sha256=xVw6sG6xnANZm-M2JXT75ftH_I58MMJ0FqejODnP4Xw,14658
255
- astrbot/dashboard/routes/update.py,sha256=sWDH_diqNHugUoVzPSxLUHPtb_nv5YIEEIOGjA6VB7o,6713
256
- astrbot-4.5.1.dist-info/METADATA,sha256=yx-0Ug1-jT6oqcx0bOxn34bDSoLpUtZM0IWlAiMzugc,10920
257
- astrbot-4.5.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
258
- astrbot-4.5.1.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
259
- astrbot-4.5.1.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
260
- astrbot-4.5.1.dist-info/RECORD,,