AstrBot 4.23.1__tar.gz → 4.23.2__tar.gz

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 (2041) hide show
  1. astrbot-4.23.2/.github/workflows/build-docs.yml +49 -0
  2. astrbot-4.23.2/.github/workflows/dashboard_ci.yml +61 -0
  3. astrbot-4.23.2/.github/workflows/docker-image.yml +198 -0
  4. astrbot-4.23.2/.github/workflows/pr-title-check.yml +54 -0
  5. astrbot-4.23.2/.github/workflows/release.yml +248 -0
  6. astrbot-4.23.2/PKG-INFO +353 -0
  7. astrbot-4.23.2/README.md +286 -0
  8. astrbot-4.23.2/README_fr.md +277 -0
  9. astrbot-4.23.2/README_ja.md +278 -0
  10. astrbot-4.23.2/README_ru.md +278 -0
  11. astrbot-4.23.2/README_zh-TW.md +277 -0
  12. astrbot-4.23.2/README_zh.md +288 -0
  13. astrbot-4.23.2/astrbot/api/event/filter/__init__.py +72 -0
  14. astrbot-4.23.2/astrbot/cli/__init__.py +1 -0
  15. astrbot-4.23.2/astrbot/core/agent/runners/tool_loop_agent_runner.py +1341 -0
  16. astrbot-4.23.2/astrbot/core/astr_agent_hooks.py +109 -0
  17. astrbot-4.23.2/astrbot/core/config/default.py +4193 -0
  18. astrbot-4.23.2/astrbot/core/cron/manager.py +394 -0
  19. astrbot-4.23.2/astrbot/core/db/vec_db/faiss_impl/document_storage.py +748 -0
  20. astrbot-4.23.2/astrbot/core/db/vec_db/faiss_impl/vec_db.py +294 -0
  21. astrbot-4.23.2/astrbot/core/exceptions.py +32 -0
  22. astrbot-4.23.2/astrbot/core/knowledge_base/kb_helper.py +743 -0
  23. astrbot-4.23.2/astrbot/core/knowledge_base/retrieval/__init__.py +45 -0
  24. astrbot-4.23.2/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +176 -0
  25. astrbot-4.23.2/astrbot/core/knowledge_base/retrieval/tokenizer.py +39 -0
  26. astrbot-4.23.2/astrbot/core/pipeline/rate_limit_check/stage.py +101 -0
  27. astrbot-4.23.2/astrbot/core/platform/sources/kook/kook_adapter.py +499 -0
  28. astrbot-4.23.2/astrbot/core/platform/sources/kook/kook_client.py +494 -0
  29. astrbot-4.23.2/astrbot/core/platform/sources/kook/kook_roles_record.py +164 -0
  30. astrbot-4.23.2/astrbot/core/platform/sources/kook/kook_types.py +766 -0
  31. astrbot-4.23.2/astrbot/core/platform/sources/telegram/tg_adapter.py +762 -0
  32. astrbot-4.23.2/astrbot/core/platform/sources/weixin_oc/weixin_oc_adapter.py +1740 -0
  33. astrbot-4.23.2/astrbot/core/provider/manager.py +874 -0
  34. astrbot-4.23.2/astrbot/core/provider/sources/anthropic_source.py +777 -0
  35. astrbot-4.23.2/astrbot/core/provider/sources/minimax_token_plan_source.py +55 -0
  36. astrbot-4.23.2/astrbot/core/provider/sources/openai_source.py +1361 -0
  37. astrbot-4.23.2/astrbot/core/star/register/__init__.py +53 -0
  38. astrbot-4.23.2/astrbot/core/star/register/star_handler.py +739 -0
  39. astrbot-4.23.2/astrbot/core/star/star_handler.py +282 -0
  40. astrbot-4.23.2/astrbot/core/star/updator.py +81 -0
  41. astrbot-4.23.2/astrbot/core/tools/cron_tools.py +242 -0
  42. astrbot-4.23.2/astrbot/core/tools/message_tools.py +224 -0
  43. astrbot-4.23.2/astrbot/core/tools/web_search_tools.py +622 -0
  44. astrbot-4.23.2/astrbot/core/updator.py +185 -0
  45. astrbot-4.23.2/astrbot/core/utils/t2i/network_strategy.py +166 -0
  46. astrbot-4.23.2/astrbot/core/utils/t2i/template/astrbot_powershell.html +218 -0
  47. astrbot-4.23.2/astrbot/core/utils/t2i/template/astrbot_vitepress.html +552 -0
  48. astrbot-4.23.2/astrbot/core/utils/t2i/template/base.html +286 -0
  49. astrbot-4.23.2/astrbot/core/utils/t2i/template/shiki_runtime.iife.js +152 -0
  50. astrbot-4.23.2/astrbot/core/utils/t2i/template_manager.py +115 -0
  51. astrbot-4.23.2/astrbot/core/zip_updator.py +264 -0
  52. astrbot-4.23.2/astrbot/dashboard/routes/cron.py +283 -0
  53. astrbot-4.23.2/astrbot/dashboard/routes/knowledge_base.py +1288 -0
  54. astrbot-4.23.2/astrbot/dashboard/routes/plugin.py +876 -0
  55. astrbot-4.23.2/changelogs/v4.23.2.md +69 -0
  56. astrbot-4.23.2/dashboard/package.json +80 -0
  57. astrbot-4.23.2/dashboard/pnpm-lock.yaml +6082 -0
  58. astrbot-4.23.2/dashboard/scripts/build-t2i-shiki-runtime.mjs +232 -0
  59. astrbot-4.23.2/dashboard/src/components/shared/ConfigItemRenderer.vue +397 -0
  60. astrbot-4.23.2/dashboard/src/components/shared/ThemeAwareMarkdownCodeBlock.vue +41 -0
  61. astrbot-4.23.2/dashboard/src/composables/useMessages.ts +652 -0
  62. astrbot-4.23.2/dashboard/src/utils/providerUtils.js +69 -0
  63. astrbot-4.23.2/dashboard-artifact/AstrBot-v4.23.2-dashboard.zip +0 -0
  64. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AboutPage-ZGzmcG4o.js +1 -0
  65. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ActionRef-C9xiML8m.js +1 -0
  66. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-B7VI4y3Q.js +1 -0
  67. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-BU5vaql8.js +16 -0
  68. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-DFTbGTOJ.css +1 -0
  69. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/BlankLayout-CL3q1prg.js +1 -0
  70. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Chat-Bcqw7YIk.js +2 -0
  71. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-DdsIQYRq.js +1 -0
  72. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ChatPage-h7vq9EnA.js +1 -0
  73. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConfigPage-ytl-2uy7.js +1 -0
  74. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-Bj065Qm0.js +1 -0
  75. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConsolePage-HkO88R87.js +1 -0
  76. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConversationPage-Bm0CAByq.js +30 -0
  77. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/CronJobPage-_rb1GF1U.js +1 -0
  78. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/DocumentDetail--dSc99Vm.js +1 -0
  79. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ExtensionPage-MvenJqU-.js +3 -0
  80. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/FullLayout-BWgw9saq.js +1 -0
  81. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBDetail-ClzUZeBI.js +1 -0
  82. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBList-BB1wzeNc.js +1 -0
  83. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-qr9OyQqk.js +1 -0
  84. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/LoginPage-DOL3Azgf.js +5 -0
  85. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/MigrationDialog-BEeYkcwV.js +1 -0
  86. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaForm-BnRLeL_T.js +1 -0
  87. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaPage-CKf5xYtr.js +1 -0
  88. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-C7Ev13cV.js +1 -0
  89. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PlatformPage-CdqWyzxO.js +8 -0
  90. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-BKl1Ky1V.js +1 -0
  91. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ProxySelector-D14dxa8j.js +1 -0
  92. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-235nQuvj.js +8 -0
  93. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-Ko0fTdO_.js +1 -0
  94. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Settings-BI1S7U2b.js +1 -0
  95. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/StatsPage-B53ifwys.js +1 -0
  96. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-PvyM1oJt.js +1 -0
  97. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/SubAgentPage-CsOkPuqH.js +1 -0
  98. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock.vue_vue_type_script_setup_true_lang-DY0Z2Nzx.js +349 -0
  99. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Tooltip-BAuU336x.js +1 -0
  100. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/TracePage-DqPbL2HP.js +1 -0
  101. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/WelcomePage-BdTSMrPl.js +1 -0
  102. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/confirmDialog-u8ZoseUr.js +1 -0
  103. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/cssMode-XwIDGFmU.js +9 -0
  104. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/customizer-BLQ62lJl.js +1 -0
  105. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/freemarker2-Cdu43O_H.js +8 -0
  106. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/handlebars-DKw6vEg7.js +6 -0
  107. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/html-DzYzHWxC.js +6 -0
  108. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/htmlMode-6dqySmRq.js +9 -0
  109. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-BKbCjwQn.js +1 -0
  110. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-BaNIryD6.js +4 -0
  111. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-CB4UYt2h.js +1565 -0
  112. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-CV1ubCEg.js +1 -0
  113. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-M-s-UjXj.js +9 -0
  114. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index2-D3YQeqmT.js +1 -0
  115. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index3-Dxth3oeG.js +1 -0
  116. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index4-eO9FSTrw.js +22 -0
  117. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index5-B-pcXz-A.js +4 -0
  118. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index6-B-Qi4RIf.js +1 -0
  119. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/javascript-B6szJy0M.js +6 -0
  120. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/jsonMode-CgOlmwEI.js +15 -0
  121. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/liquid-CSpb0Hc_.js +6 -0
  122. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/md5-BzP2wN0h.js +9 -0
  123. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mdx-gtjazTU2.js +6 -0
  124. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mermaid-CC-eHTXq.js +2807 -0
  125. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mhchem-CGt9eKcP.js +261 -0
  126. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/python-DJ1jYaX_.js +6 -0
  127. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/razor-DbmUwO8s.js +6 -0
  128. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/restartAstrBot-CAtGvx2J.js +1 -0
  129. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/shiki-d2JWxtr_.js +13 -0
  130. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/tsMode-CrkN5bDG.js +16 -0
  131. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/typescript-CtHDghqL.js +6 -0
  132. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DJVHdoYS.js +11 -0
  133. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/version +1 -0
  134. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/vue-i18n-D6lMHCas.js +19 -0
  135. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/xml-1Xk71fdX.js +6 -0
  136. astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/yaml-BUmBfvoN.js +6 -0
  137. astrbot-4.23.2/dashboard-artifact/unpacked/dist/index.html +21 -0
  138. astrbot-4.23.2/docs/en/deploy/astrbot/package.md +24 -0
  139. astrbot-4.23.2/docs/en/dev/star/guides/listen-message-event.md +436 -0
  140. astrbot-4.23.2/docs/zh/deploy/astrbot/package.md +24 -0
  141. astrbot-4.23.2/docs/zh/dev/star/guides/listen-message-event.md +452 -0
  142. astrbot-4.23.2/docs/zh/dev/star/plugin.md +1725 -0
  143. astrbot-4.23.2/docs/zh/what-is-astrbot.md +37 -0
  144. astrbot-4.23.2/pyproject.toml +131 -0
  145. astrbot-4.23.2/tests/test_kb_import.py +255 -0
  146. astrbot-4.23.2/tests/test_kook/shared.py +111 -0
  147. astrbot-4.23.2/tests/test_kook/test_kook_client.py +156 -0
  148. astrbot-4.23.2/tests/test_kook/test_kook_event.py +175 -0
  149. astrbot-4.23.2/tests/test_kook/test_kook_types.py +172 -0
  150. astrbot-4.23.2/tests/test_updator_socks.py +359 -0
  151. astrbot-4.23.2/tests/unit/test_cron_manager.py +505 -0
  152. astrbot-4.23.2/tests/unit/test_document_storage_fts.py +75 -0
  153. astrbot-4.23.2/tests/unit/test_faiss_vec_db.py +46 -0
  154. astrbot-4.23.2/tests/unit/test_sparse_retriever.py +93 -0
  155. astrbot-4.23.1/.github/workflows/build-docs.yml +0 -43
  156. astrbot-4.23.1/.github/workflows/dashboard_ci.yml +0 -56
  157. astrbot-4.23.1/.github/workflows/docker-image.yml +0 -198
  158. astrbot-4.23.1/.github/workflows/pr-title-check.yml +0 -54
  159. astrbot-4.23.1/.github/workflows/release.yml +0 -248
  160. astrbot-4.23.1/PKG-INFO +0 -351
  161. astrbot-4.23.1/README.md +0 -284
  162. astrbot-4.23.1/README_fr.md +0 -274
  163. astrbot-4.23.1/README_ja.md +0 -275
  164. astrbot-4.23.1/README_ru.md +0 -275
  165. astrbot-4.23.1/README_zh-TW.md +0 -274
  166. astrbot-4.23.1/README_zh.md +0 -285
  167. astrbot-4.23.1/astrbot/api/event/filter/__init__.py +0 -68
  168. astrbot-4.23.1/astrbot/cli/__init__.py +0 -1
  169. astrbot-4.23.1/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1339
  170. astrbot-4.23.1/astrbot/core/astr_agent_hooks.py +0 -94
  171. astrbot-4.23.1/astrbot/core/config/default.py +0 -4180
  172. astrbot-4.23.1/astrbot/core/cron/manager.py +0 -382
  173. astrbot-4.23.1/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -392
  174. astrbot-4.23.1/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -210
  175. astrbot-4.23.1/astrbot/core/exceptions.py +0 -13
  176. astrbot-4.23.1/astrbot/core/knowledge_base/kb_helper.py +0 -658
  177. astrbot-4.23.1/astrbot/core/knowledge_base/retrieval/__init__.py +0 -14
  178. astrbot-4.23.1/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -139
  179. astrbot-4.23.1/astrbot/core/pipeline/rate_limit_check/stage.py +0 -99
  180. astrbot-4.23.1/astrbot/core/platform/sources/kook/kook_adapter.py +0 -416
  181. astrbot-4.23.1/astrbot/core/platform/sources/kook/kook_client.py +0 -484
  182. astrbot-4.23.1/astrbot/core/platform/sources/kook/kook_types.py +0 -505
  183. astrbot-4.23.1/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -747
  184. astrbot-4.23.1/astrbot/core/platform/sources/weixin_oc/weixin_oc_adapter.py +0 -1713
  185. astrbot-4.23.1/astrbot/core/provider/manager.py +0 -870
  186. astrbot-4.23.1/astrbot/core/provider/sources/anthropic_source.py +0 -777
  187. astrbot-4.23.1/astrbot/core/provider/sources/openai_source.py +0 -1359
  188. astrbot-4.23.1/astrbot/core/star/register/__init__.py +0 -49
  189. astrbot-4.23.1/astrbot/core/star/register/star_handler.py +0 -681
  190. astrbot-4.23.1/astrbot/core/star/star_handler.py +0 -264
  191. astrbot-4.23.1/astrbot/core/star/updator.py +0 -81
  192. astrbot-4.23.1/astrbot/core/tools/cron_tools.py +0 -235
  193. astrbot-4.23.1/astrbot/core/tools/message_tools.py +0 -210
  194. astrbot-4.23.1/astrbot/core/tools/web_search_tools.py +0 -618
  195. astrbot-4.23.1/astrbot/core/updator.py +0 -186
  196. astrbot-4.23.1/astrbot/core/utils/t2i/network_strategy.py +0 -137
  197. astrbot-4.23.1/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -184
  198. astrbot-4.23.1/astrbot/core/utils/t2i/template/base.html +0 -247
  199. astrbot-4.23.1/astrbot/core/utils/t2i/template_manager.py +0 -111
  200. astrbot-4.23.1/astrbot/core/zip_updator.py +0 -239
  201. astrbot-4.23.1/astrbot/dashboard/routes/cron.py +0 -279
  202. astrbot-4.23.1/astrbot/dashboard/routes/knowledge_base.py +0 -1273
  203. astrbot-4.23.1/astrbot/dashboard/routes/plugin.py +0 -874
  204. astrbot-4.23.1/dashboard/package.json +0 -79
  205. astrbot-4.23.1/dashboard/pnpm-lock.yaml +0 -6082
  206. astrbot-4.23.1/dashboard/src/components/shared/ConfigItemRenderer.vue +0 -397
  207. astrbot-4.23.1/dashboard/src/components/shared/ThemeAwareMarkdownCodeBlock.vue +0 -40
  208. astrbot-4.23.1/dashboard/src/composables/useMessages.ts +0 -597
  209. astrbot-4.23.1/dashboard/src/utils/providerUtils.js +0 -68
  210. astrbot-4.23.1/dashboard-artifact/AstrBot-v4.23.1-dashboard.zip +0 -0
  211. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/AboutPage-CYZRWf8_.js +0 -1
  212. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ActionRef-CbjKyCa3.js +0 -1
  213. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-DNeCCs-0.js +0 -1
  214. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-BV8ei1RN.js +0 -16
  215. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-SIa2ZTfo.css +0 -1
  216. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/BlankLayout-Bl9z8mAt.js +0 -1
  217. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/Chat-BrNtsrQ_.js +0 -2
  218. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-73H_t3xk.js +0 -1
  219. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ChatPage-BpSQ3-ME.js +0 -1
  220. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ConfigPage-BwSQKkjk.js +0 -1
  221. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-DGweRFIU.js +0 -1
  222. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ConsolePage-D4HyH8Gl.js +0 -1
  223. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ConversationPage-DwIvMuwh.js +0 -30
  224. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/CronJobPage-yG6FBAiW.js +0 -1
  225. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/DocumentDetail-C4wZ96Zu.js +0 -1
  226. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ExtensionPage-CQV0pcQQ.js +0 -3
  227. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/FullLayout-DV6S7O-M.js +0 -1
  228. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/KBDetail-DSK8nMDp.js +0 -1
  229. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/KBList-BRFkikqv.js +0 -1
  230. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-HzFSZDZX.js +0 -1
  231. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/LoginPage-B0EA5Kvb.js +0 -5
  232. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/MigrationDialog-BUyVWA9M.js +0 -1
  233. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/PersonaForm-BelcRdb0.js +0 -1
  234. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/PersonaPage-DAwtadA_.js +0 -1
  235. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-Bw08d40C.js +0 -1
  236. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/PlatformPage-DctZMkoW.js +0 -8
  237. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-BeRSU9_k.js +0 -1
  238. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ProxySelector-D-k4ZZtJ.js +0 -1
  239. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-BYZJ3kpK.js +0 -8
  240. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-DUVE2ks3.js +0 -1
  241. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/Settings-BFr_L-GI.js +0 -1
  242. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/StatsPage-CLBy18go.js +0 -1
  243. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-CMbjxCcT.js +0 -1
  244. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/SubAgentPage-DVmExUj_.js +0 -1
  245. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock.vue_vue_type_script_setup_true_lang-B0bpc5oP.js +0 -349
  246. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/Tooltip-CI9Vu1rv.js +0 -1
  247. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/TracePage-ySTDzYmZ.js +0 -1
  248. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/WelcomePage-DugIgPAQ.js +0 -1
  249. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/confirmDialog-CC64VZnQ.js +0 -1
  250. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/cssMode-CbsU7PAy.js +0 -9
  251. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/customizer-BZrghUng.js +0 -1
  252. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/freemarker2-CJKG8hsd.js +0 -8
  253. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/handlebars-gvF_hRXk.js +0 -6
  254. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/html-BKGDtaxU.js +0 -6
  255. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/htmlMode-DDbrTMUU.js +0 -9
  256. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index-Bto97APZ.js +0 -4
  257. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index-CiZG2D7-.js +0 -1
  258. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index-Poxk15A6.js +0 -1
  259. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index-mFbk4sQr.js +0 -1565
  260. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index-qaCiHVpS.js +0 -9
  261. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index2-DrGj_e1I.js +0 -1
  262. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index3-BVzg1LzW.js +0 -1
  263. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index4-DLYNRdNW.js +0 -22
  264. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index5-nwbsy5sX.js +0 -4
  265. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/index6-DojhQYkD.js +0 -1
  266. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/javascript-CqIBIFyJ.js +0 -6
  267. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/jsonMode-qqlmbXO5.js +0 -15
  268. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/liquid-CNqJy09c.js +0 -6
  269. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/md5-ChG-ztEY.js +0 -9
  270. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/mdx-DnLMyAF3.js +0 -6
  271. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/mermaid-DgiCda_S.js +0 -2807
  272. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/mhchem-Bx69Ak0P.js +0 -261
  273. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/python-Dwep2u7G.js +0 -6
  274. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/razor-EuuqheWG.js +0 -6
  275. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/restartAstrBot-i5i44RY4.js +0 -1
  276. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/shiki-B_ruubVg.js +0 -13
  277. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/tsMode-j2UIcun2.js +0 -16
  278. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/typescript-Bd4waevA.js +0 -6
  279. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/useMediaHandling-B2Hr85sy.js +0 -11
  280. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/version +0 -1
  281. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/vue-i18n-k507pg4o.js +0 -19
  282. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/xml-CJzyVpXS.js +0 -6
  283. astrbot-4.23.1/dashboard-artifact/unpacked/dist/assets/yaml-BlmCqO9P.js +0 -6
  284. astrbot-4.23.1/dashboard-artifact/unpacked/dist/index.html +0 -21
  285. astrbot-4.23.1/docs/en/deploy/astrbot/package.md +0 -22
  286. astrbot-4.23.1/docs/en/dev/star/guides/listen-message-event.md +0 -348
  287. astrbot-4.23.1/docs/zh/deploy/astrbot/package.md +0 -22
  288. astrbot-4.23.1/docs/zh/dev/star/guides/listen-message-event.md +0 -364
  289. astrbot-4.23.1/docs/zh/dev/star/plugin.md +0 -1635
  290. astrbot-4.23.1/docs/zh/what-is-astrbot.md +0 -37
  291. astrbot-4.23.1/pyproject.toml +0 -131
  292. astrbot-4.23.1/tests/test_kb_import.py +0 -209
  293. astrbot-4.23.1/tests/test_kook/shared.py +0 -5
  294. astrbot-4.23.1/tests/test_kook/test_kook_event.py +0 -188
  295. astrbot-4.23.1/tests/test_kook/test_kook_types.py +0 -148
  296. astrbot-4.23.1/tests/unit/test_cron_manager.py +0 -504
  297. astrbot-4.23.1/tests/unit/test_faiss_vec_db.py +0 -20
  298. {astrbot-4.23.1 → astrbot-4.23.2}/.dockerignore +0 -0
  299. {astrbot-4.23.1 → astrbot-4.23.2}/.github/FUNDING.yml +0 -0
  300. {astrbot-4.23.1 → astrbot-4.23.2}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
  301. {astrbot-4.23.1 → astrbot-4.23.2}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  302. {astrbot-4.23.1 → astrbot-4.23.2}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
  303. {astrbot-4.23.1 → astrbot-4.23.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  304. {astrbot-4.23.1 → astrbot-4.23.2}/.github/auto_assign.yml +0 -0
  305. {astrbot-4.23.1 → astrbot-4.23.2}/.github/copilot-instructions.md +0 -0
  306. {astrbot-4.23.1 → astrbot-4.23.2}/.github/dependabot.yml +0 -0
  307. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/code-format.yml +0 -0
  308. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/codeql.yml +0 -0
  309. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/coverage_test.yml +0 -0
  310. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/smoke_test.yml +0 -0
  311. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/stale.yml +0 -0
  312. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/sync-wiki.yml +0 -0
  313. {astrbot-4.23.1 → astrbot-4.23.2}/.github/workflows/unit_tests.yml +0 -0
  314. {astrbot-4.23.1 → astrbot-4.23.2}/.gitignore +0 -0
  315. {astrbot-4.23.1 → astrbot-4.23.2}/.pre-commit-config.yaml +0 -0
  316. {astrbot-4.23.1 → astrbot-4.23.2}/.python-version +0 -0
  317. {astrbot-4.23.1 → astrbot-4.23.2}/CODE_OF_CONDUCT.md +0 -0
  318. {astrbot-4.23.1 → astrbot-4.23.2}/CONTRIBUTING.md +0 -0
  319. {astrbot-4.23.1 → astrbot-4.23.2}/Dockerfile +0 -0
  320. {astrbot-4.23.1 → astrbot-4.23.2}/EULA.md +0 -0
  321. {astrbot-4.23.1 → astrbot-4.23.2}/FIRST_NOTICE.en-US.md +0 -0
  322. {astrbot-4.23.1 → astrbot-4.23.2}/FIRST_NOTICE.md +0 -0
  323. {astrbot-4.23.1 → astrbot-4.23.2}/LICENSE +0 -0
  324. {astrbot-4.23.1 → astrbot-4.23.2}/Makefile +0 -0
  325. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/__init__.py +0 -0
  326. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/__init__.py +0 -0
  327. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/all.py +0 -0
  328. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/event/__init__.py +0 -0
  329. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/message_components.py +0 -0
  330. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/platform/__init__.py +0 -0
  331. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/provider/__init__.py +0 -0
  332. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/star/__init__.py +0 -0
  333. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/api/util/__init__.py +0 -0
  334. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/astrbot/long_term_memory.py +0 -0
  335. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/astrbot/main.py +0 -0
  336. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/astrbot/metadata.yaml +0 -0
  337. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/__init__.py +0 -0
  338. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/admin.py +0 -0
  339. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/conversation.py +0 -0
  340. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/help.py +0 -0
  341. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/setunset.py +0 -0
  342. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/sid.py +0 -0
  343. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py +0 -0
  344. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/main.py +0 -0
  345. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/builtin_commands/metadata.yaml +0 -0
  346. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/session_controller/main.py +0 -0
  347. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/builtin_stars/session_controller/metadata.yaml +0 -0
  348. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/__main__.py +0 -0
  349. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/commands/__init__.py +0 -0
  350. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/commands/cmd_conf.py +0 -0
  351. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/commands/cmd_init.py +0 -0
  352. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/commands/cmd_plug.py +0 -0
  353. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/commands/cmd_run.py +0 -0
  354. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/utils/__init__.py +0 -0
  355. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/utils/basic.py +0 -0
  356. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/utils/plugin.py +0 -0
  357. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/cli/utils/version_comparator.py +0 -0
  358. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/__init__.py +0 -0
  359. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/agent.py +0 -0
  360. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/context/compressor.py +0 -0
  361. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/context/config.py +0 -0
  362. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/context/manager.py +0 -0
  363. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/context/token_counter.py +0 -0
  364. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/context/truncator.py +0 -0
  365. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/handoff.py +0 -0
  366. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/hooks.py +0 -0
  367. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/mcp_client.py +0 -0
  368. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/message.py +0 -0
  369. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/response.py +0 -0
  370. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/run_context.py +0 -0
  371. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/__init__.py +0 -0
  372. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/base.py +0 -0
  373. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
  374. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
  375. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
  376. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/deerflow/constants.py +0 -0
  377. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/deerflow/deerflow_agent_runner.py +0 -0
  378. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/deerflow/deerflow_api_client.py +0 -0
  379. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/deerflow/deerflow_content_mapper.py +0 -0
  380. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/deerflow/deerflow_stream_utils.py +0 -0
  381. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
  382. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
  383. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/tool.py +0 -0
  384. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/tool_executor.py +0 -0
  385. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/agent/tool_image_cache.py +0 -0
  386. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astr_agent_context.py +0 -0
  387. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astr_agent_run_util.py +0 -0
  388. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astr_agent_tool_exec.py +0 -0
  389. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astr_main_agent.py +0 -0
  390. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astr_main_agent_resources.py +0 -0
  391. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/astrbot_config_mgr.py +0 -0
  392. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/backup/__init__.py +0 -0
  393. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/backup/constants.py +0 -0
  394. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/backup/exporter.py +0 -0
  395. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/backup/importer.py +0 -0
  396. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/base.py +0 -0
  397. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/bay_manager.py +0 -0
  398. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/boxlite.py +0 -0
  399. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/local.py +0 -0
  400. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/shipyard.py +0 -0
  401. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/shipyard_neo.py +0 -0
  402. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/booters/shipyard_search_file_util.py +0 -0
  403. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/computer_client.py +0 -0
  404. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/file_read_utils.py +0 -0
  405. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/olayer/__init__.py +0 -0
  406. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/olayer/browser.py +0 -0
  407. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/olayer/filesystem.py +0 -0
  408. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/olayer/python.py +0 -0
  409. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/computer/olayer/shell.py +0 -0
  410. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/config/__init__.py +0 -0
  411. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/config/astrbot_config.py +0 -0
  412. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/config/i18n_utils.py +0 -0
  413. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/conversation_mgr.py +0 -0
  414. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/core_lifecycle.py +0 -0
  415. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/cron/__init__.py +0 -0
  416. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/cron/events.py +0 -0
  417. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/__init__.py +0 -0
  418. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/helper.py +0 -0
  419. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
  420. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
  421. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/migra_token_usage.py +0 -0
  422. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
  423. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
  424. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/migration/sqlite_v3.py +0 -0
  425. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/po.py +0 -0
  426. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/sqlite.py +0 -0
  427. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/vec_db/base.py +0 -0
  428. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
  429. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
  430. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
  431. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/event_bus.py +0 -0
  432. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/file_token_service.py +0 -0
  433. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/initial_loader.py +0 -0
  434. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
  435. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/chunking/base.py +0 -0
  436. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
  437. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
  438. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
  439. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
  440. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/models.py +0 -0
  441. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
  442. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/base.py +0 -0
  443. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
  444. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
  445. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
  446. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
  447. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/parsers/util.py +0 -0
  448. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/prompts.py +0 -0
  449. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
  450. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
  451. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
  452. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/log.py +0 -0
  453. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/message/components.py +0 -0
  454. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/message/message_event_result.py +0 -0
  455. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/persona_error_reply.py +0 -0
  456. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/persona_mgr.py +0 -0
  457. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/__init__.py +0 -0
  458. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/bootstrap.py +0 -0
  459. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
  460. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
  461. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
  462. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
  463. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
  464. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/context.py +0 -0
  465. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/context_utils.py +0 -0
  466. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
  467. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/follow_up.py +0 -0
  468. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
  469. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +0 -0
  470. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
  471. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
  472. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/process_stage/stage.py +0 -0
  473. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/respond/stage.py +0 -0
  474. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
  475. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/scheduler.py +0 -0
  476. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
  477. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/stage.py +0 -0
  478. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/stage_order.py +0 -0
  479. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/waking_check/stage.py +0 -0
  480. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
  481. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/__init__.py +0 -0
  482. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/astr_message_event.py +0 -0
  483. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/astrbot_message.py +0 -0
  484. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/manager.py +0 -0
  485. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/message_session.py +0 -0
  486. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/message_type.py +0 -0
  487. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/platform.py +0 -0
  488. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/platform_metadata.py +0 -0
  489. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/register.py +0 -0
  490. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
  491. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
  492. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
  493. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
  494. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/discord/client.py +0 -0
  495. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/discord/components.py +0 -0
  496. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
  497. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
  498. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/kook/kook_config.py +0 -0
  499. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/kook/kook_event.py +0 -0
  500. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
  501. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
  502. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/lark/server.py +0 -0
  503. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/line/line_adapter.py +0 -0
  504. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/line/line_api.py +0 -0
  505. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/line/line_event.py +0 -0
  506. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/mattermost/__init__.py +0 -0
  507. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/mattermost/client.py +0 -0
  508. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/mattermost/mattermost_adapter.py +0 -0
  509. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/mattermost/mattermost_event.py +0 -0
  510. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
  511. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
  512. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
  513. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
  514. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
  515. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
  516. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
  517. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
  518. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
  519. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
  520. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
  521. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/slack/client.py +0 -0
  522. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
  523. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
  524. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
  525. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/webchat/message_parts_helper.py +0 -0
  526. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -0
  527. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
  528. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
  529. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
  530. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
  531. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
  532. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
  533. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
  534. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
  535. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
  536. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
  537. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
  538. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
  539. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_long_connection.py +0 -0
  540. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
  541. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
  542. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
  543. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_webhook.py +0 -0
  544. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/weixin_oc/weixin_oc_client.py +0 -0
  545. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/weixin_oc/weixin_oc_event.py +0 -0
  546. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
  547. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
  548. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/platform_message_history_mgr.py +0 -0
  549. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/__init__.py +0 -0
  550. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/entites.py +0 -0
  551. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/entities.py +0 -0
  552. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/func_tool_manager.py +0 -0
  553. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/provider.py +0 -0
  554. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/register.py +0 -0
  555. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
  556. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
  557. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
  558. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
  559. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
  560. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
  561. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/gemini_source.py +0 -0
  562. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
  563. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/genie_tts.py +0 -0
  564. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/groq_source.py +0 -0
  565. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
  566. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
  567. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/kimi_code_source.py +0 -0
  568. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/longcat_source.py +0 -0
  569. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/mimo_api_common.py +0 -0
  570. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/mimo_stt_api_source.py +0 -0
  571. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/mimo_tts_api_source.py +0 -0
  572. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
  573. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/nvidia_rerank_source.py +0 -0
  574. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/oai_aihubmix_source.py +0 -0
  575. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
  576. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
  577. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/openrouter_source.py +0 -0
  578. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
  579. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
  580. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
  581. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
  582. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
  583. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/xai_source.py +0 -0
  584. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
  585. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
  586. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/provider/sources/zhipu_source.py +0 -0
  587. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/sentinels.py +0 -0
  588. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/skills/__init__.py +0 -0
  589. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/skills/neo_skill_sync.py +0 -0
  590. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/skills/skill_manager.py +0 -0
  591. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/README.md +0 -0
  592. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/__init__.py +0 -0
  593. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/base.py +0 -0
  594. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/command_management.py +0 -0
  595. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/config.py +0 -0
  596. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/context.py +0 -0
  597. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/error_messages.py +0 -0
  598. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/__init__.py +0 -0
  599. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/command.py +0 -0
  600. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/command_group.py +0 -0
  601. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/custom_filter.py +0 -0
  602. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/event_message_type.py +0 -0
  603. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/permission.py +0 -0
  604. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
  605. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/filter/regex.py +0 -0
  606. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/register/star.py +0 -0
  607. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/session_llm_manager.py +0 -0
  608. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/session_plugin_manager.py +0 -0
  609. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/star.py +0 -0
  610. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/star_manager.py +0 -0
  611. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/star/star_tools.py +0 -0
  612. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/subagent_orchestrator.py +0 -0
  613. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/__init__.py +0 -0
  614. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/fs.py +0 -0
  615. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/python.py +0 -0
  616. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/shell.py +0 -0
  617. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/shipyard_neo/__init__.py +0 -0
  618. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/shipyard_neo/browser.py +0 -0
  619. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/shipyard_neo/neo_skills.py +0 -0
  620. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/computer_tools/util.py +0 -0
  621. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/knowledge_base_tools.py +0 -0
  622. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/tools/registry.py +0 -0
  623. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/umop_config_router.py +0 -0
  624. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/active_event_registry.py +0 -0
  625. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/astrbot_path.py +0 -0
  626. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/command_parser.py +0 -0
  627. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/config_number.py +0 -0
  628. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/core_constraints.py +0 -0
  629. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/datetime_utils.py +0 -0
  630. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/error_redaction.py +0 -0
  631. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/file_extract.py +0 -0
  632. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/history_saver.py +0 -0
  633. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/http_ssl.py +0 -0
  634. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/image_ref_utils.py +0 -0
  635. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/io.py +0 -0
  636. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/llm_metadata.py +0 -0
  637. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/log_pipe.py +0 -0
  638. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/media_utils.py +0 -0
  639. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/metrics.py +0 -0
  640. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/migra_helper.py +0 -0
  641. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/network_utils.py +0 -0
  642. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/path_util.py +0 -0
  643. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/pip_installer.py +0 -0
  644. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/plugin_kv_store.py +0 -0
  645. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/__init__.py +0 -0
  646. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/chain_parser.py +0 -0
  647. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/extractor.py +0 -0
  648. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/image_refs.py +0 -0
  649. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/image_resolver.py +0 -0
  650. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/onebot_client.py +0 -0
  651. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message/settings.py +0 -0
  652. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/quoted_message_parser.py +0 -0
  653. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/requirements_utils.py +0 -0
  654. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/runtime_env.py +0 -0
  655. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/session_lock.py +0 -0
  656. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/session_waiter.py +0 -0
  657. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/shared_preferences.py +0 -0
  658. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/storage_cleaner.py +0 -0
  659. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/string_utils.py +0 -0
  660. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/t2i/__init__.py +0 -0
  661. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/t2i/local_strategy.py +0 -0
  662. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/t2i/renderer.py +0 -0
  663. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/temp_dir_cleaner.py +0 -0
  664. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/tencent_record_helper.py +0 -0
  665. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/trace.py +0 -0
  666. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/version_comparator.py +0 -0
  667. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/core/utils/webhook_utils.py +0 -0
  668. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/__init__.py +0 -0
  669. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/api_key.py +0 -0
  670. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/auth.py +0 -0
  671. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/backup.py +0 -0
  672. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/chat.py +0 -0
  673. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/chatui_project.py +0 -0
  674. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/command.py +0 -0
  675. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/config.py +0 -0
  676. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/conversation.py +0 -0
  677. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/file.py +0 -0
  678. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/live_chat.py +0 -0
  679. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/log.py +0 -0
  680. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/open_api.py +0 -0
  681. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/persona.py +0 -0
  682. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/platform.py +0 -0
  683. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/route.py +0 -0
  684. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/session_management.py +0 -0
  685. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/skills.py +0 -0
  686. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/stat.py +0 -0
  687. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/static_file.py +0 -0
  688. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/subagent.py +0 -0
  689. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/t2i.py +0 -0
  690. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/tools.py +0 -0
  691. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/update.py +0 -0
  692. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/routes/util.py +0 -0
  693. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/server.py +0 -0
  694. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/dashboard/utils.py +0 -0
  695. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/utils/__init__.py +0 -0
  696. {astrbot-4.23.1 → astrbot-4.23.2}/astrbot/utils/http_ssl_common.py +0 -0
  697. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.0.md +0 -0
  698. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.1.md +0 -0
  699. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.10.md +0 -0
  700. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.11.md +0 -0
  701. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.12.md +0 -0
  702. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.13.md +0 -0
  703. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.14.md +0 -0
  704. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.15.md +0 -0
  705. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.16.md +0 -0
  706. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.17.md +0 -0
  707. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.18.md +0 -0
  708. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.19.md +0 -0
  709. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.20.md +0 -0
  710. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.21.md +0 -0
  711. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.22.md +0 -0
  712. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.23.md +0 -0
  713. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.24.md +0 -0
  714. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.25.md +0 -0
  715. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.26.md +0 -0
  716. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.27.md +0 -0
  717. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.28.md +0 -0
  718. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.29.md +0 -0
  719. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.3.md +0 -0
  720. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.30.md +0 -0
  721. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.31.md +0 -0
  722. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.32.md +0 -0
  723. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.33.md +0 -0
  724. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.35.md +0 -0
  725. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.36.md +0 -0
  726. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.37.md +0 -0
  727. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.38.md +0 -0
  728. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.39.md +0 -0
  729. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.4.md +0 -0
  730. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.5.md +0 -0
  731. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.6.md +0 -0
  732. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.7.md +0 -0
  733. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.8.md +0 -0
  734. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.4.9.md +0 -0
  735. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.0.md +0 -0
  736. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.1.md +0 -0
  737. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.10.md +0 -0
  738. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.11.md +0 -0
  739. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.12.md +0 -0
  740. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.13.md +0 -0
  741. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.14.md +0 -0
  742. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.15.md +0 -0
  743. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.16.md +0 -0
  744. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.17.md +0 -0
  745. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.18.md +0 -0
  746. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.19.md +0 -0
  747. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.2.md +0 -0
  748. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.20.md +0 -0
  749. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.21.md +0 -0
  750. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.22.md +0 -0
  751. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.23.md +0 -0
  752. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.24.md +0 -0
  753. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.25.md +0 -0
  754. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.26.md +0 -0
  755. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.27.md +0 -0
  756. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.3.1.md +0 -0
  757. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.3.2.md +0 -0
  758. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.3.md +0 -0
  759. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.4.md +0 -0
  760. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.5.md +0 -0
  761. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.6.md +0 -0
  762. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.7.md +0 -0
  763. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.8.md +0 -0
  764. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v3.5.9.md +0 -0
  765. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.0.0-beta.3.md +0 -0
  766. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.0.0-beta.4.md +0 -0
  767. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.0.0-beta.5.md +0 -0
  768. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.0.0.md +0 -0
  769. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.0.md +0 -0
  770. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.1.md +0 -0
  771. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.2.md +0 -0
  772. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.3.md +0 -0
  773. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.4.md +0 -0
  774. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.5.md +0 -0
  775. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.6.md +0 -0
  776. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.1.7.md +0 -0
  777. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.0-alpha.1.md +0 -0
  778. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.0-alpha.2.md +0 -0
  779. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.0.md +0 -0
  780. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.1.md +0 -0
  781. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.2.md +0 -0
  782. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.3.md +0 -0
  783. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.4.md +0 -0
  784. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.5.md +0 -0
  785. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.10.6.md +0 -0
  786. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.11.0.md +0 -0
  787. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.11.1.md +0 -0
  788. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.11.2.md +0 -0
  789. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.11.3.md +0 -0
  790. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.11.4.md +0 -0
  791. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.12.0.md +0 -0
  792. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.12.1.md +0 -0
  793. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.12.2.md +0 -0
  794. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.12.3.md +0 -0
  795. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.12.4.md +0 -0
  796. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.13.0.md +0 -0
  797. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.13.1.md +0 -0
  798. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.13.2.md +0 -0
  799. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.0.md +0 -0
  800. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.1.md +0 -0
  801. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.2.md +0 -0
  802. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.3.md +0 -0
  803. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.4.md +0 -0
  804. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.5.md +0 -0
  805. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.6.md +0 -0
  806. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.7.md +0 -0
  807. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.14.8.md +0 -0
  808. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.15.0.md +0 -0
  809. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.16.0.md +0 -0
  810. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.0.md +0 -0
  811. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.1.md +0 -0
  812. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.2.md +0 -0
  813. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.3.md +0 -0
  814. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.4.md +0 -0
  815. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.5.md +0 -0
  816. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.17.6.md +0 -0
  817. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.18.0.md +0 -0
  818. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.18.1.md +0 -0
  819. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.18.2.md +0 -0
  820. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.18.3.md +0 -0
  821. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.19.2.md +0 -0
  822. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.19.3.md +0 -0
  823. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.19.4.md +0 -0
  824. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.19.5.md +0 -0
  825. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.2.0.md +0 -0
  826. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.2.1.md +0 -0
  827. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.20.0.md +0 -0
  828. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.20.1.md +0 -0
  829. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.21.0.md +0 -0
  830. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.22.0.md +0 -0
  831. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.22.1.md +0 -0
  832. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.22.2.md +0 -0
  833. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.22.3.md +0 -0
  834. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.23.0-beta.1.md +0 -0
  835. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.23.0.md +0 -0
  836. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.23.1.md +0 -0
  837. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.3.0.md +0 -0
  838. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.3.1.md +0 -0
  839. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.3.2.md +0 -0
  840. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.3.3.md +0 -0
  841. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.3.5.md +0 -0
  842. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.0.md +0 -0
  843. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.1.md +0 -0
  844. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.2.md +0 -0
  845. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.3.md +0 -0
  846. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.4.md +0 -0
  847. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.5.md +0 -0
  848. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.6.md +0 -0
  849. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.7.md +0 -0
  850. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.5.8.md +0 -0
  851. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.6.0.md +0 -0
  852. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.6.1.md +0 -0
  853. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.7.0.md +0 -0
  854. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.7.1.md +0 -0
  855. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.7.3.md +0 -0
  856. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.7.4.md +0 -0
  857. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.8.0.md +0 -0
  858. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.9.0.md +0 -0
  859. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.9.1.md +0 -0
  860. {astrbot-4.23.1 → astrbot-4.23.2}/changelogs/v4.9.2.md +0 -0
  861. {astrbot-4.23.1 → astrbot-4.23.2}/compose-with-shipyard.yml +0 -0
  862. {astrbot-4.23.1 → astrbot-4.23.2}/compose.yml +0 -0
  863. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/.gitignore +0 -0
  864. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/LICENSE +0 -0
  865. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/README.md +0 -0
  866. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/env.d.ts +0 -0
  867. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/index.html +0 -0
  868. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/public/_redirects +0 -0
  869. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/public/favicon.svg +0 -0
  870. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/public/robots.txt +0 -0
  871. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/scripts/subset-mdi-font.mjs +0 -0
  872. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/App.vue +0 -0
  873. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/astrbot_banner.png +0 -0
  874. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
  875. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
  876. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/loading-seio.webp +0 -0
  877. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
  878. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
  879. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
  880. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
  881. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/line.png +0 -0
  882. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/matrix.svg +0 -0
  883. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/mattermost.svg +0 -0
  884. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
  885. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/onebot.png +0 -0
  886. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
  887. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
  888. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
  889. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
  890. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
  891. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
  892. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
  893. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/plugin_icon.png +0 -0
  894. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/images/xmas-hat.png +0 -0
  895. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/mdi-subset/materialdesignicons-subset.css +0 -0
  896. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff +0 -0
  897. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff2 +0 -0
  898. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/ConfirmDialog.vue +0 -0
  899. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/Chat.vue +0 -0
  900. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ChatInput.vue +0 -0
  901. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
  902. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/LiveMode.vue +0 -0
  903. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/LiveOrb.vue +0 -0
  904. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/MessageList.vue +0 -0
  905. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/MessageListDEPRECATED.vue +0 -0
  906. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ProjectDialog.vue +0 -0
  907. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ProjectList.vue +0 -0
  908. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ProjectView.vue +0 -0
  909. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ProviderConfigDialog.vue +0 -0
  910. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/ProviderModelMenu.vue +0 -0
  911. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/StandaloneChat.vue +0 -0
  912. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/ActionRef.vue +0 -0
  913. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/IPythonToolBlock.vue +0 -0
  914. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/MarkdownMessagePart.vue +0 -0
  915. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/ReasoningBlock.vue +0 -0
  916. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/RefNode.vue +0 -0
  917. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/RefsSidebar.vue +0 -0
  918. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/ToolCallCard.vue +0 -0
  919. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/chat/message_list_comps/ToolCallItem.vue +0 -0
  920. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
  921. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/config/UnsavedChangesConfirmDialog.vue +0 -0
  922. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/MarketPluginCard.vue +0 -0
  923. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/McpServersSection.vue +0 -0
  924. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/PinnedPluginItem.vue +0 -0
  925. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/PluginSortControl.vue +0 -0
  926. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/SkillsSection.vue +0 -0
  927. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/components/CommandFilters.vue +0 -0
  928. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/components/CommandTable.vue +0 -0
  929. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/components/DetailsDialog.vue +0 -0
  930. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/components/RenameDialog.vue +0 -0
  931. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/components/ToolTable.vue +0 -0
  932. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/composables/useCommandActions.ts +0 -0
  933. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/composables/useCommandFilters.ts +0 -0
  934. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/composables/useComponentData.ts +0 -0
  935. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/index.vue +0 -0
  936. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/extension/componentPanel/types.ts +0 -0
  937. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseCreateFolderDialog.vue +0 -0
  938. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseFolderBreadcrumb.vue +0 -0
  939. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseFolderCard.vue +0 -0
  940. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseFolderItemSelector.vue +0 -0
  941. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseFolderTree.vue +0 -0
  942. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseFolderTreeNode.vue +0 -0
  943. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseMoveTargetNode.vue +0 -0
  944. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/BaseMoveToFolderDialog.vue +0 -0
  945. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/README.md +0 -0
  946. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/index.ts +0 -0
  947. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/types.ts +0 -0
  948. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/folder/useFolderManager.ts +0 -0
  949. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
  950. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
  951. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/provider/ProviderModelsPanel.vue +0 -0
  952. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/provider/ProviderSourcesPanel.vue +0 -0
  953. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
  954. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
  955. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/BackupDialog.vue +0 -0
  956. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ChangelogDialog.vue +0 -0
  957. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
  958. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
  959. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/FileConfigItem.vue +0 -0
  960. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ItemCard.vue +0 -0
  961. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
  962. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
  963. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
  964. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
  965. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/Logo.vue +0 -0
  966. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
  967. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
  968. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/PersonaForm.vue +0 -0
  969. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/PersonaQuickPreview.vue +0 -0
  970. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
  971. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/PluginPlatformChip.vue +0 -0
  972. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
  973. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
  974. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ProxySelector.vue +0 -0
  975. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/QrCodeViewer.vue +0 -0
  976. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
  977. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
  978. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/StorageCleanupPanel.vue +0 -0
  979. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/StyledMenu.vue +0 -0
  980. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
  981. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/TemplateListEditor.vue +0 -0
  982. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/TraceDisplayer.vue +0 -0
  983. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
  984. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
  985. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useConversations.ts +0 -0
  986. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useMediaHandling.ts +0 -0
  987. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useProjects.ts +0 -0
  988. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useProviderSources.ts +0 -0
  989. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useRecording.ts +0 -0
  990. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useSessions.ts +0 -0
  991. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/composables/useVADRecording.ts +0 -0
  992. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/config.ts +0 -0
  993. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/composables.ts +0 -0
  994. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/loader.ts +0 -0
  995. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
  996. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
  997. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
  998. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
  999. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
  1000. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
  1001. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
  1002. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
  1003. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
  1004. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
  1005. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
  1006. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
  1007. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
  1008. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/command.json +0 -0
  1009. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/config-metadata.json +0 -0
  1010. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
  1011. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
  1012. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
  1013. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/cron.json +0 -0
  1014. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
  1015. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
  1016. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -0
  1017. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
  1018. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
  1019. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
  1020. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
  1021. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
  1022. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
  1023. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
  1024. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
  1025. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/stats.json +0 -0
  1026. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/subagent.json +0 -0
  1027. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
  1028. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/trace.json +0 -0
  1029. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/features/welcome.json +0 -0
  1030. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
  1031. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
  1032. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
  1033. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/actions.json +0 -0
  1034. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/common.json +0 -0
  1035. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/header.json +0 -0
  1036. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/navigation.json +0 -0
  1037. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/shared.json +0 -0
  1038. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/core/status.json +0 -0
  1039. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/about.json +0 -0
  1040. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/index.json +0 -0
  1041. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/knowledge-base.json +0 -0
  1042. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/memory.json +0 -0
  1043. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/auth.json +0 -0
  1044. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/chart.json +0 -0
  1045. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/chat.json +0 -0
  1046. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/command.json +0 -0
  1047. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/config-metadata.json +0 -0
  1048. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/config.json +0 -0
  1049. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/console.json +0 -0
  1050. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/conversation.json +0 -0
  1051. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/cron.json +0 -0
  1052. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/dashboard.json +0 -0
  1053. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/extension.json +0 -0
  1054. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/detail.json +0 -0
  1055. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/document.json +0 -0
  1056. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/index.json +0 -0
  1057. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/migration.json +0 -0
  1058. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/persona.json +0 -0
  1059. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/platform.json +0 -0
  1060. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/provider.json +0 -0
  1061. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/session-management.json +0 -0
  1062. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/settings.json +0 -0
  1063. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/stats.json +0 -0
  1064. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/subagent.json +0 -0
  1065. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/tool-use.json +0 -0
  1066. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/trace.json +0 -0
  1067. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/features/welcome.json +0 -0
  1068. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/messages/errors.json +0 -0
  1069. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/messages/success.json +0 -0
  1070. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/ru-RU/messages/validation.json +0 -0
  1071. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
  1072. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
  1073. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
  1074. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
  1075. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
  1076. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
  1077. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
  1078. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
  1079. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
  1080. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
  1081. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
  1082. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
  1083. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
  1084. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/command.json +0 -0
  1085. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +0 -0
  1086. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
  1087. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
  1088. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
  1089. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/cron.json +0 -0
  1090. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
  1091. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
  1092. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -0
  1093. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
  1094. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
  1095. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
  1096. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
  1097. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
  1098. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
  1099. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
  1100. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
  1101. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/stats.json +0 -0
  1102. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/subagent.json +0 -0
  1103. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
  1104. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/trace.json +0 -0
  1105. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/features/welcome.json +0 -0
  1106. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
  1107. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
  1108. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
  1109. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/tools/index.ts +0 -0
  1110. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/translations.ts +0 -0
  1111. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/types.ts +0 -0
  1112. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/i18n/validator.ts +0 -0
  1113. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
  1114. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/full/FullLayout.vue +0 -0
  1115. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
  1116. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
  1117. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
  1118. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
  1119. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/main.ts +0 -0
  1120. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/plugins/confirmPlugin.ts +0 -0
  1121. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/plugins/vuetify.ts +0 -0
  1122. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/router/AuthRoutes.ts +0 -0
  1123. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
  1124. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/router/MainRoutes.ts +0 -0
  1125. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/router/index.ts +0 -0
  1126. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/router/routeConstants.mjs +0 -0
  1127. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/_override.scss +0 -0
  1128. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/_variables.scss +0 -0
  1129. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_CodeBlockDark.scss +0 -0
  1130. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VButtons.scss +0 -0
  1131. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VCard.scss +0 -0
  1132. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VField.scss +0 -0
  1133. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VInput.scss +0 -0
  1134. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
  1135. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
  1136. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VShadow.scss +0 -0
  1137. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VTabs.scss +0 -0
  1138. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/components/_VTextField.scss +0 -0
  1139. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/layout/_container.scss +0 -0
  1140. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/layout/_sidebar.scss +0 -0
  1141. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/pages/_dashboards.scss +0 -0
  1142. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/scss/style.scss +0 -0
  1143. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/auth.ts +0 -0
  1144. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/common.js +0 -0
  1145. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/customizer.ts +0 -0
  1146. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/personaStore.ts +0 -0
  1147. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/routerLoading.ts +0 -0
  1148. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/stores/toast.js +0 -0
  1149. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/styles/dashboard-shell.css +0 -0
  1150. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/theme/DarkTheme.ts +0 -0
  1151. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/theme/LightTheme.ts +0 -0
  1152. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/types/confirm.d.ts +0 -0
  1153. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/types/desktop-bridge.d.ts +0 -0
  1154. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
  1155. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
  1156. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
  1157. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/chatConfigBinding.ts +0 -0
  1158. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/confirmDialog.ts +0 -0
  1159. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/desktopRuntime.ts +0 -0
  1160. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/errorUtils.js +0 -0
  1161. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/hashRouteTabs.mjs +0 -0
  1162. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/inputValue.ts +0 -0
  1163. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/platformUtils.js +0 -0
  1164. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/pluginSearch.js +0 -0
  1165. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/restartAstrBot.ts +0 -0
  1166. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/routerReadiness.mjs +0 -0
  1167. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/shiki.js +0 -0
  1168. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/sidebarCustomization.js +0 -0
  1169. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/utils/toast.js +0 -0
  1170. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/AboutPage.vue +0 -0
  1171. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/AlkaidPage.vue +0 -0
  1172. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ChatBoxPage.vue +0 -0
  1173. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ChatPage.vue +0 -0
  1174. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ConfigPage.vue +0 -0
  1175. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ConsolePage.vue +0 -0
  1176. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ConversationPage.vue +0 -0
  1177. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/CronJobPage.vue +0 -0
  1178. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ExtensionPage.vue +0 -0
  1179. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/PersonaPage.vue +0 -0
  1180. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/PlatformPage.vue +0 -0
  1181. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/ProviderPage.vue +0 -0
  1182. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/SessionManagementPage.vue +0 -0
  1183. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/Settings.vue +0 -0
  1184. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/SubAgentPage.vue +0 -0
  1185. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/TracePage.vue +0 -0
  1186. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/WelcomePage.vue +0 -0
  1187. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
  1188. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
  1189. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/alkaid/Other.vue +0 -0
  1190. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
  1191. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
  1192. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/extension/InstalledPluginsTab.vue +0 -0
  1193. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/extension/MarketPluginsTab.vue +0 -0
  1194. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/extension/useExtensionPage.js +0 -0
  1195. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
  1196. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
  1197. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
  1198. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -0
  1199. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
  1200. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
  1201. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
  1202. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/knowledge-base/index.vue +0 -0
  1203. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/CreateFolderDialog.vue +0 -0
  1204. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/FolderBreadcrumb.vue +0 -0
  1205. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/FolderCard.vue +0 -0
  1206. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/FolderTree.vue +0 -0
  1207. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/FolderTreeNode.vue +0 -0
  1208. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/MoveTargetNode.vue +0 -0
  1209. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/MoveToFolderDialog.vue +0 -0
  1210. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/PersonaCard.vue +0 -0
  1211. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/PersonaManager.vue +0 -0
  1212. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/persona/index.ts +0 -0
  1213. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/src/views/stats/StatsPage.vue +0 -0
  1214. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/tests/hashRouteTabs.test.mjs +0 -0
  1215. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/tests/routerReadiness.test.mjs +0 -0
  1216. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/tests/subsetMdiFont.test.mjs +0 -0
  1217. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/tsconfig.json +0 -0
  1218. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/tsconfig.vite-config.json +0 -0
  1219. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard/vite.config.ts +0 -0
  1220. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/_redirects +0 -0
  1221. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ActionRef-DFruOpYV.css +0 -0
  1222. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-DmMe3doR.css +0 -0
  1223. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/Chat-Bo7t-53f.css +0 -0
  1224. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-wITcYeZo.css +0 -0
  1225. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ChatPage-eUJ4JNI2.css +0 -0
  1226. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ConfigPage-zA3-zwEW.css +0 -0
  1227. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-C8Lma3GS.css +0 -0
  1228. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ConsolePage-BS-DOdqp.css +0 -0
  1229. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ConversationPage-CWoOM03x.css +0 -0
  1230. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/CronJobPage-BPbEiZg2.css +0 -0
  1231. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/DocumentDetail-DFu0yq8L.css +0 -0
  1232. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ExtensionPage-Bo2tWDHt.css +0 -0
  1233. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/FullLayout-DzpKN_Dm.css +0 -0
  1234. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KBDetail-DV0laQf1.css +0 -0
  1235. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KBList-KD4CI8Lk.css +0 -0
  1236. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe-DlT9XTxE.woff2 +0 -0
  1237. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe-Bgw4czJT.woff2 +0 -0
  1238. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe-BCp_3N7R.woff2 +0 -0
  1239. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe-DYIxWhlt.woff2 +0 -0
  1240. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe-_f1XEJpo.woff2 +0 -0
  1241. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe-fOt7epNf.woff2 +0 -0
  1242. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA-ccAYIvAh.woff2 +0 -0
  1243. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe-4a3xuzGk.woff2 +0 -0
  1244. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe-B7iHSfaG.woff2 +0 -0
  1245. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  1246. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  1247. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  1248. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  1249. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  1250. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  1251. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  1252. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  1253. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  1254. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  1255. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  1256. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  1257. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  1258. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  1259. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  1260. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  1261. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  1262. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  1263. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  1264. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  1265. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  1266. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  1267. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  1268. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  1269. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  1270. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  1271. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  1272. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  1273. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  1274. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  1275. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  1276. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  1277. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  1278. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  1279. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  1280. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  1281. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  1282. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  1283. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  1284. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  1285. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  1286. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  1287. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  1288. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  1289. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  1290. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  1291. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  1292. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  1293. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  1294. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  1295. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  1296. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  1297. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  1298. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  1299. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  1300. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  1301. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  1302. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  1303. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  1304. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-BSBG80Mm.css +0 -0
  1305. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/LoginPage-BFEwI6dV.css +0 -0
  1306. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/MigrationDialog-CujGC_I8.css +0 -0
  1307. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/PersonaForm-BHNoUZKa.css +0 -0
  1308. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/PersonaPage-DxiwyXpm.css +0 -0
  1309. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-DAEP78tl.css +0 -0
  1310. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/PlatformPage-CNrYUK6O.css +0 -0
  1311. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-BPAZ5uTl.css +0 -0
  1312. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ProxySelector-DIVzyY3H.css +0 -0
  1313. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4a0Ew-BGsTXAXT.woff2 +0 -0
  1314. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4i0ExAo-5tcqmc2S.woff2 +0 -0
  1315. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-BSjGDTat.css +0 -0
  1316. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-CEzWNJ3d.css +0 -0
  1317. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/Settings-D-Utrlz7.css +0 -0
  1318. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/StatsPage-LO3xhSQC.css +0 -0
  1319. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/StyledMenu-DR1uiFzZ.css +0 -0
  1320. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/SubAgentPage-Brwxg9R6.css +0 -0
  1321. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock-DyVlRfdJ.css +0 -0
  1322. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/TracePage-DM4da9YE.css +0 -0
  1323. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/WelcomePage-p_P_7t29.css +0 -0
  1324. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/abap-BdImnpbu.js +0 -0
  1325. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/abap-BrgZPUOV.js +0 -0
  1326. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/actionscript-3-CoDkCxhg.js +0 -0
  1327. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ada-bCR0ucgS.js +0 -0
  1328. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/andromeeda-C4gqWexZ.js +0 -0
  1329. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/angular-html-CU67Zn6k.js +0 -0
  1330. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/angular-ts-BwZT4LLn.js +0 -0
  1331. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/apache-Pmp26Uib.js +0 -0
  1332. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/apex-D8_7TLub.js +0 -0
  1333. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/apex-DyP6w7ZV.js +0 -0
  1334. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/apl-dKokRX4l.js +0 -0
  1335. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/applescript-Co6uUVPk.js +0 -0
  1336. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ara-BRHolxvo.js +0 -0
  1337. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/asciidoc-Dv7Oe6Be.js +0 -0
  1338. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/asm-D_Q5rh1f.js +0 -0
  1339. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/astrbot_logo_mini-DrntZlnL.webp +0 -0
  1340. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/astro-CbQHKStN.js +0 -0
  1341. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/aurora-x-D-2ljcwZ.js +0 -0
  1342. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/awk-DMzUqQB5.js +0 -0
  1343. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ayu-dark-CMjwMIkn.js +0 -0
  1344. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ayu-light-C47S-Tmv.js +0 -0
  1345. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ayu-mirage-CjoLj4QM.js +0 -0
  1346. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/azcli-BaLxmfj-.js +0 -0
  1347. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ballerina-BFfxhgS-.js +0 -0
  1348. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bat-BkioyH1T.js +0 -0
  1349. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bat-CFOPXBzS.js +0 -0
  1350. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/beancount-k_qm7-4y.js +0 -0
  1351. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/berry-uYugtg8r.js +0 -0
  1352. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bibtex-CHM0blh-.js +0 -0
  1353. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bicep-BfEKNvv3.js +0 -0
  1354. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bicep-Bmn6On1c.js +0 -0
  1355. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/blade-D4QpJJKB.js +0 -0
  1356. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/bsl-BO_Y6i37.js +0 -0
  1357. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/c-BIGW1oBm.js +0 -0
  1358. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/c3-VCDPK7BO.js +0 -0
  1359. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cadence-Bv_4Rxtq.js +0 -0
  1360. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cairo-KRGpt6FW.js +0 -0
  1361. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cameligo-BFG1Mk7z.js +0 -0
  1362. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/catppuccin-frappe-DFWUc33u.js +0 -0
  1363. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/catppuccin-latte-C9dUb6Cb.js +0 -0
  1364. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/catppuccin-macchiato-DQyhUUbL.js +0 -0
  1365. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/catppuccin-mocha-D87Tk5Gz.js +0 -0
  1366. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/clarity-D53aC0YG.js +0 -0
  1367. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/clojure-DTECt2xU.js +0 -0
  1368. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/clojure-P80f7IUj.js +0 -0
  1369. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cmake-D1j8_8rp.js +0 -0
  1370. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cobol-nwyudZeR.js +0 -0
  1371. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/codeowners-Bp6g37R7.js +0 -0
  1372. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/codeql-DsOJ9woJ.js +0 -0
  1373. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/codicon-DCmgc-ay.ttf +0 -0
  1374. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/coffee-CDGzqUPQ.js +0 -0
  1375. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/coffee-Ch7k5sss.js +0 -0
  1376. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/common-lisp-Cg-RD9OK.js +0 -0
  1377. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/coq-DkFqJrB1.js +0 -0
  1378. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cpp-CLLBncYj.js +0 -0
  1379. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cpp-CofmeUqb.js +0 -0
  1380. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/crystal-tKQVLTB8.js +0 -0
  1381. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/csharp-COcwbKMJ.js +0 -0
  1382. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/csharp-dUCx_-0o.js +0 -0
  1383. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/csp-5Rap-vPy.js +0 -0
  1384. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/css-D3h14YRZ.js +0 -0
  1385. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/css-DPfMkruS.js +0 -0
  1386. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/css.worker-DaIe3gwK.js +0 -0
  1387. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/csv-fuZLfV_i.js +0 -0
  1388. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cue-D82EKSYY.js +0 -0
  1389. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cypher-COkxafJQ.js +0 -0
  1390. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/cypher-DrQuvNYM.js +0 -0
  1391. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/d-85-TOEBH.js +0 -0
  1392. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dark-plus-C3mMm8J8.js +0 -0
  1393. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dart-CF10PKvl.js +0 -0
  1394. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dart-CFKIUWau.js +0 -0
  1395. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dax-CEL-wOlO.js +0 -0
  1396. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/desktop-BmXAJ9_W.js +0 -0
  1397. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/diff-D97Zzqfu.js +0 -0
  1398. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/docker-BcOcwvcX.js +0 -0
  1399. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dockerfile-Zznr-cwX.js +0 -0
  1400. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dotenv-Da5cRb03.js +0 -0
  1401. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dracula-BzJJZx-M.js +0 -0
  1402. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dracula-soft-BXkSAIEj.js +0 -0
  1403. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/dream-maker-BtqSS_iP.js +0 -0
  1404. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ecl-Ce3n6wWz.js +0 -0
  1405. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/edge-BkV0erSs.js +0 -0
  1406. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/editor.worker-BCzxt1at.js +0 -0
  1407. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/elixir-CDX3lj18.js +0 -0
  1408. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/elixir-deUWdS0T.js +0 -0
  1409. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/elm-DbKCFpqz.js +0 -0
  1410. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/emacs-lisp-C9XAeP06.js +0 -0
  1411. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/erb-CgJxNhIT.js +0 -0
  1412. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/erlang-DsQrWhSR.js +0 -0
  1413. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/eventsource-CejZdUM0.js +0 -0
  1414. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/everforest-dark-BgDCqdQA.js +0 -0
  1415. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/everforest-light-C8M2exoo.js +0 -0
  1416. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fennel-BYunw83y.js +0 -0
  1417. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fish-BvzEVeQv.js +0 -0
  1418. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/flow9-i9-g7ZhI.js +0 -0
  1419. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fluent-C4IJs8-o.js +0 -0
  1420. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fortran-fixed-form-CkoXwp7k.js +0 -0
  1421. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fortran-free-form-BxgE0vQu.js +0 -0
  1422. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fsharp-CXgrBDvD.js +0 -0
  1423. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/fsharp-CzKuDChf.js +0 -0
  1424. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gdresource-BOOCDP_w.js +0 -0
  1425. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gdscript-C5YyOfLZ.js +0 -0
  1426. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gdshader-DkwncUOv.js +0 -0
  1427. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/genie-D0YGMca9.js +0 -0
  1428. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gherkin-DyxjwDmM.js +0 -0
  1429. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/git-commit-F4YmCXRG.js +0 -0
  1430. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/git-rebase-r7XF79zn.js +0 -0
  1431. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-dark-DHJKELXO.js +0 -0
  1432. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-dark-default-Cuk6v7N8.js +0 -0
  1433. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-dark-dimmed-DH5Ifo-i.js +0 -0
  1434. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -0
  1435. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-light-DAi9KRSo.js +0 -0
  1436. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-light-default-D7oLnXFd.js +0 -0
  1437. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/github-light-high-contrast-BfjtVDDH.js +0 -0
  1438. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gleam-BspZqrRM.js +0 -0
  1439. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/glimmer-js-Rg0-pVw9.js +0 -0
  1440. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/glimmer-ts-U6CK756n.js +0 -0
  1441. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/glsl-DplSGwfg.js +0 -0
  1442. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gn-n2N0HUVH.js +0 -0
  1443. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gnuplot-DdkO51Og.js +0 -0
  1444. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/go-Cphgjts3.js +0 -0
  1445. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/go-CxLEBnE3.js +0 -0
  1446. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/graphql-Cg7bfA9N.js +0 -0
  1447. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/graphql-ChdNCCLP.js +0 -0
  1448. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/groovy-gcz8RCvz.js +0 -0
  1449. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -0
  1450. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-medium-GsRaNv29.js +0 -0
  1451. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-soft-CVdnzihN.js +0 -0
  1452. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-hard-CH1njM8p.js +0 -0
  1453. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-medium-DRw_LuNl.js +0 -0
  1454. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-soft-hJgmCMqR.js +0 -0
  1455. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hack-CaT9iCJl.js +0 -0
  1456. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/haml-B8DHNrY2.js +0 -0
  1457. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/handlebars-BL8al0AC.js +0 -0
  1458. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/haskell-Df6bDoY_.js +0 -0
  1459. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/haxe-CzTSHFRz.js +0 -0
  1460. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hcl-0cvrggvQ.js +0 -0
  1461. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hcl-BWvSN4gD.js +0 -0
  1462. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hjson-D5-asLiD.js +0 -0
  1463. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hlsl-D3lLCCz7.js +0 -0
  1464. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/horizon-BUw7H-hv.js +0 -0
  1465. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/houston-DnULxvSX.js +0 -0
  1466. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/html-GMplVEZG.js +0 -0
  1467. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/html-derivative-BFtXZ54Q.js +0 -0
  1468. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/html.worker-CKrFyw_2.js +0 -0
  1469. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/http-jrhK8wxY.js +0 -0
  1470. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hurl-irOxFIW8.js +0 -0
  1471. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hxml-Bvhsp5Yf.js +0 -0
  1472. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/hy-DFXneXwc.js +0 -0
  1473. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/icon-no-shadow-d_sgy4RT.svg +0 -0
  1474. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/imba-DGztddWO.js +0 -0
  1475. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/index-C6rTYzL3.css +0 -0
  1476. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/index-DSBeuDGv.css +0 -0
  1477. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/index-_Dy2zPzC.js +0 -0
  1478. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/infographic_markstream-vue-yoD6TSFD.js +0 -0
  1479. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ini-BEwlwnbL.js +0 -0
  1480. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ini-Drc7WvVn.js +0 -0
  1481. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/inputValue-De_-AW4_.js +0 -0
  1482. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/java-B_fMsGYe.js +0 -0
  1483. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/java-CylS5w8V.js +0 -0
  1484. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/javascript-wDzz0qaB.js +0 -0
  1485. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jinja-4LBKfQ-Z.js +0 -0
  1486. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jison-wvAkD_A8.js +0 -0
  1487. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/json-Cp-IABpG.js +0 -0
  1488. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/json.worker-B7c_PmGb.js +0 -0
  1489. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/json5-C9tS-k6U.js +0 -0
  1490. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jsonc-Des-eS-w.js +0 -0
  1491. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jsonl-DcaNXYhu.js +0 -0
  1492. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jsonnet-DFQXde-d.js +0 -0
  1493. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jssm-C2t-YnRu.js +0 -0
  1494. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/jsx-g9-lgVsj.js +0 -0
  1495. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/julia-Bqgm2twL.js +0 -0
  1496. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/julia-CxzCAyBv.js +0 -0
  1497. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kanagawa-dragon-CkXjmgJE.js +0 -0
  1498. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kanagawa-lotus-CfQXZHmo.js +0 -0
  1499. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kanagawa-wave-DWedfzmr.js +0 -0
  1500. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/katex-CBSAILhF.js +0 -0
  1501. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kdl-DV7GczEv.js +0 -0
  1502. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kotlin-BSkB5QuD.js +0 -0
  1503. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kotlin-BdnUsdx6.js +0 -0
  1504. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/kusto-DZf3V79B.js +0 -0
  1505. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/laserwave-DUszq2jm.js +0 -0
  1506. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/latex-DGMBWnxU.js +0 -0
  1507. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/lean-BZvkOJ9d.js +0 -0
  1508. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/less-B1dDrJ26.js +0 -0
  1509. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/less-BsTHnhdd.js +0 -0
  1510. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/lexon-YWi4-JPR.js +0 -0
  1511. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/light-plus-B7mTdjB0.js +0 -0
  1512. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/liquid-DYVedYrR.js +0 -0
  1513. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/llvm-BtvRca6l.js +0 -0
  1514. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/log-2UxHyX5q.js +0 -0
  1515. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/logo-BtOb2qkB.js +0 -0
  1516. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/lua-BaeVxFsk.js +0 -0
  1517. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/lua-nf6ki56Z.js +0 -0
  1518. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/luau-C-HG3fhB.js +0 -0
  1519. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/m3-Cpb6xl2v.js +0 -0
  1520. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/make-CHLpvVh8.js +0 -0
  1521. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/markdown-Cvjx9yec.js +0 -0
  1522. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/markdown-DSZPf7rp.js +0 -0
  1523. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/marko-DZsq8hO1.js +0 -0
  1524. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/material-theme-D5KoaKCx.js +0 -0
  1525. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/material-theme-darker-BfHTSMKl.js +0 -0
  1526. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/material-theme-lighter-B0m2ddpp.js +0 -0
  1527. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/material-theme-ocean-CyktbL80.js +0 -0
  1528. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/material-theme-palenight-Csfq5Kiy.js +0 -0
  1529. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-BZxwdIVP.woff +0 -0
  1530. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-CGQxIPFh.woff2 +0 -0
  1531. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/matlab-D7o27uSR.js +0 -0
  1532. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mdc-DUICxH0z.js +0 -0
  1533. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mdx-Cmh6b_Ma.js +0 -0
  1534. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mermaid-mWjccvbQ.js +0 -0
  1535. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/min-dark-CafNBF8u.js +0 -0
  1536. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/min-light-CTRr51gU.js +0 -0
  1537. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mips-B_c3zf-v.js +0 -0
  1538. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mipsasm-CKIfxQSi.js +0 -0
  1539. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/misskey-DyDC7ZfL.png +0 -0
  1540. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mojo-B93PlW-d.js +0 -0
  1541. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/monokai-D4h5O-jR.js +0 -0
  1542. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/moonbit-Ba13S78F.js +0 -0
  1543. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/move-IF9eRakj.js +0 -0
  1544. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/msdax-rUNN04Wq.js +0 -0
  1545. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/mysql-DDwshQtU.js +0 -0
  1546. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/narrat-DRg8JJMk.js +0 -0
  1547. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nextflow-BrzmwbiE.js +0 -0
  1548. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nginx-BpAMiNFr.js +0 -0
  1549. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/night-owl-C39BiMTA.js +0 -0
  1550. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/night-owl-light-CMTm3GFP.js +0 -0
  1551. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nim-CVrawwO9.js +0 -0
  1552. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nix-CwoSXNpI.js +0 -0
  1553. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nord-Ddv68eIx.js +0 -0
  1554. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/nushell-C-sUppwS.js +0 -0
  1555. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/objective-c-B5zXfXm9.js +0 -0
  1556. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/objective-c-DXmwc3jG.js +0 -0
  1557. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/objective-cpp-CLxacb5B.js +0 -0
  1558. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ocaml-C0hk2d4L.js +0 -0
  1559. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/odin-BBf5iR-q.js +0 -0
  1560. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/one-dark-pro-DVMEJ2y_.js +0 -0
  1561. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/one-light-C3Wv6jpd.js +0 -0
  1562. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/onebot-fwgbsrHC.png +0 -0
  1563. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/openscad-C4EeE6gA.js +0 -0
  1564. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pascal-CXOwvkN_.js +0 -0
  1565. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pascal-D93ZcfNL.js +0 -0
  1566. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pascaligo-Bc-ZgV77.js +0 -0
  1567. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/perl-C0TMdlhV.js +0 -0
  1568. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/perl-CwNk8-XU.js +0 -0
  1569. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pgsql-tGk8EFnU.js +0 -0
  1570. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/php-CpIb_Oan.js +0 -0
  1571. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/php-Dhbhpdrm.js +0 -0
  1572. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pkl-u5AG7uiY.js +0 -0
  1573. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pla-B03wrqEc.js +0 -0
  1574. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/plastic-3e1v2bzS.js +0 -0
  1575. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/platformUtils-Y3QWFAMC.js +0 -0
  1576. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/plsql-ChMvpjG-.js +0 -0
  1577. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/plugin_icon-xgxlkBou.png +0 -0
  1578. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/po-BTJTHyun.js +0 -0
  1579. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/poimandres-CS3Unz2-.js +0 -0
  1580. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/polar-C0HS_06l.js +0 -0
  1581. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/postcss-CXtECtnM.js +0 -0
  1582. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/postiats-BKlk5iyT.js +0 -0
  1583. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/powerquery-Bhzvs7bI.js +0 -0
  1584. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/powerquery-CEu0bR-o.js +0 -0
  1585. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/powershell-Dd3NCNK9.js +0 -0
  1586. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/powershell-Dpen1YoG.js +0 -0
  1587. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/prisma-Dd19v3D-.js +0 -0
  1588. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/prolog-CbFg5uaA.js +0 -0
  1589. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/proto-C7zT0LnQ.js +0 -0
  1590. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/protobuf-COyEY5Pt.js +0 -0
  1591. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pug-BaJupSGV.js +0 -0
  1592. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pug-CGlum2m_.js +0 -0
  1593. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/puppet-BMWR74SV.js +0 -0
  1594. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/purescript-CklMAg4u.js +0 -0
  1595. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z11lFc-K-O-jipLrW.woff2 +0 -0
  1596. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z1JlFc-K-cby-RkWa.woff2 +0 -0
  1597. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z1xlFQ-Qrb0O0WB.woff2 +0 -0
  1598. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z11lFc-K-STEjXBNN.woff2 +0 -0
  1599. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z1JlFc-K-CAhIAdZj.woff2 +0 -0
  1600. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z1xlFQ-zEkxB9Mr.woff2 +0 -0
  1601. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z11lFc-K-BIdkeU1p.woff2 +0 -0
  1602. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z1JlFc-K-CK-6C4Hw.woff2 +0 -0
  1603. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z1xlFQ-C8OXljZJ.woff2 +0 -0
  1604. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJbecmNE-CJDn6rn8.woff2 +0 -0
  1605. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJfecg-cpxAROuN.woff2 +0 -0
  1606. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJnecmNE-by3JarPu.woff2 +0 -0
  1607. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/python-B6aJPvgy.js +0 -0
  1608. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/qml-3beO22l8.js +0 -0
  1609. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/qmldir-C8lEn-DE.js +0 -0
  1610. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/qq-D53z62OG.png +0 -0
  1611. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/qsharp-DXyYeYxl.js +0 -0
  1612. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/qss-IeuSbFQv.js +0 -0
  1613. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/r-CdQndTaG.js +0 -0
  1614. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/r-Dspwwk_N.js +0 -0
  1615. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/racket-BqYA7rlc.js +0 -0
  1616. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/raku-DXvB9xmW.js +0 -0
  1617. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/razor-Uh8Bk_45.js +0 -0
  1618. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/red-bN70gL4F.js +0 -0
  1619. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/redis-CVwtpugi.js +0 -0
  1620. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/redshift-25W9uPmb.js +0 -0
  1621. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/reg-C-SQnVFl.js +0 -0
  1622. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/regexp-CDVJQ6XC.js +0 -0
  1623. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rel-C3B-1QV4.js +0 -0
  1624. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/restructuredtext-DfzH4Xui.js +0 -0
  1625. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/riscv-BM1_JUlF.js +0 -0
  1626. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ron-BhRPY-oY.js +0 -0
  1627. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rose-pine-dawn-DHQR4-dF.js +0 -0
  1628. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rose-pine-moon-D4_iv3hh.js +0 -0
  1629. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rose-pine-qdsjHGoJ.js +0 -0
  1630. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rosmsg-BJDFO7_C.js +0 -0
  1631. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rst-D5oM4XIm.js +0 -0
  1632. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ruby-Cp1zYvxS.js +0 -0
  1633. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ruby-Cw6WdidG.js +0 -0
  1634. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rust-B1yitclQ.js +0 -0
  1635. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/rust-D5C2fndG.js +0 -0
  1636. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/safeRaf-DvJDa2y1.js +0 -0
  1637. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sas-cz2c8ADy.js +0 -0
  1638. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sass-Cj5Yp3dK.js +0 -0
  1639. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/satori-DvyZ9Qos.png +0 -0
  1640. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sb-CDntyWJ8.js +0 -0
  1641. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scala-BoFRg7Ot.js +0 -0
  1642. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scala-C151Ov-r.js +0 -0
  1643. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scheme-Bio4gycK.js +0 -0
  1644. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scheme-C98Dy4si.js +0 -0
  1645. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scss-4Ik7cdeQ.js +0 -0
  1646. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/scss-OYdSNvt2.js +0 -0
  1647. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sdbl-DVxCFoDh.js +0 -0
  1648. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/shaderlab-Dg9Lc6iA.js +0 -0
  1649. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/shell-CX-rkNHf.js +0 -0
  1650. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/shellscript-Yzrsuije.js +0 -0
  1651. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/shellsession-BADoaaVG.js +0 -0
  1652. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/slack-dark-BthQWCQV.js +0 -0
  1653. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/slack-ochin-DqwNpetd.js +0 -0
  1654. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/smalltalk-BERRCDM3.js +0 -0
  1655. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/snazzy-light-Bw305WKR.js +0 -0
  1656. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/solarized-dark-DXbdFlpD.js +0 -0
  1657. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/solarized-light-L9t79GZl.js +0 -0
  1658. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/solidity-Tw7wswEv.js +0 -0
  1659. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/solidity-rGO070M0.js +0 -0
  1660. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sophia-C5WLch3f.js +0 -0
  1661. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/soy-Brmx7dQM.js +0 -0
  1662. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sparql-DHaeiCBh.js +0 -0
  1663. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sparql-rVzFXLq3.js +0 -0
  1664. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/splunk-BtCnVYZw.js +0 -0
  1665. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sql-BLtJtn59.js +0 -0
  1666. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/sql-CCSDG5nI.js +0 -0
  1667. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ssh-config-_ykCGR6B.js +0 -0
  1668. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/st-pnP8ivHi.js +0 -0
  1669. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/stata-BH5u7GGu.js +0 -0
  1670. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/stylus-BEDo0Tqx.js +0 -0
  1671. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/surrealql-Bq5Q-fJD.js +0 -0
  1672. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/svelte-zxCyuUbr.js +0 -0
  1673. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/swift-Dg5xB15N.js +0 -0
  1674. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/swift-DwJ7jVG9.js +0 -0
  1675. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/synthwave-84-CbfX1IO0.js +0 -0
  1676. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/system-verilog-CnnmHF94.js +0 -0
  1677. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/systemd-4A_iFExJ.js +0 -0
  1678. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/systemverilog-B9Xyijhd.js +0 -0
  1679. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/talonscript-CkByrt1z.js +0 -0
  1680. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tasl-QIJgUcNo.js +0 -0
  1681. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tcl-DnHyzjbg.js +0 -0
  1682. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tcl-dwOrl1Do.js +0 -0
  1683. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/templ-P3uqSqPl.js +0 -0
  1684. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/terraform-BETggiCN.js +0 -0
  1685. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tex-CvyZ59Mk.js +0 -0
  1686. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tokyo-night-hegEt444.js +0 -0
  1687. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/toml-vGWfd6FD.js +0 -0
  1688. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ts-tags-zn1MmPIZ.js +0 -0
  1689. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/ts.worker-BhkL8olL.js +0 -0
  1690. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tsv-B_m7g4N7.js +0 -0
  1691. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/tsx-COt5Ahok.js +0 -0
  1692. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/turtle-BsS91CYL.js +0 -0
  1693. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/twig-CPajHgWi.js +0 -0
  1694. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/twig-ChbOoGGc.js +0 -0
  1695. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/typescript-BPQ3VLAy.js +0 -0
  1696. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/typespec-BGHnOYBU.js +0 -0
  1697. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/typespec-D-MeaMDU.js +0 -0
  1698. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/typst-DHCkPAjA.js +0 -0
  1699. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DBAyj4S5.css +0 -0
  1700. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/v-BcVCzyr7.js +0 -0
  1701. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vala-CsfeWuGM.js +0 -0
  1702. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vb-D17OF-Vu.js +0 -0
  1703. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vb-DgyLZaXg.js +0 -0
  1704. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/verilog-BQ8w6xss.js +0 -0
  1705. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vesper-DU1UobuO.js +0 -0
  1706. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vhdl-CeAyd5Ju.js +0 -0
  1707. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/viml-CJc9bBzg.js +0 -0
  1708. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vitesse-black-Bkuqu6BP.js +0 -0
  1709. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vitesse-dark-D0r3Knsf.js +0 -0
  1710. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vitesse-light-CVO1_9PV.js +0 -0
  1711. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vocechat-3FM9-gsb.png +0 -0
  1712. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vue-DN_0RTcg.js +0 -0
  1713. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vue-html-AaS7Mt5G.js +0 -0
  1714. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vue-vine-CQOfvN7w.js +0 -0
  1715. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/vyper-CDx5xZoG.js +0 -0
  1716. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wasm-CG6Dc4jp.js +0 -0
  1717. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wasm-MzD3tlZU.js +0 -0
  1718. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wechat-OKdslIg4.png +0 -0
  1719. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wecom-CG6W-50z.png +0 -0
  1720. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wenyan-BV7otONQ.js +0 -0
  1721. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wgsl-BIv9DU6q.js +0 -0
  1722. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wgsl-Dx-B1_4e.js +0 -0
  1723. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wikitext-BhOHFoWU.js +0 -0
  1724. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wit-5i3qLPDT.js +0 -0
  1725. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/wolfram-lXgVvXCa.js +0 -0
  1726. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/xmas-hat-ChoGHOay.png +0 -0
  1727. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/xml-sdJ4AIDG.js +0 -0
  1728. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/xsl-CtQFsRM5.js +0 -0
  1729. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/yaml-Buea-lGh.js +0 -0
  1730. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/zenscript-DVFEvuxE.js +0 -0
  1731. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/assets/zig-VOosw3JB.js +0 -0
  1732. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/favicon.svg +0 -0
  1733. {astrbot-4.23.1 → astrbot-4.23.2}/dashboard-artifact/unpacked/dist/robots.txt +0 -0
  1734. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.gitignore +0 -0
  1735. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/config/head.ts +0 -0
  1736. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/config.mjs +0 -0
  1737. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/components/ArticleShare.vue +0 -0
  1738. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/components/HomeFeaturesAfter.vue +0 -0
  1739. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/components/Layout.vue +0 -0
  1740. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/components/NotFound.vue +0 -0
  1741. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/components/SectionTabs.vue +0 -0
  1742. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/index.js +0 -0
  1743. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/styles/custom-block.css +0 -0
  1744. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/styles/font.css +0 -0
  1745. {astrbot-4.23.1 → astrbot-4.23.2}/docs/.vitepress/theme/styles/style.css +0 -0
  1746. {astrbot-4.23.1 → astrbot-4.23.2}/docs/README.md +0 -0
  1747. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/community.md +0 -0
  1748. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/config/model-config.md +0 -0
  1749. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/1panel.md +0 -0
  1750. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/btpanel.md +0 -0
  1751. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/casaos.md +0 -0
  1752. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/cli.md +0 -0
  1753. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/community-deployment.md +0 -0
  1754. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/compshare.md +0 -0
  1755. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/docker.md +0 -0
  1756. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/kubernetes.md +0 -0
  1757. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/launcher.md +0 -0
  1758. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/other-deployments.md +0 -0
  1759. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/astrbot/sys-pm.md +0 -0
  1760. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/deploy/when-deployed.md +0 -0
  1761. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/astrbot-config.md +0 -0
  1762. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/openapi.md +0 -0
  1763. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/plugin-platform-adapter.md +0 -0
  1764. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/plugin.md +0 -0
  1765. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/ai.md +0 -0
  1766. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/env.md +0 -0
  1767. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/html-to-pic.md +0 -0
  1768. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/plugin-config.md +0 -0
  1769. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/send-message.md +0 -0
  1770. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/session-control.md +0 -0
  1771. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/simple.md +0 -0
  1772. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/guides/storage.md +0 -0
  1773. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/plugin-new.md +0 -0
  1774. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/dev/star/plugin-publish.md +0 -0
  1775. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/faq.md +0 -0
  1776. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/index.md +0 -0
  1777. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/ospp/2025.md +0 -0
  1778. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/others/self-host-t2i.md +0 -0
  1779. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/aiocqhttp.md +0 -0
  1780. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/dingtalk.md +0 -0
  1781. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/discord.md +0 -0
  1782. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/kook.md +0 -0
  1783. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/lark.md +0 -0
  1784. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/line.md +0 -0
  1785. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/matrix.md +0 -0
  1786. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/mattermost.md +0 -0
  1787. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/misskey.md +0 -0
  1788. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/qqofficial/webhook.md +0 -0
  1789. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/qqofficial/websockets.md +0 -0
  1790. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/qqofficial.md +0 -0
  1791. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/satori/guide.md +0 -0
  1792. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/satori/server-satori.md +0 -0
  1793. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/slack.md +0 -0
  1794. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/start.md +0 -0
  1795. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/telegram.md +0 -0
  1796. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/vocechat.md +0 -0
  1797. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/wecom.md +0 -0
  1798. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/wecom_ai_bot.md +0 -0
  1799. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/weixin-official-account.md +0 -0
  1800. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/platform/weixin_oc.md +0 -0
  1801. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/302ai.md +0 -0
  1802. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners/astrbot-agent-runner.md +0 -0
  1803. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners/coze.md +0 -0
  1804. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners/dashscope.md +0 -0
  1805. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners/deerflow.md +0 -0
  1806. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners/dify.md +0 -0
  1807. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/agent-runners.md +0 -0
  1808. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/aihubmix.md +0 -0
  1809. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/coze.md +0 -0
  1810. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/dashscope.md +0 -0
  1811. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/dify.md +0 -0
  1812. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/llm.md +0 -0
  1813. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/newapi.md +0 -0
  1814. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/ppio.md +0 -0
  1815. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/provider-lmstudio.md +0 -0
  1816. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/provider-ollama.md +0 -0
  1817. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/siliconflow.md +0 -0
  1818. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/start.md +0 -0
  1819. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/providers/tokenpony.md +0 -0
  1820. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/agent-runner.md +0 -0
  1821. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/astrbot-agent-sandbox.md +0 -0
  1822. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/astrbot-sandbox.md +0 -0
  1823. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/code-interpreter.md +0 -0
  1824. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/command.md +0 -0
  1825. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/computer.md +0 -0
  1826. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/context-compress.md +0 -0
  1827. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/custom-rules.md +0 -0
  1828. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/function-calling.md +0 -0
  1829. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/knowledge-base.md +0 -0
  1830. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/mcp.md +0 -0
  1831. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/plugin.md +0 -0
  1832. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/proactive-agent.md +0 -0
  1833. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/skills.md +0 -0
  1834. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/subagent.md +0 -0
  1835. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/unified-webhook.md +0 -0
  1836. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/websearch.md +0 -0
  1837. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/use/webui.md +0 -0
  1838. {astrbot-4.23.1 → astrbot-4.23.2}/docs/en/what-is-astrbot.md +0 -0
  1839. {astrbot-4.23.1 → astrbot-4.23.2}/docs/package.json +0 -0
  1840. {astrbot-4.23.1 → astrbot-4.23.2}/docs/pnpm-lock.yaml +0 -0
  1841. {astrbot-4.23.1 → astrbot-4.23.2}/docs/public/404-seio.png +0 -0
  1842. {astrbot-4.23.1 → astrbot-4.23.2}/docs/public/logo.png +0 -0
  1843. {astrbot-4.23.1 → astrbot-4.23.2}/docs/public/logo_prod.png +0 -0
  1844. {astrbot-4.23.1 → astrbot-4.23.2}/docs/public/openapi.json +0 -0
  1845. {astrbot-4.23.1 → astrbot-4.23.2}/docs/public/scalar.html +0 -0
  1846. {astrbot-4.23.1 → astrbot-4.23.2}/docs/scripts/sync_docs_to_wiki.py +0 -0
  1847. {astrbot-4.23.1 → astrbot-4.23.2}/docs/scripts/upload-doc-images-to-r2.sh +0 -0
  1848. {astrbot-4.23.1 → astrbot-4.23.2}/docs/scripts/upload_doc_images_to_r2.py +0 -0
  1849. {astrbot-4.23.1 → astrbot-4.23.2}/docs/scripts/usage.md +0 -0
  1850. {astrbot-4.23.1 → astrbot-4.23.2}/docs/tests/test_sync_docs_to_wiki.py +0 -0
  1851. {astrbot-4.23.1 → astrbot-4.23.2}/docs/vercel.json +0 -0
  1852. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/community-events/ospp-2025.md +0 -0
  1853. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/community-events/tonggujiyu-astrbot-plugin-reward-program.md +0 -0
  1854. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/community.md +0 -0
  1855. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/1panel.md +0 -0
  1856. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/btpanel.md +0 -0
  1857. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/casaos.md +0 -0
  1858. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/cli.md +0 -0
  1859. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/community-deployment.md +0 -0
  1860. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/compshare.md +0 -0
  1861. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/desktop.md +0 -0
  1862. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/docker.md +0 -0
  1863. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/kubernetes.md +0 -0
  1864. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/launcher.md +0 -0
  1865. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/other-deployments.md +0 -0
  1866. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/rainyun.md +0 -0
  1867. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/astrbot/sys-pm.md +0 -0
  1868. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/deploy/when-deployed.md +0 -0
  1869. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/astrbot-config.md +0 -0
  1870. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/openapi.md +0 -0
  1871. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/plugin-platform-adapter.md +0 -0
  1872. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/plugin.md +0 -0
  1873. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/ai.md +0 -0
  1874. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/env.md +0 -0
  1875. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/html-to-pic.md +0 -0
  1876. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/other.md +0 -0
  1877. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/plugin-config.md +0 -0
  1878. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/send-message.md +0 -0
  1879. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/session-control.md +0 -0
  1880. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/simple.md +0 -0
  1881. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/guides/storage.md +0 -0
  1882. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/plugin-new.md +0 -0
  1883. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/dev/star/plugin-publish.md +0 -0
  1884. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/faq.md +0 -0
  1885. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/index.md +0 -0
  1886. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/others/github-proxy.md +0 -0
  1887. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/others/ipv6.md +0 -0
  1888. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/others/self-host-t2i.md +0 -0
  1889. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/aiocqhttp.md +0 -0
  1890. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/dingtalk.md +0 -0
  1891. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/discord.md +0 -0
  1892. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/kook.md +0 -0
  1893. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/lark.md +0 -0
  1894. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/line.md +0 -0
  1895. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/matrix.md +0 -0
  1896. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/mattermost.md +0 -0
  1897. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/misskey.md +0 -0
  1898. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/qqofficial/webhook.md +0 -0
  1899. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/qqofficial/websockets.md +0 -0
  1900. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/qqofficial.md +0 -0
  1901. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/satori/guide.md +0 -0
  1902. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/satori/server-satori.md +0 -0
  1903. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/slack.md +0 -0
  1904. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/start.md +0 -0
  1905. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/telegram.md +0 -0
  1906. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/vocechat.md +0 -0
  1907. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/wecom.md +0 -0
  1908. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/wecom_ai_bot.md +0 -0
  1909. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/weixin-official-account.md +0 -0
  1910. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/weixin_oc.md +0 -0
  1911. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/platform/weixin_qr_entry.png +0 -0
  1912. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/302ai.md +0 -0
  1913. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners/astrbot-agent-runner.md +0 -0
  1914. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners/coze.md +0 -0
  1915. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners/dashscope.md +0 -0
  1916. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners/deerflow.md +0 -0
  1917. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners/dify.md +0 -0
  1918. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/agent-runners.md +0 -0
  1919. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/aihubmix.md +0 -0
  1920. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/coze.md +0 -0
  1921. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/dashscope.md +0 -0
  1922. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/dify.md +0 -0
  1923. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/llm.md +0 -0
  1924. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/newapi.md +0 -0
  1925. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/ppio.md +0 -0
  1926. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/provider-lmstudio.md +0 -0
  1927. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/provider-ollama.md +0 -0
  1928. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/siliconflow.md +0 -0
  1929. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/start.md +0 -0
  1930. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/providers/tokenpony.md +0 -0
  1931. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/agent-runner.md +0 -0
  1932. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/astrbot-agent-sandbox.md +0 -0
  1933. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/code-interpreter.md +0 -0
  1934. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/command.md +0 -0
  1935. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/computer.md +0 -0
  1936. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/context-compress.md +0 -0
  1937. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/custom-rules.md +0 -0
  1938. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/function-calling.md +0 -0
  1939. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/knowledge-base-old.md +0 -0
  1940. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/knowledge-base.md +0 -0
  1941. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/mcp.md +0 -0
  1942. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/plugin.md +0 -0
  1943. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/proactive-agent.md +0 -0
  1944. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/skills.md +0 -0
  1945. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/subagent.md +0 -0
  1946. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/unified-webhook.md +0 -0
  1947. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/websearch.md +0 -0
  1948. {astrbot-4.23.1 → astrbot-4.23.2}/docs/zh/use/webui.md +0 -0
  1949. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot/00-namespace.yaml +0 -0
  1950. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot/01-pvc.yaml +0 -0
  1951. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot/02-deployment.yaml +0 -0
  1952. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot/03-service-nodeport.yaml +0 -0
  1953. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot/04-service-loadbalancer.yaml +0 -0
  1954. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot_with_napcat/00-namespace.yaml +0 -0
  1955. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot_with_napcat/01-pvc.yaml +0 -0
  1956. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot_with_napcat/02-deployment.yaml +0 -0
  1957. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot_with_napcat/03-service-nodeport.yaml +0 -0
  1958. {astrbot-4.23.1 → astrbot-4.23.2}/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +0 -0
  1959. {astrbot-4.23.1 → astrbot-4.23.2}/main.py +0 -0
  1960. {astrbot-4.23.1 → astrbot-4.23.2}/openspec/config.yaml +0 -0
  1961. {astrbot-4.23.1 → astrbot-4.23.2}/requirements.txt +0 -0
  1962. {astrbot-4.23.1 → astrbot-4.23.2}/runtime_bootstrap.py +0 -0
  1963. {astrbot-4.23.1 → astrbot-4.23.2}/samples/stt_health_check.wav +0 -0
  1964. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/astrbot.service +0 -0
  1965. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/hatch_build.py +0 -0
  1966. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/pr_test_env.sh +0 -0
  1967. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/run_pytests_ci.sh +0 -0
  1968. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/smoke_startup_check.py +0 -0
  1969. {astrbot-4.23.1 → astrbot-4.23.2}/scripts/start-with-neo.sh +0 -0
  1970. {astrbot-4.23.1 → astrbot-4.23.2}/tests/agent/test_context_manager.py +0 -0
  1971. {astrbot-4.23.1 → astrbot-4.23.2}/tests/agent/test_token_counter.py +0 -0
  1972. {astrbot-4.23.1 → astrbot-4.23.2}/tests/agent/test_truncator.py +0 -0
  1973. {astrbot-4.23.1 → astrbot-4.23.2}/tests/conftest.py +0 -0
  1974. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/__init__.py +0 -0
  1975. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/configs/test_cmd_config.json +0 -0
  1976. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/helpers.py +0 -0
  1977. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/messages/test_messages.json +0 -0
  1978. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/mocks/__init__.py +0 -0
  1979. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/mocks/aiocqhttp.py +0 -0
  1980. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/mocks/discord.py +0 -0
  1981. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/mocks/telegram.py +0 -0
  1982. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/plugins/fixture_plugin.py +0 -0
  1983. {astrbot-4.23.1 → astrbot-4.23.2}/tests/fixtures/plugins/metadata.yaml +0 -0
  1984. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_anthropic_kimi_code_provider.py +0 -0
  1985. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_api_key_open_api.py +0 -0
  1986. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_backup.py +0 -0
  1987. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_chat_route.py +0 -0
  1988. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_computer_config.py +0 -0
  1989. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_computer_fs_tools.py +0 -0
  1990. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_computer_skill_sync.py +0 -0
  1991. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_computer_tool_permissions.py +0 -0
  1992. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_conversation_commands.py +0 -0
  1993. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_dashboard.py +0 -0
  1994. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_deerflow_agent_runner.py +0 -0
  1995. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_deerflow_api_client.py +0 -0
  1996. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_gemini_source.py +0 -0
  1997. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_httpx_socks_dependency.py +0 -0
  1998. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_kook/.gitignore +0 -0
  1999. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_local_filesystem_component.py +0 -0
  2000. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_local_shell_component.py +0 -0
  2001. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_main.py +0 -0
  2002. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_mattermost_adapter.py +0 -0
  2003. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_mimo_api_sources.py +0 -0
  2004. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_neo_skill_sync.py +0 -0
  2005. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_neo_skill_tools.py +0 -0
  2006. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_openai_source.py +0 -0
  2007. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_pip_helper_modules.py +0 -0
  2008. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_pip_installer.py +0 -0
  2009. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_plugin_manager.py +0 -0
  2010. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_profile_aware_tools.py +0 -0
  2011. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_quoted_message_parser.py +0 -0
  2012. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_runtime_env.py +0 -0
  2013. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_security_fixes.py +0 -0
  2014. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_skill_manager_sandbox_cache.py +0 -0
  2015. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_skill_metadata_enrichment.py +0 -0
  2016. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_smoke.py +0 -0
  2017. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_storage_cleaner.py +0 -0
  2018. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_telegram_adapter.py +0 -0
  2019. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_temp_dir_cleaner.py +0 -0
  2020. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_tool_loop_agent_runner.py +0 -0
  2021. {astrbot-4.23.1 → astrbot-4.23.2}/tests/test_whisper_api_source.py +0 -0
  2022. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_aiocqhttp_poke.py +0 -0
  2023. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_astr_agent_tool_exec.py +0 -0
  2024. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_astr_main_agent.py +0 -0
  2025. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_astr_message_event.py +0 -0
  2026. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_astrbot_message.py +0 -0
  2027. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_computer.py +0 -0
  2028. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_config.py +0 -0
  2029. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_core_lifecycle.py +0 -0
  2030. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_cron_tools.py +0 -0
  2031. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_event_bus.py +0 -0
  2032. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_func_tool_manager.py +0 -0
  2033. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_kb_manager_resilience.py +0 -0
  2034. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_provider_stats.py +0 -0
  2035. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_python_tools.py +0 -0
  2036. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_session_lock.py +0 -0
  2037. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_star_base.py +0 -0
  2038. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_subagent_orchestrator.py +0 -0
  2039. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_tool_conflict_resolution.py +0 -0
  2040. {astrbot-4.23.1 → astrbot-4.23.2}/tests/unit/test_tool_google_schema.py +0 -0
  2041. {astrbot-4.23.1 → astrbot-4.23.2}/typings/faiss/__init__.pyi +0 -0
@@ -0,0 +1,49 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest # 运行环境
12
+ steps:
13
+ - name: checkout
14
+ uses: actions/checkout@v6
15
+ - name: Setup pnpm
16
+ uses: pnpm/action-setup@v5.0.0
17
+ with:
18
+ version: 10.28.2
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v6
21
+ with:
22
+ node-version: "24.13.0"
23
+ cache: "pnpm"
24
+ cache-dependency-path: docs/pnpm-lock.yaml
25
+ - name: Install dependencies
26
+ run: pnpm install --frozen-lockfile
27
+ working-directory: './docs'
28
+ - name: Build docs
29
+ run: pnpm run docs:build
30
+ working-directory: './docs'
31
+ - name: scp
32
+ uses: appleboy/scp-action@v1.0.0
33
+ with:
34
+ host: ${{ secrets.HOST_NEKO }}
35
+ username: ${{ secrets.USERNAME }}
36
+ password: ${{ secrets.PASSWORDNEKO }}
37
+ source: 'docs/.vitepress/dist/*'
38
+ target: '/tmp/'
39
+ - name: script
40
+ uses: appleboy/ssh-action@v1.2.5
41
+ with:
42
+ host: ${{ secrets.HOST_NEKO }}
43
+ username: ${{ secrets.USERNAME }}
44
+ password: ${{ secrets.PASSWORDNEKO }}
45
+ script: |
46
+ mkdir -p /root/docker_data/caddy/caddy_data/static_site/abv4/
47
+ rm -rf /root/docker_data/caddy/caddy_data/static_site/abv4/*
48
+ mv /tmp/docs/.vitepress/dist/* /root/docker_data/caddy/caddy_data/static_site/abv4/
49
+ rm -rf /tmp/docs/
@@ -0,0 +1,61 @@
1
+ name: AstrBot Dashboard CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
+ branches: [ "master" ]
8
+
9
+ jobs:
10
+ build:
11
+ if: github.repository == 'AstrBotDevs/AstrBot'
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v6
16
+
17
+ - name: Setup pnpm
18
+ uses: pnpm/action-setup@v5.0.0
19
+ with:
20
+ version: 10.28.2
21
+
22
+ - name: Setup Node.js
23
+ uses: actions/setup-node@v6
24
+ with:
25
+ node-version: '24.13.0'
26
+ cache: "pnpm"
27
+ cache-dependency-path: dashboard/pnpm-lock.yaml
28
+
29
+ - name: Install and Build
30
+ working-directory: dashboard
31
+ run: |
32
+ pnpm install --frozen-lockfile
33
+ pnpm run build
34
+
35
+ - name: Inject Commit SHA
36
+ id: get_sha
37
+ run: |
38
+ echo "COMMIT_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
39
+ mkdir -p dashboard/dist/assets
40
+ echo $COMMIT_SHA > dashboard/dist/assets/version
41
+ cd dashboard
42
+ zip -r dist.zip dist
43
+
44
+ - name: Archive production artifacts
45
+ uses: actions/upload-artifact@v7
46
+ with:
47
+ name: dist-without-markdown
48
+ path: |
49
+ dashboard/dist
50
+ !dist/**/*.md
51
+
52
+ - name: Create GitHub Release
53
+ if: github.event_name == 'push'
54
+ uses: ncipollo/release-action@v1.21.0
55
+ with:
56
+ tag: release-${{ github.sha }}
57
+ owner: AstrBotDevs
58
+ repo: astrbot-release-harbour
59
+ body: "Automated release from commit ${{ github.sha }}"
60
+ token: ${{ secrets.ASTRBOT_HARBOUR_TOKEN }}
61
+ artifacts: "dashboard/dist.zip"
@@ -0,0 +1,198 @@
1
+ name: Docker Image CI/CD
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+ schedule:
8
+ # Run at 00:00 UTC every day
9
+ - cron: "0 0 * * *"
10
+ workflow_dispatch:
11
+
12
+ jobs:
13
+ build-nightly-image:
14
+ if: github.repository == 'AstrBotDevs/AstrBot' && github.event_name == 'schedule'
15
+ runs-on: ubuntu-latest
16
+ env:
17
+ DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
18
+ GHCR_OWNER: astrbotdevs
19
+ HAS_GHCR_TOKEN: ${{ secrets.GHCR_GITHUB_TOKEN != '' }}
20
+
21
+ steps:
22
+ - name: Checkout
23
+ uses: actions/checkout@v6
24
+ with:
25
+ fetch-depth: 1
26
+ fetch-tag: true
27
+
28
+ - name: Check for new commits today
29
+ if: github.event_name == 'schedule'
30
+ id: check-commits
31
+ run: |
32
+ # Get commits from the last 24 hours
33
+ commits=$(git log --since="24 hours ago" --oneline)
34
+ if [ -z "$commits" ]; then
35
+ echo "No commits in the last 24 hours, skipping build"
36
+ echo "has_commits=false" >> $GITHUB_OUTPUT
37
+ else
38
+ echo "Found commits in the last 24 hours:"
39
+ echo "$commits"
40
+ echo "has_commits=true" >> $GITHUB_OUTPUT
41
+ fi
42
+
43
+ - name: Exit if no commits
44
+ if: github.event_name == 'schedule' && steps.check-commits.outputs.has_commits == 'false'
45
+ run: exit 0
46
+
47
+ - name: Build Dashboard
48
+ run: |
49
+ cd dashboard
50
+ npm install
51
+ npm run build
52
+ mkdir -p dist/assets
53
+ echo $(git rev-parse HEAD) > dist/assets/version
54
+ cd ..
55
+ mkdir -p data
56
+ cp -r dashboard/dist data/
57
+
58
+ - name: Determine test image tags
59
+ id: test-meta
60
+ run: |
61
+ short_sha=$(echo "${GITHUB_SHA}" | cut -c1-12)
62
+ build_date=$(date +%Y%m%d)
63
+ echo "short_sha=$short_sha" >> $GITHUB_OUTPUT
64
+ echo "build_date=$build_date" >> $GITHUB_OUTPUT
65
+
66
+ - name: Set QEMU
67
+ uses: docker/setup-qemu-action@v4.0.0
68
+
69
+ - name: Set Docker Buildx
70
+ uses: docker/setup-buildx-action@v4.0.0
71
+
72
+ - name: Log in to DockerHub
73
+ uses: docker/login-action@v4.1.0
74
+ with:
75
+ username: ${{ secrets.DOCKER_HUB_USERNAME }}
76
+ password: ${{ secrets.DOCKER_HUB_PASSWORD }}
77
+
78
+ - name: Login to GitHub Container Registry
79
+ if: env.HAS_GHCR_TOKEN == 'true'
80
+ uses: docker/login-action@v4.1.0
81
+ with:
82
+ registry: ghcr.io
83
+ username: ${{ env.GHCR_OWNER }}
84
+ password: ${{ secrets.GHCR_GITHUB_TOKEN }}
85
+
86
+ - name: Build nightly image tags list
87
+ id: test-tags
88
+ run: |
89
+ TAGS="${{ env.DOCKER_HUB_USERNAME }}/astrbot:nightly-latest
90
+ ${{ env.DOCKER_HUB_USERNAME }}/astrbot:nightly-${{ steps.test-meta.outputs.build_date }}-${{ steps.test-meta.outputs.short_sha }}"
91
+ if [ "${{ env.HAS_GHCR_TOKEN }}" = "true" ]; then
92
+ TAGS="$TAGS
93
+ ghcr.io/${{ env.GHCR_OWNER }}/astrbot:nightly-latest
94
+ ghcr.io/${{ env.GHCR_OWNER }}/astrbot:nightly-${{ steps.test-meta.outputs.build_date }}-${{ steps.test-meta.outputs.short_sha }}"
95
+ fi
96
+ echo "tags<<EOF" >> $GITHUB_OUTPUT
97
+ echo "$TAGS" >> $GITHUB_OUTPUT
98
+ echo "EOF" >> $GITHUB_OUTPUT
99
+
100
+ - name: Build and Push Nightly Image
101
+ uses: docker/build-push-action@v7.1.0
102
+ with:
103
+ context: .
104
+ platforms: linux/amd64,linux/arm64
105
+ push: true
106
+ tags: ${{ steps.test-tags.outputs.tags }}
107
+
108
+ - name: Post build notifications
109
+ run: echo "Test Docker image has been built and pushed successfully"
110
+
111
+ build-release-image:
112
+ if: github.repository == 'AstrBotDevs/AstrBot' && (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')))
113
+ runs-on: ubuntu-latest
114
+ env:
115
+ DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
116
+ GHCR_OWNER: astrbotdevs
117
+ HAS_GHCR_TOKEN: ${{ secrets.GHCR_GITHUB_TOKEN != '' }}
118
+
119
+ steps:
120
+ - name: Checkout
121
+ uses: actions/checkout@v6
122
+ with:
123
+ fetch-depth: 1
124
+ fetch-tag: true
125
+
126
+ - name: Get latest tag (only on manual trigger)
127
+ id: get-latest-tag
128
+ if: github.event_name == 'workflow_dispatch'
129
+ run: |
130
+ tag=$(git describe --tags --abbrev=0)
131
+ echo "latest_tag=$tag" >> $GITHUB_OUTPUT
132
+
133
+ - name: Checkout to latest tag (only on manual trigger)
134
+ if: github.event_name == 'workflow_dispatch'
135
+ run: git checkout ${{ steps.get-latest-tag.outputs.latest_tag }}
136
+
137
+ - name: Compute release metadata
138
+ id: release-meta
139
+ run: |
140
+ if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
141
+ version="${{ steps.get-latest-tag.outputs.latest_tag }}"
142
+ else
143
+ version="${GITHUB_REF#refs/tags/}"
144
+ fi
145
+ if [[ "$version" == *"beta"* ]] || [[ "$version" == *"alpha"* ]]; then
146
+ echo "is_prerelease=true" >> $GITHUB_OUTPUT
147
+ echo "Version $version marked as pre-release"
148
+ else
149
+ echo "is_prerelease=false" >> $GITHUB_OUTPUT
150
+ echo "Version $version marked as stable"
151
+ fi
152
+ echo "version=$version" >> $GITHUB_OUTPUT
153
+
154
+ - name: Build Dashboard
155
+ run: |
156
+ cd dashboard
157
+ npm install
158
+ npm run build
159
+ mkdir -p dist/assets
160
+ echo $(git rev-parse HEAD) > dist/assets/version
161
+ cd ..
162
+ mkdir -p data
163
+ cp -r dashboard/dist data/
164
+
165
+ - name: Set QEMU
166
+ uses: docker/setup-qemu-action@v4.0.0
167
+
168
+ - name: Set Docker Buildx
169
+ uses: docker/setup-buildx-action@v4.0.0
170
+
171
+ - name: Log in to DockerHub
172
+ uses: docker/login-action@v4.1.0
173
+ with:
174
+ username: ${{ secrets.DOCKER_HUB_USERNAME }}
175
+ password: ${{ secrets.DOCKER_HUB_PASSWORD }}
176
+
177
+ - name: Login to GitHub Container Registry
178
+ if: env.HAS_GHCR_TOKEN == 'true'
179
+ uses: docker/login-action@v4.1.0
180
+ with:
181
+ registry: ghcr.io
182
+ username: ${{ env.GHCR_OWNER }}
183
+ password: ${{ secrets.GHCR_GITHUB_TOKEN }}
184
+
185
+ - name: Build and Push Release Image
186
+ uses: docker/build-push-action@v7.1.0
187
+ with:
188
+ context: .
189
+ platforms: linux/amd64,linux/arm64
190
+ push: true
191
+ tags: |
192
+ ${{ steps.release-meta.outputs.is_prerelease == 'false' && format('{0}/astrbot:latest', env.DOCKER_HUB_USERNAME) || '' }}
193
+ ${{ steps.release-meta.outputs.is_prerelease == 'false' && env.HAS_GHCR_TOKEN == 'true' && format('ghcr.io/{0}/astrbot:latest', env.GHCR_OWNER) || '' }}
194
+ ${{ format('{0}/astrbot:{1}', env.DOCKER_HUB_USERNAME, steps.release-meta.outputs.version) }}
195
+ ${{ env.HAS_GHCR_TOKEN == 'true' && format('ghcr.io/{0}/astrbot:{1}', env.GHCR_OWNER, steps.release-meta.outputs.version) || '' }}
196
+
197
+ - name: Post build notifications
198
+ run: echo "Release Docker image has been built and pushed successfully"
@@ -0,0 +1,54 @@
1
+ name: PR Title Check
2
+
3
+ on:
4
+ pull_request_target:
5
+ types: [opened, edited, reopened, synchronize]
6
+
7
+ jobs:
8
+ title-format:
9
+ if: github.repository == 'AstrBotDevs/AstrBot'
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ pull-requests: write
13
+ issues: write
14
+
15
+ steps:
16
+ - name: Validate PR title
17
+ uses: actions/github-script@v9
18
+ with:
19
+ script: |
20
+ const title = (context.payload.pull_request.title || "").trim();
21
+ // allow only:
22
+ // feat: xxx
23
+ // feat(scope): xxx
24
+ const pattern = /^(feat)(\([a-z0-9-]+\))?:\s.+$/i;
25
+ const isValid = pattern.test(title);
26
+ const isSameRepo =
27
+ context.payload.pull_request.head.repo.full_name === context.payload.repository.full_name;
28
+
29
+ if (!isValid) {
30
+ if (isSameRepo) {
31
+ try {
32
+ await github.rest.issues.createComment({
33
+ owner: context.repo.owner,
34
+ repo: context.repo.repo,
35
+ issue_number: context.payload.pull_request.number,
36
+ body: [
37
+ "⚠️ PR title format check failed.",
38
+ "Required formats:",
39
+ "- `feat: xxx`",
40
+ "- `feat(scope): xxx`",
41
+ "Please update your PR title and push again."
42
+ ].join("\n")
43
+ });
44
+ } catch (e) {
45
+ core.warning(`Failed to post PR title comment: ${e.message}`);
46
+ }
47
+ } else {
48
+ core.warning("Fork PR: comment permission is restricted; skip posting review comment.");
49
+ }
50
+ }
51
+
52
+ if (!isValid) {
53
+ core.setFailed("Invalid PR title. Expected format: feat: xxx or feat(scope): xxx.");
54
+ }
@@ -0,0 +1,248 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+ workflow_dispatch:
8
+ inputs:
9
+ ref:
10
+ description: "Git ref to build (branch/tag/SHA)"
11
+ required: false
12
+ default: "master"
13
+ tag:
14
+ description: "Release tag to publish assets to (for example: v4.14.6)"
15
+ required: false
16
+
17
+ permissions:
18
+ contents: write
19
+
20
+ jobs:
21
+ build-dashboard:
22
+ name: Build Dashboard
23
+ if: github.repository == 'AstrBotDevs/AstrBot'
24
+ runs-on: ubuntu-24.04
25
+ env:
26
+ R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}
27
+ R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
28
+ R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
29
+ steps:
30
+ - name: Checkout repository
31
+ uses: actions/checkout@v6
32
+ with:
33
+ fetch-depth: 0
34
+ ref: ${{ inputs.ref || github.ref }}
35
+
36
+ - name: Resolve tag
37
+ id: tag
38
+ shell: bash
39
+ run: |
40
+ if [ "${{ github.event_name }}" = "push" ]; then
41
+ tag="${GITHUB_REF_NAME}"
42
+ elif [ -n "${{ inputs.tag }}" ]; then
43
+ tag="${{ inputs.tag }}"
44
+ else
45
+ tag="$(git describe --tags --abbrev=0)"
46
+ fi
47
+ if [ -z "$tag" ]; then
48
+ echo "Failed to resolve tag." >&2
49
+ exit 1
50
+ fi
51
+ echo "tag=$tag" >> "$GITHUB_OUTPUT"
52
+
53
+ - name: Setup pnpm
54
+ uses: pnpm/action-setup@v5.0.0
55
+ with:
56
+ version: 10.28.2
57
+
58
+ - name: Setup Node.js
59
+ uses: actions/setup-node@v6
60
+ with:
61
+ node-version: '24.13.0'
62
+ cache: "pnpm"
63
+ cache-dependency-path: dashboard/pnpm-lock.yaml
64
+
65
+ - name: Build dashboard dist
66
+ shell: bash
67
+ working-directory: dashboard
68
+ run: |
69
+ pnpm install --frozen-lockfile
70
+ pnpm run build
71
+ echo "${{ steps.tag.outputs.tag }}" > dist/assets/version
72
+ zip -r "AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip" dist
73
+
74
+ - name: Upload dashboard artifact
75
+ uses: actions/upload-artifact@v7
76
+ with:
77
+ name: Dashboard-${{ steps.tag.outputs.tag }}
78
+ if-no-files-found: error
79
+ path: dashboard/AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip
80
+
81
+ - name: Upload dashboard package to Cloudflare R2
82
+ if: ${{ env.R2_ACCOUNT_ID != '' && env.R2_ACCESS_KEY_ID != '' && env.R2_SECRET_ACCESS_KEY != '' }}
83
+ env:
84
+ R2_BUCKET_NAME: "astrbot"
85
+ R2_OBJECT_NAME: "astrbot-webui-latest.zip"
86
+ VERSION_TAG: ${{ steps.tag.outputs.tag }}
87
+ shell: bash
88
+ run: |
89
+ curl https://rclone.org/install.sh | sudo bash
90
+
91
+ mkdir -p ~/.config/rclone
92
+ cat <<EOF > ~/.config/rclone/rclone.conf
93
+ [r2]
94
+ type = s3
95
+ provider = Cloudflare
96
+ access_key_id = $R2_ACCESS_KEY_ID
97
+ secret_access_key = $R2_SECRET_ACCESS_KEY
98
+ endpoint = https://${R2_ACCOUNT_ID}.r2.cloudflarestorage.com
99
+ EOF
100
+
101
+ cp "dashboard/AstrBot-${VERSION_TAG}-dashboard.zip" "dashboard/${R2_OBJECT_NAME}"
102
+ rclone copy "dashboard/${R2_OBJECT_NAME}" "r2:${R2_BUCKET_NAME}" --progress
103
+ cp "dashboard/AstrBot-${VERSION_TAG}-dashboard.zip" "dashboard/astrbot-webui-${VERSION_TAG}.zip"
104
+ rclone copy "dashboard/astrbot-webui-${VERSION_TAG}.zip" "r2:${R2_BUCKET_NAME}" --progress
105
+
106
+ publish-release:
107
+ name: Publish GitHub Release
108
+ if: github.repository == 'AstrBotDevs/AstrBot'
109
+ runs-on: ubuntu-24.04
110
+ needs:
111
+ - build-dashboard
112
+ steps:
113
+ - name: Checkout repository
114
+ uses: actions/checkout@v6
115
+ with:
116
+ fetch-depth: 0
117
+ ref: ${{ inputs.ref || github.ref }}
118
+
119
+ - name: Resolve tag
120
+ id: tag
121
+ shell: bash
122
+ run: |
123
+ if [ "${{ github.event_name }}" = "push" ]; then
124
+ tag="${GITHUB_REF_NAME}"
125
+ elif [ -n "${{ inputs.tag }}" ]; then
126
+ tag="${{ inputs.tag }}"
127
+ else
128
+ tag="$(git describe --tags --abbrev=0)"
129
+ fi
130
+ if [ -z "$tag" ]; then
131
+ echo "Failed to resolve tag." >&2
132
+ exit 1
133
+ fi
134
+ echo "tag=$tag" >> "$GITHUB_OUTPUT"
135
+
136
+ - name: Download dashboard artifact
137
+ uses: actions/download-artifact@v8
138
+ with:
139
+ name: Dashboard-${{ steps.tag.outputs.tag }}
140
+ path: release-assets
141
+
142
+
143
+ - name: Resolve release notes
144
+ id: notes
145
+ shell: bash
146
+ run: |
147
+ note_file="changelogs/${{ steps.tag.outputs.tag }}.md"
148
+ if [ ! -f "$note_file" ]; then
149
+ note_file="$(mktemp)"
150
+ echo "Release ${{ steps.tag.outputs.tag }}" > "$note_file"
151
+ fi
152
+ echo "file=$note_file" >> "$GITHUB_OUTPUT"
153
+
154
+ - name: Ensure release exists
155
+ env:
156
+ GH_TOKEN: ${{ github.token }}
157
+ shell: bash
158
+ run: |
159
+ tag="${{ steps.tag.outputs.tag }}"
160
+ if ! gh release view "$tag" >/dev/null 2>&1; then
161
+ gh release create "$tag" --title "$tag" --notes-file "${{ steps.notes.outputs.file }}"
162
+ fi
163
+
164
+ - name: Remove stale assets from release
165
+ env:
166
+ GH_TOKEN: ${{ github.token }}
167
+ shell: bash
168
+ run: |
169
+ tag="${{ steps.tag.outputs.tag }}"
170
+ while IFS= read -r asset; do
171
+ case "$asset" in
172
+ *.AppImage|*.dmg|*.zip|*.exe|*.blockmap)
173
+ gh release delete-asset "$tag" "$asset" -y || true
174
+ ;;
175
+ esac
176
+ done < <(gh release view "$tag" --json assets --jq '.assets[].name')
177
+
178
+ - name: Upload assets to release
179
+ env:
180
+ GH_TOKEN: ${{ github.token }}
181
+ shell: bash
182
+ run: |
183
+ tag="${{ steps.tag.outputs.tag }}"
184
+ gh release upload "$tag" release-assets/* --clobber
185
+
186
+ publish-pypi:
187
+ name: Publish PyPI
188
+ if: github.repository == 'AstrBotDevs/AstrBot'
189
+ runs-on: ubuntu-24.04
190
+ needs:
191
+ - publish-release
192
+ steps:
193
+ - name: Checkout repository
194
+ uses: actions/checkout@v6
195
+ with:
196
+ fetch-depth: 0
197
+ ref: ${{ inputs.ref || github.ref }}
198
+
199
+ - name: Resolve tag
200
+ id: tag
201
+ shell: bash
202
+ run: |
203
+ if [ "${{ github.event_name }}" = "push" ]; then
204
+ tag="${GITHUB_REF_NAME}"
205
+ elif [ -n "${{ inputs.tag }}" ]; then
206
+ tag="${{ inputs.tag }}"
207
+ else
208
+ tag="$(git describe --tags --abbrev=0)"
209
+ fi
210
+ if [ -z "$tag" ]; then
211
+ echo "Failed to resolve tag." >&2
212
+ exit 1
213
+ fi
214
+ echo "tag=$tag" >> "$GITHUB_OUTPUT"
215
+
216
+ - name: Download dashboard artifact
217
+ uses: actions/download-artifact@v8
218
+ with:
219
+ name: Dashboard-${{ steps.tag.outputs.tag }}
220
+ path: dashboard-artifact
221
+
222
+ - name: Unpack dashboard dist into package tree
223
+ shell: bash
224
+ run: |
225
+ mkdir -p astrbot/dashboard/dist
226
+ unzip -q "dashboard-artifact/AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip" -d dashboard-artifact/unpacked
227
+ cp -r dashboard-artifact/unpacked/dist/. astrbot/dashboard/dist/
228
+
229
+ - name: Set up Python
230
+ uses: actions/setup-python@v6
231
+ with:
232
+ python-version: "3.10"
233
+
234
+ - name: Install uv
235
+ shell: bash
236
+ run: python -m pip install uv
237
+
238
+ - name: Build package
239
+ shell: bash
240
+ # Dashboard assets are already in astrbot/dashboard/dist/;
241
+ # ASTRBOT_BUILD_DASHBOARD is intentionally unset so the hatch hook skips npm.
242
+ run: uv build
243
+
244
+ - name: Publish to PyPI
245
+ env:
246
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
247
+ shell: bash
248
+ run: uv publish