AstrBot 4.3.5__tar.gz → 4.5.1__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 (626) hide show
  1. {astrbot-4.3.5 → astrbot-4.5.1}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +5 -4
  2. {astrbot-4.3.5 → astrbot-4.5.1}/.github/ISSUE_TEMPLATE/bug-report.yml +3 -3
  3. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/dashboard_ci.yml +10 -3
  4. astrbot-4.5.1/.pre-commit-config.yaml +25 -0
  5. {astrbot-4.3.5 → astrbot-4.5.1}/PKG-INFO +30 -13
  6. {astrbot-4.3.5 → astrbot-4.5.1}/README.md +23 -11
  7. {astrbot-4.3.5 → astrbot-4.5.1}/README_en.md +9 -9
  8. {astrbot-4.3.5 → astrbot-4.5.1}/README_ja.md +4 -4
  9. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/runners/tool_loop_agent_runner.py +31 -2
  10. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/astrbot_config_mgr.py +23 -51
  11. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/config/default.py +132 -12
  12. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/conversation_mgr.py +36 -1
  13. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/core_lifecycle.py +24 -5
  14. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/migration/helper.py +6 -3
  15. astrbot-4.5.1/astrbot/core/db/migration/migra_45_to_46.py +44 -0
  16. astrbot-4.5.1/astrbot/core/db/vec_db/base.py +77 -0
  17. astrbot-4.5.1/astrbot/core/db/vec_db/faiss_impl/document_storage.py +379 -0
  18. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +31 -3
  19. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +81 -23
  20. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/file_token_service.py +6 -1
  21. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/initial_loader.py +6 -3
  22. astrbot-4.5.1/astrbot/core/knowledge_base/chunking/__init__.py +11 -0
  23. astrbot-4.5.1/astrbot/core/knowledge_base/chunking/base.py +24 -0
  24. astrbot-4.5.1/astrbot/core/knowledge_base/chunking/fixed_size.py +57 -0
  25. astrbot-4.5.1/astrbot/core/knowledge_base/chunking/recursive.py +155 -0
  26. astrbot-4.5.1/astrbot/core/knowledge_base/kb_db_sqlite.py +299 -0
  27. astrbot-4.5.1/astrbot/core/knowledge_base/kb_helper.py +348 -0
  28. astrbot-4.5.1/astrbot/core/knowledge_base/kb_mgr.py +287 -0
  29. astrbot-4.5.1/astrbot/core/knowledge_base/models.py +114 -0
  30. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/__init__.py +15 -0
  31. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/base.py +50 -0
  32. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/markitdown_parser.py +25 -0
  33. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/pdf_parser.py +100 -0
  34. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/text_parser.py +41 -0
  35. astrbot-4.5.1/astrbot/core/knowledge_base/parsers/util.py +13 -0
  36. astrbot-4.5.1/astrbot/core/knowledge_base/retrieval/__init__.py +16 -0
  37. astrbot-4.5.1/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +767 -0
  38. astrbot-4.5.1/astrbot/core/knowledge_base/retrieval/manager.py +273 -0
  39. astrbot-4.5.1/astrbot/core/knowledge_base/retrieval/rank_fusion.py +138 -0
  40. astrbot-4.5.1/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +130 -0
  41. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/process_stage/method/llm_request.py +29 -7
  42. astrbot-4.5.1/astrbot/core/pipeline/process_stage/utils.py +80 -0
  43. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/astr_message_event.py +8 -7
  44. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +5 -2
  45. astrbot-4.5.1/astrbot/core/platform/sources/misskey/misskey_adapter.py +727 -0
  46. astrbot-4.5.1/astrbot/core/platform/sources/misskey/misskey_api.py +940 -0
  47. astrbot-4.5.1/astrbot/core/platform/sources/misskey/misskey_event.py +158 -0
  48. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/misskey/misskey_utils.py +254 -43
  49. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +2 -1
  50. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/satori/satori_adapter.py +27 -1
  51. astrbot-4.5.1/astrbot/core/platform/sources/satori/satori_event.py +423 -0
  52. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/manager.py +22 -9
  53. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/provider.py +67 -0
  54. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/anthropic_source.py +4 -4
  55. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/dashscope_source.py +10 -9
  56. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/dify_source.py +6 -8
  57. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/gemini_embedding_source.py +1 -2
  58. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/openai_embedding_source.py +1 -2
  59. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/openai_source.py +43 -15
  60. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/openai_tts_api_source.py +1 -1
  61. astrbot-4.5.1/astrbot/core/provider/sources/xinference_rerank_source.py +108 -0
  62. astrbot-4.5.1/astrbot/core/provider/sources/xinference_stt_provider.py +187 -0
  63. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/context.py +19 -13
  64. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/star.py +6 -0
  65. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/star_manager.py +13 -7
  66. astrbot-4.5.1/astrbot/core/umop_config_router.py +81 -0
  67. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/updator.py +1 -1
  68. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/io.py +23 -12
  69. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/__init__.py +2 -0
  70. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/config.py +137 -9
  71. astrbot-4.5.1/astrbot/dashboard/routes/knowledge_base.py +1065 -0
  72. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/plugin.py +24 -5
  73. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/update.py +1 -1
  74. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/server.py +6 -0
  75. astrbot-4.5.1/astrbot/dashboard/utils.py +161 -0
  76. astrbot-4.5.1/astrbot.lock +0 -0
  77. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.0.md +1 -1
  78. astrbot-4.5.1/changelogs/v3.4.16.md +6 -0
  79. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.33.md +4 -4
  80. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.37.md +1 -1
  81. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.0.md +12 -12
  82. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.1.md +3 -3
  83. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.12.md +2 -2
  84. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.25.md +7 -7
  85. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.0.0-beta.5.md +1 -1
  86. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.0.md +10 -10
  87. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.3.md +5 -5
  88. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.4.md +5 -5
  89. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.3.3.md +9 -9
  90. astrbot-4.5.1/changelogs/v4.5.0.md +14 -0
  91. astrbot-4.5.1/changelogs/v4.5.1.md +7 -0
  92. {astrbot-4.3.5 → astrbot-4.5.1}/compose.yml +1 -1
  93. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/chat/Chat.vue +14 -1
  94. astrbot-4.5.1/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +105 -0
  95. astrbot-4.5.1/dashboard/src/components/platform/AddNewPlatform.vue +1019 -0
  96. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/AstrBotConfig.vue +54 -24
  97. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/AstrBotConfigV4.vue +2 -2
  98. astrbot-4.5.1/dashboard/src/components/shared/ExtensionCard.vue +255 -0
  99. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ItemCard.vue +0 -1
  100. astrbot-4.5.1/dashboard/src/components/shared/KnowledgeBaseSelector.vue +223 -0
  101. astrbot-4.5.1/dashboard/src/components/shared/PersonaForm.vue +536 -0
  102. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/PersonaSelector.vue +31 -1
  103. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/core/navigation.json +6 -3
  104. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +1 -1
  105. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/conversation.json +3 -1
  106. astrbot-4.5.1/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +83 -0
  107. astrbot-4.5.1/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +52 -0
  108. astrbot-4.5.1/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +67 -0
  109. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/session-management.json +29 -0
  110. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +8 -5
  111. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +1 -1
  112. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +6 -4
  113. astrbot-4.5.1/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +108 -0
  114. astrbot-4.5.1/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +55 -0
  115. astrbot-4.5.1/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +67 -0
  116. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/platform.json +6 -6
  117. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/provider.json +14 -14
  118. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +30 -1
  119. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/translations.ts +16 -0
  120. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +4 -4
  121. astrbot-4.5.1/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +59 -0
  122. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +116 -13
  123. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +39 -33
  124. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/main.ts +1 -1
  125. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/router/MainRoutes.ts +34 -8
  126. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/stores/common.js +3 -2
  127. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/theme/LightTheme.ts +1 -1
  128. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/AboutPage.vue +2 -2
  129. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/AlkaidPage.vue +3 -3
  130. astrbot-4.5.1/dashboard/src/views/ConfigPage.vue +568 -0
  131. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ConversationPage.vue +3 -3
  132. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ExtensionPage.vue +25 -21
  133. astrbot-4.5.1/dashboard/src/views/PersonaPage.vue +322 -0
  134. astrbot-4.5.1/dashboard/src/views/PlatformPage.vue +237 -0
  135. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ProviderPage.vue +42 -57
  136. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/SessionManagementPage.vue +323 -4
  137. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/alkaid/KnowledgeBase.vue +12 -6
  138. astrbot-4.5.1/dashboard/src/views/knowledge-base/DocumentDetail.vue +512 -0
  139. astrbot-4.5.1/dashboard/src/views/knowledge-base/KBDetail.vue +351 -0
  140. astrbot-4.5.1/dashboard/src/views/knowledge-base/KBList.vue +615 -0
  141. astrbot-4.5.1/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +660 -0
  142. astrbot-4.5.1/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +248 -0
  143. astrbot-4.5.1/dashboard/src/views/knowledge-base/components/SettingsTab.vue +316 -0
  144. astrbot-4.5.1/dashboard/src/views/knowledge-base/index.vue +37 -0
  145. {astrbot-4.3.5 → astrbot-4.5.1}/main.py +1 -1
  146. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/provider.py +6 -2
  147. astrbot-4.5.1/packages/astrbot/commands/sid.py +36 -0
  148. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/long_term_memory.py +8 -2
  149. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/process_llm_request.py +2 -1
  150. astrbot-4.5.1/packages/thinking_filter/main.py +203 -0
  151. {astrbot-4.3.5 → astrbot-4.5.1}/packages/web_searcher/main.py +4 -18
  152. {astrbot-4.3.5 → astrbot-4.5.1}/pyproject.toml +8 -2
  153. astrbot-4.5.1/requirements.txt +54 -0
  154. astrbot-4.3.5/.pre-commit-config.yaml +0 -13
  155. astrbot-4.3.5/astrbot/core/db/vec_db/base.py +0 -46
  156. astrbot-4.3.5/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -121
  157. astrbot-4.3.5/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -391
  158. astrbot-4.3.5/astrbot/core/platform/sources/misskey/misskey_api.py +0 -404
  159. astrbot-4.3.5/astrbot/core/platform/sources/misskey/misskey_event.py +0 -123
  160. astrbot-4.3.5/astrbot/core/platform/sources/satori/satori_event.py +0 -252
  161. astrbot-4.3.5/changelogs/v3.4.16.md +0 -6
  162. astrbot-4.3.5/dashboard/src/components/platform/AddNewPlatform.vue +0 -173
  163. astrbot-4.3.5/dashboard/src/components/shared/ExtensionCard.vue +0 -227
  164. astrbot-4.3.5/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -225
  165. astrbot-4.3.5/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -37
  166. astrbot-4.3.5/dashboard/src/views/ConfigPage.vue +0 -1168
  167. astrbot-4.3.5/dashboard/src/views/PersonaPage.vue +0 -803
  168. astrbot-4.3.5/dashboard/src/views/PlatformPage.vue +0 -445
  169. astrbot-4.3.5/packages/astrbot/commands/sid.py +0 -29
  170. astrbot-4.3.5/packages/thinking_filter/main.py +0 -62
  171. astrbot-4.3.5/packages/web_searcher/engines/google.py +0 -30
  172. astrbot-4.3.5/requirements.txt +0 -46
  173. {astrbot-4.3.5 → astrbot-4.5.1}/.dockerignore +0 -0
  174. {astrbot-4.3.5 → astrbot-4.5.1}/.github/FUNDING.yml +0 -0
  175. {astrbot-4.3.5 → astrbot-4.5.1}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
  176. {astrbot-4.3.5 → astrbot-4.5.1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  177. {astrbot-4.3.5 → astrbot-4.5.1}/.github/auto_assign.yml +0 -0
  178. {astrbot-4.3.5 → astrbot-4.5.1}/.github/copilot-instructions.md +0 -0
  179. {astrbot-4.3.5 → astrbot-4.5.1}/.github/dependabot.yml +0 -0
  180. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/auto_release.yml +0 -0
  181. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/code-format.yml +0 -0
  182. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/codeql.yml +0 -0
  183. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/coverage_test.yml +0 -0
  184. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/docker-image.yml +0 -0
  185. {astrbot-4.3.5 → astrbot-4.5.1}/.github/workflows/stale.yml +0 -0
  186. {astrbot-4.3.5 → astrbot-4.5.1}/.gitignore +0 -0
  187. {astrbot-4.3.5 → astrbot-4.5.1}/.python-version +0 -0
  188. {astrbot-4.3.5 → astrbot-4.5.1}/CODE_OF_CONDUCT.md +0 -0
  189. {astrbot-4.3.5 → astrbot-4.5.1}/Dockerfile +0 -0
  190. {astrbot-4.3.5 → astrbot-4.5.1}/Dockerfile_with_node +0 -0
  191. {astrbot-4.3.5 → astrbot-4.5.1}/LICENSE +0 -0
  192. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/__init__.py +0 -0
  193. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/__init__.py +0 -0
  194. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/all.py +0 -0
  195. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/event/__init__.py +0 -0
  196. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/event/filter/__init__.py +0 -0
  197. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/message_components.py +0 -0
  198. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/platform/__init__.py +0 -0
  199. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/provider/__init__.py +0 -0
  200. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/star/__init__.py +0 -0
  201. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/api/util/__init__.py +0 -0
  202. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/__init__.py +0 -0
  203. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/__main__.py +0 -0
  204. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/commands/__init__.py +0 -0
  205. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/commands/cmd_conf.py +0 -0
  206. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/commands/cmd_init.py +0 -0
  207. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/commands/cmd_plug.py +0 -0
  208. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/commands/cmd_run.py +0 -0
  209. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/utils/__init__.py +0 -0
  210. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/utils/basic.py +0 -0
  211. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/utils/plugin.py +0 -0
  212. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/cli/utils/version_comparator.py +0 -0
  213. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/__init__.py +0 -0
  214. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/agent.py +0 -0
  215. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/handoff.py +0 -0
  216. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/hooks.py +0 -0
  217. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/mcp_client.py +0 -0
  218. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/response.py +0 -0
  219. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/run_context.py +0 -0
  220. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/runners/__init__.py +0 -0
  221. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/runners/base.py +0 -0
  222. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/tool.py +0 -0
  223. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/agent/tool_executor.py +0 -0
  224. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/astr_agent_context.py +0 -0
  225. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/config/__init__.py +0 -0
  226. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/config/astrbot_config.py +0 -0
  227. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/__init__.py +0 -0
  228. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
  229. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
  230. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/migration/sqlite_v3.py +0 -0
  231. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/po.py +0 -0
  232. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/sqlite.py +0 -0
  233. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
  234. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
  235. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/event_bus.py +0 -0
  236. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/log.py +0 -0
  237. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/message/components.py +0 -0
  238. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/message/message_event_result.py +0 -0
  239. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/persona_mgr.py +0 -0
  240. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/__init__.py +0 -0
  241. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
  242. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
  243. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
  244. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
  245. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
  246. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/context.py +0 -0
  247. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/context_utils.py +0 -0
  248. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
  249. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
  250. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/process_stage/stage.py +0 -0
  251. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
  252. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/respond/stage.py +0 -0
  253. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
  254. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/scheduler.py +0 -0
  255. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
  256. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/stage.py +0 -0
  257. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/waking_check/stage.py +0 -0
  258. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
  259. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/__init__.py +0 -0
  260. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/astrbot_message.py +0 -0
  261. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/manager.py +0 -0
  262. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/message_session.py +0 -0
  263. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/message_type.py +0 -0
  264. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/platform.py +0 -0
  265. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/platform_metadata.py +0 -0
  266. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/register.py +0 -0
  267. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
  268. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
  269. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
  270. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/discord/client.py +0 -0
  271. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/discord/components.py +0 -0
  272. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
  273. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
  274. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
  275. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
  276. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
  277. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
  278. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
  279. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
  280. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/slack/client.py +0 -0
  281. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
  282. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
  283. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
  284. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
  285. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -0
  286. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
  287. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
  288. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
  289. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
  290. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
  291. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
  292. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
  293. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
  294. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
  295. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
  296. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
  297. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
  298. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
  299. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
  300. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
  301. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
  302. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
  303. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
  304. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
  305. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
  306. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/platform_message_history_mgr.py +0 -0
  307. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/__init__.py +0 -0
  308. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/entites.py +0 -0
  309. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/entities.py +0 -0
  310. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/func_tool_manager.py +0 -0
  311. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/register.py +0 -0
  312. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
  313. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/coze_api_client.py +0 -0
  314. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/coze_source.py +0 -0
  315. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
  316. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
  317. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
  318. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/gemini_source.py +0 -0
  319. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
  320. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
  321. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
  322. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
  323. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
  324. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
  325. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
  326. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
  327. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
  328. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/provider/sources/zhipu_source.py +0 -0
  329. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/README.md +0 -0
  330. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/__init__.py +0 -0
  331. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/config.py +0 -0
  332. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/__init__.py +0 -0
  333. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/command.py +0 -0
  334. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/command_group.py +0 -0
  335. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/custom_filter.py +0 -0
  336. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/event_message_type.py +0 -0
  337. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/permission.py +0 -0
  338. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
  339. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/filter/regex.py +0 -0
  340. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/register/__init__.py +0 -0
  341. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/register/star.py +0 -0
  342. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/register/star_handler.py +0 -0
  343. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/session_llm_manager.py +0 -0
  344. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/session_plugin_manager.py +0 -0
  345. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/star_handler.py +0 -0
  346. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/star_tools.py +0 -0
  347. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/star/updator.py +0 -0
  348. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/astrbot_path.py +0 -0
  349. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/command_parser.py +0 -0
  350. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/dify_api_client.py +0 -0
  351. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/log_pipe.py +0 -0
  352. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/metrics.py +0 -0
  353. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/path_util.py +0 -0
  354. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/pip_installer.py +0 -0
  355. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/session_lock.py +0 -0
  356. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/session_waiter.py +0 -0
  357. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/shared_preferences.py +0 -0
  358. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/__init__.py +0 -0
  359. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/local_strategy.py +0 -0
  360. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/network_strategy.py +0 -0
  361. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/renderer.py +0 -0
  362. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
  363. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/template/base.html +0 -0
  364. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/t2i/template_manager.py +0 -0
  365. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/tencent_record_helper.py +0 -0
  366. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/utils/version_comparator.py +0 -0
  367. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/core/zip_updator.py +0 -0
  368. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/auth.py +0 -0
  369. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/chat.py +0 -0
  370. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/conversation.py +0 -0
  371. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/file.py +0 -0
  372. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/log.py +0 -0
  373. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/persona.py +0 -0
  374. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/route.py +0 -0
  375. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/session_management.py +0 -0
  376. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/stat.py +0 -0
  377. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/static_file.py +0 -0
  378. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/t2i.py +0 -0
  379. {astrbot-4.3.5 → astrbot-4.5.1}/astrbot/dashboard/routes/tools.py +0 -0
  380. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.1.md +0 -0
  381. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.10.md +0 -0
  382. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.11.md +0 -0
  383. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.12.md +0 -0
  384. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.13.md +0 -0
  385. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.14.md +0 -0
  386. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.15.md +0 -0
  387. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.17.md +0 -0
  388. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.18.md +0 -0
  389. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.19.md +0 -0
  390. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.20.md +0 -0
  391. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.21.md +0 -0
  392. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.22.md +0 -0
  393. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.23.md +0 -0
  394. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.24.md +0 -0
  395. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.25.md +0 -0
  396. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.26.md +0 -0
  397. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.27.md +0 -0
  398. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.28.md +0 -0
  399. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.29.md +0 -0
  400. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.3.md +0 -0
  401. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.30.md +0 -0
  402. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.31.md +0 -0
  403. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.32.md +0 -0
  404. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.35.md +0 -0
  405. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.36.md +0 -0
  406. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.38.md +0 -0
  407. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.39.md +0 -0
  408. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.4.md +0 -0
  409. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.5.md +0 -0
  410. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.6.md +0 -0
  411. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.7.md +0 -0
  412. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.8.md +0 -0
  413. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.4.9.md +0 -0
  414. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.10.md +0 -0
  415. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.11.md +0 -0
  416. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.13.md +0 -0
  417. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.14.md +0 -0
  418. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.15.md +0 -0
  419. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.16.md +0 -0
  420. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.17.md +0 -0
  421. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.18.md +0 -0
  422. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.19.md +0 -0
  423. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.2.md +0 -0
  424. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.20.md +0 -0
  425. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.21.md +0 -0
  426. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.22.md +0 -0
  427. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.23.md +0 -0
  428. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.24.md +0 -0
  429. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.26.md +0 -0
  430. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.27.md +0 -0
  431. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.3.1.md +0 -0
  432. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.3.2.md +0 -0
  433. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.3.md +0 -0
  434. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.4.md +0 -0
  435. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.5.md +0 -0
  436. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.6.md +0 -0
  437. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.7.md +0 -0
  438. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.8.md +0 -0
  439. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v3.5.9.md +0 -0
  440. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.0.0-beta.3.md +0 -0
  441. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.0.0-beta.4.md +0 -0
  442. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.0.0.md +0 -0
  443. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.1.md +0 -0
  444. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.2.md +0 -0
  445. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.5.md +0 -0
  446. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.6.md +0 -0
  447. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.1.7.md +0 -0
  448. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.2.0.md +0 -0
  449. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.2.1.md +0 -0
  450. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.3.0.md +0 -0
  451. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.3.1.md +0 -0
  452. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.3.2.md +0 -0
  453. {astrbot-4.3.5 → astrbot-4.5.1}/changelogs/v4.3.5.md +0 -0
  454. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/.gitignore +0 -0
  455. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/LICENSE +0 -0
  456. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/README.md +0 -0
  457. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/env.d.ts +0 -0
  458. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/index.html +0 -0
  459. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/public/_redirects +0 -0
  460. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/public/favicon.svg +0 -0
  461. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/App.vue +0 -0
  462. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/astrbot_banner.png +0 -0
  463. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
  464. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
  465. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
  466. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
  467. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
  468. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
  469. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
  470. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
  471. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
  472. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
  473. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
  474. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
  475. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
  476. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/ConfirmDialog.vue +0 -0
  477. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/chat/MessageList.vue +0 -0
  478. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
  479. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
  480. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
  481. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
  482. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
  483. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
  484. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/Logo.vue +0 -0
  485. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
  486. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
  487. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
  488. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
  489. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ProxySelector.vue +0 -0
  490. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
  491. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
  492. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
  493. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/config.ts +0 -0
  494. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/composables.ts +0 -0
  495. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/loader.ts +0 -0
  496. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
  497. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
  498. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
  499. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
  500. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
  501. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
  502. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
  503. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
  504. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
  505. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
  506. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
  507. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
  508. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
  509. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
  510. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
  511. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
  512. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
  513. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
  514. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
  515. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
  516. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
  517. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
  518. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
  519. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
  520. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
  521. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
  522. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
  523. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
  524. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
  525. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
  526. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
  527. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
  528. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
  529. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
  530. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
  531. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
  532. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
  533. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
  534. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
  535. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
  536. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
  537. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
  538. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
  539. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
  540. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/tools/index.ts +0 -0
  541. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/types.ts +0 -0
  542. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/i18n/validator.ts +0 -0
  543. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
  544. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/layouts/full/FullLayout.vue +0 -0
  545. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/plugins/confirmPlugin.ts +0 -0
  546. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/plugins/vuetify.ts +0 -0
  547. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/router/AuthRoutes.ts +0 -0
  548. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
  549. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/router/index.ts +0 -0
  550. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/_override.scss +0 -0
  551. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/_variables.scss +0 -0
  552. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VButtons.scss +0 -0
  553. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VCard.scss +0 -0
  554. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VField.scss +0 -0
  555. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VInput.scss +0 -0
  556. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
  557. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
  558. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VShadow.scss +0 -0
  559. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VTabs.scss +0 -0
  560. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/components/_VTextField.scss +0 -0
  561. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/layout/_container.scss +0 -0
  562. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/layout/_sidebar.scss +0 -0
  563. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/pages/_dashboards.scss +0 -0
  564. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/scss/style.scss +0 -0
  565. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/stores/auth.ts +0 -0
  566. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/stores/customizer.ts +0 -0
  567. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/stores/toast.js +0 -0
  568. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/theme/DarkTheme.ts +0 -0
  569. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
  570. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
  571. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
  572. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/utils/platformUtils.js +0 -0
  573. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/utils/providerUtils.js +0 -0
  574. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/utils/toast.js +0 -0
  575. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ChatBoxPage.vue +0 -0
  576. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ChatPage.vue +0 -0
  577. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ConsolePage.vue +0 -0
  578. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/Settings.vue +0 -0
  579. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/ToolUsePage.vue +0 -0
  580. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
  581. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/alkaid/Other.vue +0 -0
  582. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
  583. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
  584. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
  585. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
  586. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
  587. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
  588. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
  589. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
  590. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
  591. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
  592. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/tsconfig.json +0 -0
  593. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/tsconfig.vite-config.json +0 -0
  594. {astrbot-4.3.5 → astrbot-4.5.1}/dashboard/vite.config.ts +0 -0
  595. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/__init__.py +0 -0
  596. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/admin.py +0 -0
  597. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/alter_cmd.py +0 -0
  598. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/conversation.py +0 -0
  599. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/help.py +0 -0
  600. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/llm.py +0 -0
  601. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/persona.py +0 -0
  602. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/plugin.py +0 -0
  603. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/setunset.py +0 -0
  604. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/t2i.py +0 -0
  605. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/tool.py +0 -0
  606. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/tts.py +0 -0
  607. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/commands/utils/rst_scene.py +0 -0
  608. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/main.py +0 -0
  609. {astrbot-4.3.5 → astrbot-4.5.1}/packages/astrbot/metadata.yaml +0 -0
  610. {astrbot-4.3.5 → astrbot-4.5.1}/packages/python_interpreter/main.py +0 -0
  611. {astrbot-4.3.5 → astrbot-4.5.1}/packages/python_interpreter/metadata.yaml +0 -0
  612. {astrbot-4.3.5 → astrbot-4.5.1}/packages/python_interpreter/requirements.txt +0 -0
  613. {astrbot-4.3.5 → astrbot-4.5.1}/packages/python_interpreter/shared/api.py +0 -0
  614. {astrbot-4.3.5 → astrbot-4.5.1}/packages/reminder/main.py +0 -0
  615. {astrbot-4.3.5 → astrbot-4.5.1}/packages/reminder/metadata.yaml +0 -0
  616. {astrbot-4.3.5 → astrbot-4.5.1}/packages/session_controller/main.py +0 -0
  617. {astrbot-4.3.5 → astrbot-4.5.1}/packages/session_controller/metadata.yaml +0 -0
  618. {astrbot-4.3.5 → astrbot-4.5.1}/packages/thinking_filter/metadata.yaml +0 -0
  619. {astrbot-4.3.5 → astrbot-4.5.1}/packages/web_searcher/engines/__init__.py +0 -0
  620. {astrbot-4.3.5 → astrbot-4.5.1}/packages/web_searcher/engines/bing.py +0 -0
  621. {astrbot-4.3.5 → astrbot-4.5.1}/packages/web_searcher/engines/sogo.py +0 -0
  622. {astrbot-4.3.5 → astrbot-4.5.1}/packages/web_searcher/metadata.yaml +0 -0
  623. {astrbot-4.3.5 → astrbot-4.5.1}/samples/stt_health_check.wav +0 -0
  624. {astrbot-4.3.5 → astrbot-4.5.1}/tests/test_dashboard.py +0 -0
  625. {astrbot-4.3.5 → astrbot-4.5.1}/tests/test_main.py +0 -0
  626. {astrbot-4.3.5 → astrbot-4.5.1}/tests/test_plugin_manager.py +0 -0
@@ -16,7 +16,7 @@ body:
16
16
 
17
17
  请将插件信息填写到下方的 JSON 代码块中。其中 `tags`(插件标签)和 `social_link`(社交链接)选填。
18
18
 
19
- 不熟悉 JSON ?现在可以从 [这里](https://plugins.astrbot.app/#/submit) 获取你的 JSON 啦!获取到了记得复制粘贴过来哦!
19
+ 不熟悉 JSON ?可以从 [此处](https://plugins.astrbot.app/submit) 生成 JSON ,生成后记得复制粘贴过来.
20
20
 
21
21
  - type: textarea
22
22
  id: plugin-info
@@ -26,12 +26,13 @@ body:
26
26
  value: |
27
27
  ```json
28
28
  {
29
- "name": "插件名",
30
- "desc": "插件介绍",
29
+ "name": "插件名,请以 astrbot_plugin_ 开头",
30
+ "display_name": "用于展示的插件名,方便人类阅读",
31
+ "desc": "插件的简短介绍",
31
32
  "author": "作者名",
32
33
  "repo": "插件仓库链接",
33
34
  "tags": [],
34
- "social_link": ""
35
+ "social_link": "",
35
36
  }
36
37
  ```
37
38
  validations:
@@ -6,13 +6,13 @@ body:
6
6
  - type: markdown
7
7
  attributes:
8
8
  value: |
9
- 感谢您抽出时间报告问题!请准确解释您的问题。如果可能,请提供一个可复现的片段(这有助于更快地解决问题)。
9
+ 感谢您抽出时间报告问题!请准确解释您的问题。如果可能,请提供一个可复现的片段(这有助于更快地解决问题)。请注意,不详细 / 没有日志的 issue 会被直接关闭,谢谢理解。
10
10
  - type: textarea
11
11
  attributes:
12
12
  label: 发生了什么
13
13
  description: 描述你遇到的异常
14
14
  placeholder: >
15
- 一个清晰且具体的描述这个异常是什么。
15
+ 一个清晰且具体的描述这个异常是什么。请注意,不详细 / 没有日志的 issue 会被直接关闭,谢谢理解。
16
16
  validations:
17
17
  required: true
18
18
 
@@ -55,7 +55,7 @@ body:
55
55
  attributes:
56
56
  label: 报错日志
57
57
  description: >
58
- 如报错日志、截图等。请提供完整的 Debug 级别的日志,不要介意它很长!
58
+ 如报错日志、截图等。请提供完整的 Debug 级别的日志,不要介意它很长!请注意,不详细 / 没有日志的 issue 会被直接关闭,谢谢理解。
59
59
  placeholder: >
60
60
  请提供完整的报错日志或截图。
61
61
  validations:
@@ -13,11 +13,18 @@ jobs:
13
13
  - name: Checkout repository
14
14
  uses: actions/checkout@v5
15
15
 
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v6
18
+ with:
19
+ node-version: 'latest'
20
+
16
21
  - name: npm install, build
17
22
  run: |
18
23
  cd dashboard
19
- npm install
20
- npm run build
24
+ npm install pnpm -g
25
+ pnpm install
26
+ pnpm i --save-dev @types/markdown-it
27
+ pnpm run build
21
28
 
22
29
  - name: Inject Commit SHA
23
30
  id: get_sha
@@ -29,7 +36,7 @@ jobs:
29
36
  zip -r dist.zip dist
30
37
 
31
38
  - name: Archive production artifacts
32
- uses: actions/upload-artifact@v4
39
+ uses: actions/upload-artifact@v5
33
40
  with:
34
41
  name: dist-without-markdown
35
42
  path: |
@@ -0,0 +1,25 @@
1
+ default_install_hook_types: [pre-commit, prepare-commit-msg]
2
+ ci:
3
+ autofix_commit_msg: ":balloon: auto fixes by pre-commit hooks"
4
+ autofix_prs: true
5
+ autoupdate_branch: master
6
+ autoupdate_schedule: weekly
7
+ autoupdate_commit_msg: ":balloon: pre-commit autoupdate"
8
+ repos:
9
+ - repo: https://github.com/astral-sh/ruff-pre-commit
10
+ # Ruff version.
11
+ rev: v0.14.1
12
+ hooks:
13
+ # Run the linter.
14
+ - id: ruff-check
15
+ types_or: [ python, pyi ]
16
+ args: [ --fix ]
17
+ # Run the formatter.
18
+ - id: ruff-format
19
+ types_or: [ python, pyi ]
20
+
21
+ - repo: https://github.com/asottile/pyupgrade
22
+ rev: v3.21.0
23
+ hooks:
24
+ - id: pyupgrade
25
+ args: [--py310-plus]
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AstrBot
3
- Version: 4.3.5
3
+ Version: 4.5.1
4
4
  Summary: 易上手的多平台 LLM 聊天机器人及开发框架
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.10
7
7
  Requires-Dist: aiocqhttp>=1.4.4
8
8
  Requires-Dist: aiodocker>=0.24.0
9
+ Requires-Dist: aiofiles>=25.1.0
9
10
  Requires-Dist: aiohttp>=3.11.18
10
11
  Requires-Dist: aiosqlite>=0.21.0
11
12
  Requires-Dist: anthropic>=0.51.0
@@ -25,10 +26,11 @@ Requires-Dist: docstring-parser>=0.16
25
26
  Requires-Dist: faiss-cpu==1.10.0
26
27
  Requires-Dist: filelock>=3.18.0
27
28
  Requires-Dist: google-genai>=1.14.0
29
+ Requires-Dist: jieba>=0.42.1
28
30
  Requires-Dist: lark-oapi>=1.4.15
29
31
  Requires-Dist: lxml-html-clean>=0.4.2
32
+ Requires-Dist: markitdown-no-magika[docx,xls,xlsx]>=0.1.2
30
33
  Requires-Dist: mcp>=1.8.0
31
- Requires-Dist: mi-googlesearch-python==1.3.0.post1
32
34
  Requires-Dist: openai>=1.78.0
33
35
  Requires-Dist: ormsgpack>=1.9.1
34
36
  Requires-Dist: pillow>=11.2.1
@@ -38,9 +40,11 @@ Requires-Dist: py-cord>=2.6.1
38
40
  Requires-Dist: pydantic~=2.10.3
39
41
  Requires-Dist: pydub>=0.25.1
40
42
  Requires-Dist: pyjwt>=2.10.1
43
+ Requires-Dist: pypdf>=6.1.1
41
44
  Requires-Dist: python-telegram-bot>=22.0
42
45
  Requires-Dist: qq-botpy>=1.2.1
43
46
  Requires-Dist: quart>=0.20.0
47
+ Requires-Dist: rank-bm25>=0.2.2
44
48
  Requires-Dist: readability-lxml>=0.8.4.1
45
49
  Requires-Dist: silk-python>=0.2.6
46
50
  Requires-Dist: slack-sdk>=3.35.0
@@ -50,6 +54,7 @@ Requires-Dist: telegramify-markdown>=0.5.1
50
54
  Requires-Dist: watchfiles>=1.0.5
51
55
  Requires-Dist: websockets>=15.0.1
52
56
  Requires-Dist: wechatpy>=1.8.18
57
+ Requires-Dist: xinference-client
53
58
  Description-Content-Type: text/markdown
54
59
 
55
60
  ![AstrBot-Logo-Simplified](https://github.com/user-attachments/assets/ffd99b6b-3272-4682-beaa-6fe74250f7d9)
@@ -58,21 +63,32 @@ Description-Content-Type: text/markdown
58
63
 
59
64
  <div align="center">
60
65
 
66
+ <br>
67
+
68
+ <div>
61
69
  <a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
70
+ <a href="https://hellogithub.com/repository/AstrBotDevs/AstrBot" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=d127d50cd5e54c5382328acc3bb25483&claim_uid=ZO9by7qCXgSd6Lp&t=1" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
71
+ </div>
72
+
73
+ <br>
62
74
 
63
- [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Soulter/AstrBot?style=for-the-badge&color=76bad9)](https://github.com/Soulter/AstrBot/releases/latest)
75
+ <div>
76
+ <img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?style=for-the-badge&color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
64
77
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
65
78
  <a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?style=for-the-badge&color=76bad9"/></a>
66
- <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
67
- <a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
68
- ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600)
79
+ <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
80
+ <a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
81
+ <img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
82
+ </div>
83
+
84
+ <br>
69
85
 
70
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
71
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
86
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
87
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
72
88
  <a href="https://astrbot.app/">文档</a> |
73
89
  <a href="https://blog.astrbot.app/">Blog</a> |
74
90
  <a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
75
- <a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
91
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
76
92
  </div>
77
93
 
78
94
  AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
@@ -115,7 +131,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
115
131
 
116
132
  社区贡献的部署方式。
117
133
 
118
- [![Run on Repl.it](https://repl.it/badge/github/Soulter/AstrBot)](https://repl.it/github/Soulter/AstrBot)
134
+ [![Run on Repl.it](https://repl.it/badge/github/AstrBotDevs/AstrBot)](https://repl.it/github/AstrBotDevs/AstrBot)
119
135
 
120
136
  #### Windows 一键安装器部署
121
137
 
@@ -172,6 +188,7 @@ uv run main.py
172
188
  | QQ(OneBot) | ✔ |
173
189
  | Telegram | ✔ |
174
190
  | 企微应用 | ✔ |
191
+ | 企微智能机器人 | ✔ |
175
192
  | 微信客服 | ✔ |
176
193
  | 微信公众号 | ✔ |
177
194
  | 飞书 | ✔ |
@@ -180,7 +197,6 @@ uv run main.py
180
197
  | Discord | ✔ |
181
198
  | Satori | ✔ |
182
199
  | Misskey | ✔ |
183
- | 企微智能机器人 | 将支持 |
184
200
  | Whatsapp | 将支持 |
185
201
  | LINE | 将支持 |
186
202
 
@@ -191,6 +207,7 @@ uv run main.py
191
207
  | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
192
208
  | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
193
209
  | [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
210
+ | [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
194
211
 
195
212
  ## ⚡ 提供商支持情况
196
213
 
@@ -252,7 +269,7 @@ uv run main.py
252
269
  AstrBot 使用 `ruff` 进行代码格式化和检查。
253
270
 
254
271
  ```bash
255
- git clone https://github.com/Soulter/AstrBot
272
+ git clone https://github.com/AstrBotDevs/AstrBot
256
273
  pip install pre-commit
257
274
  pre-commit install
258
275
  ```
@@ -276,7 +293,7 @@ pre-commit install
276
293
 
277
294
  <div align="center">
278
295
 
279
- [![Star History Chart](https://api.star-history.com/svg?repos=soulter/astrbot&type=Date)](https://star-history.com/#soulter/astrbot&Date)
296
+ [![Star History Chart](https://api.star-history.com/svg?repos=astrbotdevs/astrbot&type=Date)](https://star-history.com/#astrbotdevs/astrbot&Date)
280
297
 
281
298
  </div>
282
299
 
@@ -4,21 +4,32 @@
4
4
 
5
5
  <div align="center">
6
6
 
7
+ <br>
8
+
9
+ <div>
7
10
  <a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
11
+ <a href="https://hellogithub.com/repository/AstrBotDevs/AstrBot" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=d127d50cd5e54c5382328acc3bb25483&claim_uid=ZO9by7qCXgSd6Lp&t=1" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
12
+ </div>
13
+
14
+ <br>
8
15
 
9
- [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Soulter/AstrBot?style=for-the-badge&color=76bad9)](https://github.com/Soulter/AstrBot/releases/latest)
16
+ <div>
17
+ <img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?style=for-the-badge&color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
10
18
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
11
19
  <a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?style=for-the-badge&color=76bad9"/></a>
12
- <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
13
- <a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
14
- ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600)
20
+ <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
21
+ <a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
22
+ <img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
23
+ </div>
24
+
25
+ <br>
15
26
 
16
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
17
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
27
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
28
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
18
29
  <a href="https://astrbot.app/">文档</a> |
19
30
  <a href="https://blog.astrbot.app/">Blog</a> |
20
31
  <a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
21
- <a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
32
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
22
33
  </div>
23
34
 
24
35
  AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
@@ -61,7 +72,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
61
72
 
62
73
  社区贡献的部署方式。
63
74
 
64
- [![Run on Repl.it](https://repl.it/badge/github/Soulter/AstrBot)](https://repl.it/github/Soulter/AstrBot)
75
+ [![Run on Repl.it](https://repl.it/badge/github/AstrBotDevs/AstrBot)](https://repl.it/github/AstrBotDevs/AstrBot)
65
76
 
66
77
  #### Windows 一键安装器部署
67
78
 
@@ -118,6 +129,7 @@ uv run main.py
118
129
  | QQ(OneBot) | ✔ |
119
130
  | Telegram | ✔ |
120
131
  | 企微应用 | ✔ |
132
+ | 企微智能机器人 | ✔ |
121
133
  | 微信客服 | ✔ |
122
134
  | 微信公众号 | ✔ |
123
135
  | 飞书 | ✔ |
@@ -126,7 +138,6 @@ uv run main.py
126
138
  | Discord | ✔ |
127
139
  | Satori | ✔ |
128
140
  | Misskey | ✔ |
129
- | 企微智能机器人 | 将支持 |
130
141
  | Whatsapp | 将支持 |
131
142
  | LINE | 将支持 |
132
143
 
@@ -137,6 +148,7 @@ uv run main.py
137
148
  | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
138
149
  | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
139
150
  | [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
151
+ | [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
140
152
 
141
153
  ## ⚡ 提供商支持情况
142
154
 
@@ -198,7 +210,7 @@ uv run main.py
198
210
  AstrBot 使用 `ruff` 进行代码格式化和检查。
199
211
 
200
212
  ```bash
201
- git clone https://github.com/Soulter/AstrBot
213
+ git clone https://github.com/AstrBotDevs/AstrBot
202
214
  pip install pre-commit
203
215
  pre-commit install
204
216
  ```
@@ -222,7 +234,7 @@ pre-commit install
222
234
 
223
235
  <div align="center">
224
236
 
225
- [![Star History Chart](https://api.star-history.com/svg?repos=soulter/astrbot&type=Date)](https://star-history.com/#soulter/astrbot&Date)
237
+ [![Star History Chart](https://api.star-history.com/svg?repos=astrbotdevs/astrbot&type=Date)](https://star-history.com/#astrbotdevs/astrbot&Date)
226
238
 
227
239
  </div>
228
240
 
@@ -10,16 +10,16 @@ _✨ Easy-to-use Multi-platform LLM Chatbot & Development Framework ✨_
10
10
 
11
11
  <a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
12
12
 
13
- [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Soulter/AstrBot)](https://github.com/Soulter/AstrBot/releases/latest)
13
+ [![GitHub release (latest by date)](https://img.shields.io/github/v/release/AstrBotDevs/AstrBot)](https://github.com/AstrBotDevs/AstrBot/releases/latest)
14
14
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
15
- <a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg"/></a>
15
+ <a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot"/></a>
16
16
  <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="Static Badge" src="https://img.shields.io/badge/QQ群-630166526-purple"></a>
17
17
  [![wakatime](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e.svg)](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
18
18
  ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fstats&query=v&label=7%E6%97%A5%E6%B6%88%E6%81%AF%E4%B8%8A%E8%A1%8C%E9%87%8F&cacheSeconds=3600)
19
- [![codecov](https://codecov.io/gh/Soulter/AstrBot/graph/badge.svg?token=FF3P5967B8)](https://codecov.io/gh/Soulter/AstrBot)
19
+ [![codecov](https://codecov.io/gh/AstrBotDevs/AstrBot/graph/badge.svg?token=FF3P5967B8)](https://codecov.io/gh/AstrBotDevs/AstrBot)
20
20
 
21
21
  <a href="https://astrbot.app/">Documentation</a> |
22
- <a href="https://github.com/Soulter/AstrBot/issues">Issue Tracking</a>
22
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">Issue Tracking</a>
23
23
  </div>
24
24
 
25
25
  AstrBot is a loosely coupled, asynchronous chatbot and development framework that supports multi-platform deployment, featuring an easy-to-use plugin system and comprehensive Large Language Model (LLM) integration capabilities.
@@ -49,7 +49,7 @@ Requires Python (>3.10). See docs: [Windows Installer Guide](https://astrbot.app
49
49
 
50
50
  #### Replit Deployment
51
51
 
52
- [![Run on Repl.it](https://repl.it/badge/github/Soulter/AstrBot)](https://repl.it/github/Soulter/AstrBot)
52
+ [![Run on Repl.it](https://repl.it/badge/github/AstrBotDevs/AstrBot)](https://repl.it/github/AstrBotDevs/AstrBot)
53
53
 
54
54
  #### CasaOS Deployment
55
55
 
@@ -67,8 +67,8 @@ See docs: [Source Code Deployment](https://astrbot.app/deploy/astrbot/cli.html)
67
67
  | QQ (Official Bot) | ✔ | Private/Group chats | Text, Images |
68
68
  | QQ (OneBot) | ✔ | Private/Group chats | Text, Images, Voice |
69
69
  | WeChat (Personal) | ✔ | Private/Group chats | Text, Images, Voice |
70
- | [Telegram](https://github.com/Soulter/astrbot_plugin_telegram) | ✔ | Private/Group chats | Text, Images |
71
- | [WeChat Work](https://github.com/Soulter/astrbot_plugin_wecom) | ✔ | Private chats | Text, Images, Voice |
70
+ | [Telegram](https://github.com/AstrBotDevs/AstrBot_plugin_telegram) | ✔ | Private/Group chats | Text, Images |
71
+ | [WeChat Work](https://github.com/AstrBotDevs/AstrBot_plugin_wecom) | ✔ | Private chats | Text, Images, Voice |
72
72
  | Feishu | ✔ | Group chats | Text, Images |
73
73
  | WeChat Open Platform | 🚧 | Planned | - |
74
74
  | Discord | 🚧 | Planned | - |
@@ -157,7 +157,7 @@ _✨ Built-in Web Chat Interface ✨_
157
157
 
158
158
  <div align="center">
159
159
 
160
- [![Star History Chart](https://api.star-history.com/svg?repos=soulter/astrbot&type=Date)](https://star-history.com/#soulter/astrbot&Date)
160
+ [![Star History Chart](https://api.star-history.com/svg?repos=AstrBotDevs/AstrBot&type=Date)](https://star-history.com/#AstrBotDevs/AstrBot&Date)
161
161
 
162
162
  </div>
163
163
 
@@ -169,7 +169,7 @@ _✨ Built-in Web Chat Interface ✨_
169
169
 
170
170
  <!-- ## ✨ ATRI [Beta]
171
171
 
172
- Available as plugin: [astrbot_plugin_atri](https://github.com/Soulter/astrbot_plugin_atri)
172
+ Available as plugin: [astrbot_plugin_atri](https://github.com/AstrBotDevs/AstrBot_plugin_atri)
173
173
 
174
174
  1. Qwen1.5-7B-Chat Lora model fine-tuned with ATRI character data
175
175
  2. Long-term memory
@@ -10,16 +10,16 @@ _✨ 簡単に使えるマルチプラットフォーム LLM チャットボッ
10
10
 
11
11
  <a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
12
12
 
13
- [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Soulter/AstrBot)](https://github.com/Soulter/AstrBot/releases/latest)
13
+ [![GitHub release (latest by date)](https://img.shields.io/github/v/release/AstrBotDevs/AstrBot)](https://github.com/AstrBotDevs/AstrBot/releases/latest)
14
14
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
15
15
  <a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg"/></a>
16
16
  <img alt="Static Badge" src="https://img.shields.io/badge/QQ群-630166526-purple">
17
17
  [![wakatime](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e.svg)](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
18
18
  ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fstats&query=v&label=7%E6%97%A5%E6%B6%88%E6%81%AF%E4%B8%8A%E8%A1%8C%E9%87%8F&cacheSeconds=3600)
19
- [![codecov](https://codecov.io/gh/Soulter/AstrBot/graph/badge.svg?token=FF3P5967B8)](https://codecov.io/gh/Soulter/AstrBot)
19
+ [![codecov](https://codecov.io/gh/AstrBotDevs/AstrBot/graph/badge.svg?token=FF3P5967B8)](https://codecov.io/gh/AstrBotDevs/AstrBot)
20
20
 
21
21
  <a href="https://astrbot.app/">ドキュメントを見る</a> |
22
- <a href="https://github.com/Soulter/AstrBot/issues">問題を報告する</a>
22
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">問題を報告する</a>
23
23
  </div>
24
24
 
25
25
  AstrBot は、疎結合、非同期、複数のメッセージプラットフォームに対応したデプロイ、使いやすいプラグインシステム、および包括的な大規模言語モデル(LLM)接続機能を備えたチャットボットおよび開発フレームワークです。
@@ -50,7 +50,7 @@ AstrBot は、疎結合、非同期、複数のメッセージプラットフォ
50
50
 
51
51
  #### Replit デプロイ
52
52
 
53
- [![Run on Repl.it](https://repl.it/badge/github/Soulter/AstrBot)](https://repl.it/github/Soulter/AstrBot)
53
+ [![Run on Repl.it](https://repl.it/badge/github/AstrBotDevs/AstrBot)](https://repl.it/github/AstrBotDevs/AstrBot)
54
54
 
55
55
  #### CasaOS デプロイ
56
56
 
@@ -209,9 +209,38 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
209
209
  )
210
210
  continue
211
211
 
212
+ valid_params = {} # 参数过滤:只传递函数实际需要的参数
213
+
214
+ # 获取实际的 handler 函数
215
+ if func_tool.handler:
216
+ logger.debug(
217
+ f"工具 {func_tool_name} 期望的参数: {func_tool.parameters}"
218
+ )
219
+ if func_tool.parameters and func_tool.parameters.get("properties"):
220
+ expected_params = set(func_tool.parameters["properties"].keys())
221
+
222
+ valid_params = {
223
+ k: v
224
+ for k, v in func_tool_args.items()
225
+ if k in expected_params
226
+ }
227
+
228
+ # 记录被忽略的参数
229
+ ignored_params = set(func_tool_args.keys()) - set(
230
+ valid_params.keys()
231
+ )
232
+ if ignored_params:
233
+ logger.warning(
234
+ f"工具 {func_tool_name} 忽略非期望参数: {ignored_params}"
235
+ )
236
+ else:
237
+ # 如果没有 handler(如 MCP 工具),使用所有参数
238
+ valid_params = func_tool_args
239
+ logger.warning(f"工具 {func_tool_name} 没有 handler,使用所有参数")
240
+
212
241
  try:
213
242
  await self.agent_hooks.on_tool_start(
214
- self.run_context, func_tool, func_tool_args
243
+ self.run_context, func_tool, valid_params
215
244
  )
216
245
  except Exception as e:
217
246
  logger.error(f"Error in on_tool_start hook: {e}", exc_info=True)
@@ -219,7 +248,7 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
219
248
  executor = self.tool_executor.execute(
220
249
  tool=func_tool,
221
250
  run_context=self.run_context,
222
- **func_tool_args,
251
+ **valid_params, # 只传递有效的参数
223
252
  )
224
253
 
225
254
  _final_resp: CallToolResult | None = None