AstrBot 4.3.3__tar.gz → 4.5.0__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 (622) hide show
  1. {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +1 -1
  2. {astrbot-4.3.3 → astrbot-4.5.0}/.github/auto_assign.yml +2 -0
  3. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/codeql.yml +2 -2
  4. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/dashboard_ci.yml +9 -2
  5. astrbot-4.5.0/.pre-commit-config.yaml +25 -0
  6. {astrbot-4.3.3 → astrbot-4.5.0}/PKG-INFO +91 -55
  7. {astrbot-4.3.3 → astrbot-4.5.0}/README.md +85 -53
  8. {astrbot-4.3.3 → astrbot-4.5.0}/README_en.md +9 -9
  9. {astrbot-4.3.3 → astrbot-4.5.0}/README_ja.md +4 -4
  10. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/mcp_client.py +18 -4
  11. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/tool_loop_agent_runner.py +31 -2
  12. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/astr_agent_context.py +1 -0
  13. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/astrbot_config_mgr.py +23 -51
  14. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/default.py +139 -14
  15. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/conversation_mgr.py +36 -1
  16. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/core_lifecycle.py +24 -5
  17. astrbot-4.5.0/astrbot/core/db/migration/migra_45_to_46.py +44 -0
  18. astrbot-4.5.0/astrbot/core/db/vec_db/base.py +77 -0
  19. astrbot-4.5.0/astrbot/core/db/vec_db/faiss_impl/document_storage.py +379 -0
  20. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +31 -3
  21. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +81 -23
  22. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/file_token_service.py +6 -1
  23. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/initial_loader.py +6 -3
  24. astrbot-4.5.0/astrbot/core/knowledge_base/chunking/__init__.py +11 -0
  25. astrbot-4.5.0/astrbot/core/knowledge_base/chunking/base.py +24 -0
  26. astrbot-4.5.0/astrbot/core/knowledge_base/chunking/fixed_size.py +57 -0
  27. astrbot-4.5.0/astrbot/core/knowledge_base/chunking/recursive.py +155 -0
  28. astrbot-4.5.0/astrbot/core/knowledge_base/kb_db_sqlite.py +299 -0
  29. astrbot-4.5.0/astrbot/core/knowledge_base/kb_helper.py +348 -0
  30. astrbot-4.5.0/astrbot/core/knowledge_base/kb_mgr.py +287 -0
  31. astrbot-4.5.0/astrbot/core/knowledge_base/models.py +114 -0
  32. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/__init__.py +15 -0
  33. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/base.py +50 -0
  34. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/markitdown_parser.py +25 -0
  35. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/pdf_parser.py +100 -0
  36. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/text_parser.py +41 -0
  37. astrbot-4.5.0/astrbot/core/knowledge_base/parsers/util.py +13 -0
  38. astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/__init__.py +16 -0
  39. astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +767 -0
  40. astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/manager.py +273 -0
  41. astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/rank_fusion.py +138 -0
  42. astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +130 -0
  43. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/method/llm_request.py +61 -21
  44. astrbot-4.5.0/astrbot/core/pipeline/process_stage/utils.py +80 -0
  45. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/scheduler.py +1 -1
  46. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/astr_message_event.py +8 -7
  47. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/manager.py +4 -0
  48. astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_adapter.py +727 -0
  49. astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_api.py +940 -0
  50. astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_event.py +158 -0
  51. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/misskey/misskey_utils.py +254 -43
  52. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +2 -1
  53. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/satori/satori_adapter.py +27 -1
  54. astrbot-4.5.0/astrbot/core/platform/sources/satori/satori_event.py +423 -0
  55. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -1
  56. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +289 -0
  57. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +17 -0
  58. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +20 -0
  59. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +445 -0
  60. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +378 -0
  61. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +149 -0
  62. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +148 -0
  63. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +166 -0
  64. astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +199 -0
  65. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/manager.py +14 -9
  66. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/provider.py +67 -0
  67. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/anthropic_source.py +4 -4
  68. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dashscope_source.py +10 -9
  69. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dify_source.py +6 -8
  70. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_embedding_source.py +1 -2
  71. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_embedding_source.py +1 -2
  72. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_source.py +18 -15
  73. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_tts_api_source.py +1 -1
  74. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/context.py +3 -0
  75. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star.py +6 -0
  76. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_manager.py +13 -7
  77. astrbot-4.5.0/astrbot/core/umop_config_router.py +81 -0
  78. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/updator.py +1 -1
  79. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/io.py +23 -12
  80. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/__init__.py +2 -0
  81. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/config.py +137 -9
  82. astrbot-4.5.0/astrbot/dashboard/routes/knowledge_base.py +1065 -0
  83. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/plugin.py +24 -5
  84. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/tools.py +14 -0
  85. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/update.py +1 -1
  86. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/server.py +6 -0
  87. astrbot-4.5.0/astrbot/dashboard/utils.py +161 -0
  88. astrbot-4.5.0/astrbot.lock +0 -0
  89. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.0.md +1 -1
  90. astrbot-4.5.0/changelogs/v3.4.16.md +6 -0
  91. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.33.md +4 -4
  92. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.37.md +1 -1
  93. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.0.md +12 -12
  94. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.1.md +3 -3
  95. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.12.md +2 -2
  96. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.25.md +7 -7
  97. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.5.md +1 -1
  98. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.0.md +10 -10
  99. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.3.md +5 -5
  100. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.4.md +5 -5
  101. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.3.md +9 -9
  102. astrbot-4.5.0/changelogs/v4.3.5.md +8 -0
  103. astrbot-4.5.0/changelogs/v4.5.0.md +14 -0
  104. {astrbot-4.3.3 → astrbot-4.5.0}/compose.yml +1 -1
  105. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/Chat.vue +14 -1
  106. astrbot-4.5.0/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +105 -0
  107. astrbot-4.5.0/dashboard/src/components/platform/AddNewPlatform.vue +1019 -0
  108. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/AstrBotConfig.vue +54 -24
  109. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/AstrBotConfigV4.vue +2 -2
  110. astrbot-4.5.0/dashboard/src/components/shared/ExtensionCard.vue +241 -0
  111. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ItemCard.vue +7 -1
  112. astrbot-4.5.0/dashboard/src/components/shared/KnowledgeBaseSelector.vue +223 -0
  113. astrbot-4.5.0/dashboard/src/components/shared/PersonaForm.vue +536 -0
  114. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/PersonaSelector.vue +31 -1
  115. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/navigation.json +6 -3
  116. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +1 -1
  117. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/conversation.json +3 -1
  118. astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +83 -0
  119. astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +52 -0
  120. astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +67 -0
  121. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/provider.json +4 -2
  122. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/session-management.json +29 -0
  123. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/tool-use.json +3 -0
  124. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +8 -5
  125. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +1 -1
  126. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +6 -4
  127. astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +108 -0
  128. astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +55 -0
  129. astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +67 -0
  130. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/platform.json +6 -6
  131. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/provider.json +17 -15
  132. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +30 -1
  133. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +3 -0
  134. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/translations.ts +16 -0
  135. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +4 -4
  136. astrbot-4.5.0/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +59 -0
  137. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +116 -13
  138. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +39 -33
  139. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/main.ts +1 -1
  140. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/MainRoutes.ts +34 -8
  141. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/common.js +3 -2
  142. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/theme/LightTheme.ts +1 -1
  143. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/platformUtils.js +2 -1
  144. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/AboutPage.vue +2 -2
  145. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/AlkaidPage.vue +3 -3
  146. astrbot-4.5.0/dashboard/src/views/ConfigPage.vue +568 -0
  147. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ConversationPage.vue +3 -3
  148. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ExtensionPage.vue +24 -20
  149. astrbot-4.5.0/dashboard/src/views/PersonaPage.vue +322 -0
  150. astrbot-4.5.0/dashboard/src/views/PlatformPage.vue +237 -0
  151. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ProviderPage.vue +128 -88
  152. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/SessionManagementPage.vue +323 -4
  153. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ToolUsePage.vue +6 -2
  154. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/KnowledgeBase.vue +12 -6
  155. astrbot-4.5.0/dashboard/src/views/knowledge-base/DocumentDetail.vue +512 -0
  156. astrbot-4.5.0/dashboard/src/views/knowledge-base/KBDetail.vue +351 -0
  157. astrbot-4.5.0/dashboard/src/views/knowledge-base/KBList.vue +615 -0
  158. astrbot-4.5.0/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +660 -0
  159. astrbot-4.5.0/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +248 -0
  160. astrbot-4.5.0/dashboard/src/views/knowledge-base/components/SettingsTab.vue +316 -0
  161. astrbot-4.5.0/dashboard/src/views/knowledge-base/index.vue +37 -0
  162. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/vite.config.ts +1 -1
  163. {astrbot-4.3.3 → astrbot-4.5.0}/main.py +1 -1
  164. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/alter_cmd.py +6 -22
  165. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/conversation.py +1 -26
  166. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/provider.py +1 -1
  167. astrbot-4.5.0/packages/astrbot/commands/sid.py +36 -0
  168. astrbot-4.5.0/packages/astrbot/commands/utils/rst_scene.py +26 -0
  169. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/long_term_memory.py +8 -2
  170. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/process_llm_request.py +2 -1
  171. astrbot-4.5.0/packages/thinking_filter/main.py +203 -0
  172. {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/main.py +44 -17
  173. {astrbot-4.3.3 → astrbot-4.5.0}/pyproject.toml +7 -2
  174. {astrbot-4.3.3 → astrbot-4.5.0}/requirements.txt +5 -0
  175. astrbot-4.3.3/.pre-commit-config.yaml +0 -13
  176. astrbot-4.3.3/astrbot/core/db/vec_db/base.py +0 -46
  177. astrbot-4.3.3/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -121
  178. astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -391
  179. astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_api.py +0 -404
  180. astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_event.py +0 -123
  181. astrbot-4.3.3/astrbot/core/platform/sources/satori/satori_event.py +0 -230
  182. astrbot-4.3.3/changelogs/v3.4.16.md +0 -6
  183. astrbot-4.3.3/dashboard/src/components/platform/AddNewPlatform.vue +0 -173
  184. astrbot-4.3.3/dashboard/src/components/shared/ExtensionCard.vue +0 -227
  185. astrbot-4.3.3/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -225
  186. astrbot-4.3.3/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -37
  187. astrbot-4.3.3/dashboard/src/views/ConfigPage.vue +0 -1168
  188. astrbot-4.3.3/dashboard/src/views/PersonaPage.vue +0 -803
  189. astrbot-4.3.3/dashboard/src/views/PlatformPage.vue +0 -445
  190. astrbot-4.3.3/packages/astrbot/commands/sid.py +0 -29
  191. astrbot-4.3.3/packages/thinking_filter/main.py +0 -62
  192. astrbot-4.3.3/packages/web_searcher/engines/google.py +0 -30
  193. {astrbot-4.3.3 → astrbot-4.5.0}/.dockerignore +0 -0
  194. {astrbot-4.3.3 → astrbot-4.5.0}/.github/FUNDING.yml +0 -0
  195. {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  196. {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
  197. {astrbot-4.3.3 → astrbot-4.5.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  198. {astrbot-4.3.3 → astrbot-4.5.0}/.github/copilot-instructions.md +0 -0
  199. {astrbot-4.3.3 → astrbot-4.5.0}/.github/dependabot.yml +0 -0
  200. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/auto_release.yml +0 -0
  201. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/code-format.yml +0 -0
  202. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/coverage_test.yml +0 -0
  203. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/docker-image.yml +0 -0
  204. {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/stale.yml +0 -0
  205. {astrbot-4.3.3 → astrbot-4.5.0}/.gitignore +0 -0
  206. {astrbot-4.3.3 → astrbot-4.5.0}/.python-version +0 -0
  207. {astrbot-4.3.3 → astrbot-4.5.0}/CODE_OF_CONDUCT.md +0 -0
  208. {astrbot-4.3.3 → astrbot-4.5.0}/Dockerfile +0 -0
  209. {astrbot-4.3.3 → astrbot-4.5.0}/Dockerfile_with_node +0 -0
  210. {astrbot-4.3.3 → astrbot-4.5.0}/LICENSE +0 -0
  211. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/__init__.py +0 -0
  212. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/__init__.py +0 -0
  213. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/all.py +0 -0
  214. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/event/__init__.py +0 -0
  215. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/event/filter/__init__.py +0 -0
  216. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/message_components.py +0 -0
  217. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/platform/__init__.py +0 -0
  218. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/provider/__init__.py +0 -0
  219. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/star/__init__.py +0 -0
  220. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/util/__init__.py +0 -0
  221. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/__init__.py +0 -0
  222. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/__main__.py +0 -0
  223. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/__init__.py +0 -0
  224. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_conf.py +0 -0
  225. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_init.py +0 -0
  226. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_plug.py +0 -0
  227. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_run.py +0 -0
  228. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/__init__.py +0 -0
  229. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/basic.py +0 -0
  230. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/plugin.py +0 -0
  231. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/version_comparator.py +0 -0
  232. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/__init__.py +0 -0
  233. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/agent.py +0 -0
  234. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/handoff.py +0 -0
  235. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/hooks.py +0 -0
  236. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/response.py +0 -0
  237. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/run_context.py +0 -0
  238. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/__init__.py +0 -0
  239. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/base.py +0 -0
  240. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/tool.py +0 -0
  241. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/tool_executor.py +0 -0
  242. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/__init__.py +0 -0
  243. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/astrbot_config.py +0 -0
  244. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/__init__.py +0 -0
  245. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/helper.py +0 -0
  246. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
  247. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
  248. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/sqlite_v3.py +0 -0
  249. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/po.py +0 -0
  250. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/sqlite.py +0 -0
  251. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
  252. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
  253. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/event_bus.py +0 -0
  254. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/log.py +0 -0
  255. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/message/components.py +0 -0
  256. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/message/message_event_result.py +0 -0
  257. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/persona_mgr.py +0 -0
  258. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/__init__.py +0 -0
  259. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
  260. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
  261. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
  262. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
  263. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
  264. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/context.py +0 -0
  265. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/context_utils.py +0 -0
  266. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
  267. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
  268. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/stage.py +0 -0
  269. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
  270. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/respond/stage.py +0 -0
  271. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
  272. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
  273. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/stage.py +0 -0
  274. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/waking_check/stage.py +0 -0
  275. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
  276. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/__init__.py +0 -0
  277. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/astrbot_message.py +0 -0
  278. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/message_session.py +0 -0
  279. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/message_type.py +0 -0
  280. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/platform.py +0 -0
  281. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/platform_metadata.py +0 -0
  282. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/register.py +0 -0
  283. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
  284. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
  285. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
  286. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
  287. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/client.py +0 -0
  288. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/components.py +0 -0
  289. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
  290. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
  291. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
  292. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
  293. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
  294. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
  295. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
  296. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
  297. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/client.py +0 -0
  298. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
  299. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
  300. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
  301. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
  302. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
  303. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
  304. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
  305. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
  306. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
  307. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
  308. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
  309. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
  310. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
  311. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
  312. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
  313. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform_message_history_mgr.py +0 -0
  314. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/__init__.py +0 -0
  315. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/entites.py +0 -0
  316. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/entities.py +0 -0
  317. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/func_tool_manager.py +0 -0
  318. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/register.py +0 -0
  319. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
  320. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/coze_api_client.py +0 -0
  321. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/coze_source.py +0 -0
  322. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
  323. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
  324. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
  325. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_source.py +0 -0
  326. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
  327. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
  328. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
  329. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
  330. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
  331. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
  332. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
  333. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
  334. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
  335. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/zhipu_source.py +0 -0
  336. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/README.md +0 -0
  337. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/__init__.py +0 -0
  338. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/config.py +0 -0
  339. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/__init__.py +0 -0
  340. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/command.py +0 -0
  341. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/command_group.py +0 -0
  342. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/custom_filter.py +0 -0
  343. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/event_message_type.py +0 -0
  344. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/permission.py +0 -0
  345. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
  346. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/regex.py +0 -0
  347. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/__init__.py +0 -0
  348. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/star.py +0 -0
  349. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/star_handler.py +0 -0
  350. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/session_llm_manager.py +0 -0
  351. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/session_plugin_manager.py +0 -0
  352. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_handler.py +0 -0
  353. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_tools.py +0 -0
  354. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/updator.py +0 -0
  355. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/astrbot_path.py +0 -0
  356. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/command_parser.py +0 -0
  357. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/dify_api_client.py +0 -0
  358. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/log_pipe.py +0 -0
  359. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/metrics.py +0 -0
  360. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/path_util.py +0 -0
  361. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/pip_installer.py +0 -0
  362. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/session_lock.py +0 -0
  363. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/session_waiter.py +0 -0
  364. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/shared_preferences.py +0 -0
  365. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/__init__.py +0 -0
  366. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/local_strategy.py +0 -0
  367. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/network_strategy.py +0 -0
  368. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/renderer.py +0 -0
  369. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
  370. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template/base.html +0 -0
  371. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template_manager.py +0 -0
  372. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/tencent_record_helper.py +0 -0
  373. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/version_comparator.py +0 -0
  374. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/zip_updator.py +0 -0
  375. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/auth.py +0 -0
  376. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/chat.py +0 -0
  377. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/conversation.py +0 -0
  378. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/file.py +0 -0
  379. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/log.py +0 -0
  380. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/persona.py +0 -0
  381. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/route.py +0 -0
  382. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/session_management.py +0 -0
  383. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/stat.py +0 -0
  384. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/static_file.py +0 -0
  385. {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/t2i.py +0 -0
  386. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.1.md +0 -0
  387. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.10.md +0 -0
  388. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.11.md +0 -0
  389. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.12.md +0 -0
  390. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.13.md +0 -0
  391. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.14.md +0 -0
  392. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.15.md +0 -0
  393. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.17.md +0 -0
  394. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.18.md +0 -0
  395. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.19.md +0 -0
  396. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.20.md +0 -0
  397. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.21.md +0 -0
  398. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.22.md +0 -0
  399. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.23.md +0 -0
  400. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.24.md +0 -0
  401. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.25.md +0 -0
  402. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.26.md +0 -0
  403. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.27.md +0 -0
  404. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.28.md +0 -0
  405. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.29.md +0 -0
  406. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.3.md +0 -0
  407. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.30.md +0 -0
  408. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.31.md +0 -0
  409. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.32.md +0 -0
  410. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.35.md +0 -0
  411. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.36.md +0 -0
  412. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.38.md +0 -0
  413. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.39.md +0 -0
  414. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.4.md +0 -0
  415. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.5.md +0 -0
  416. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.6.md +0 -0
  417. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.7.md +0 -0
  418. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.8.md +0 -0
  419. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.9.md +0 -0
  420. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.10.md +0 -0
  421. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.11.md +0 -0
  422. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.13.md +0 -0
  423. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.14.md +0 -0
  424. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.15.md +0 -0
  425. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.16.md +0 -0
  426. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.17.md +0 -0
  427. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.18.md +0 -0
  428. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.19.md +0 -0
  429. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.2.md +0 -0
  430. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.20.md +0 -0
  431. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.21.md +0 -0
  432. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.22.md +0 -0
  433. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.23.md +0 -0
  434. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.24.md +0 -0
  435. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.26.md +0 -0
  436. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.27.md +0 -0
  437. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.1.md +0 -0
  438. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.2.md +0 -0
  439. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.md +0 -0
  440. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.4.md +0 -0
  441. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.5.md +0 -0
  442. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.6.md +0 -0
  443. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.7.md +0 -0
  444. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.8.md +0 -0
  445. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.9.md +0 -0
  446. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.3.md +0 -0
  447. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.4.md +0 -0
  448. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0.md +0 -0
  449. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.1.md +0 -0
  450. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.2.md +0 -0
  451. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.5.md +0 -0
  452. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.6.md +0 -0
  453. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.7.md +0 -0
  454. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.2.0.md +0 -0
  455. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.2.1.md +0 -0
  456. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.0.md +0 -0
  457. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.1.md +0 -0
  458. {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.2.md +0 -0
  459. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/.gitignore +0 -0
  460. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/LICENSE +0 -0
  461. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/README.md +0 -0
  462. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/env.d.ts +0 -0
  463. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/index.html +0 -0
  464. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/public/_redirects +0 -0
  465. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/public/favicon.svg +0 -0
  466. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/App.vue +0 -0
  467. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/astrbot_banner.png +0 -0
  468. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
  469. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
  470. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
  471. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
  472. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
  473. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
  474. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
  475. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
  476. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
  477. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
  478. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
  479. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
  480. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
  481. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/ConfirmDialog.vue +0 -0
  482. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/MessageList.vue +0 -0
  483. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
  484. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
  485. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
  486. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
  487. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
  488. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
  489. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/Logo.vue +0 -0
  490. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
  491. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
  492. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
  493. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
  494. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ProxySelector.vue +0 -0
  495. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
  496. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
  497. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
  498. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/config.ts +0 -0
  499. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/composables.ts +0 -0
  500. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/loader.ts +0 -0
  501. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
  502. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
  503. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
  504. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
  505. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
  506. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
  507. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
  508. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
  509. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
  510. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
  511. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
  512. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
  513. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
  514. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
  515. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
  516. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
  517. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
  518. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
  519. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
  520. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
  521. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
  522. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
  523. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
  524. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
  525. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
  526. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
  527. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
  528. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
  529. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
  530. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
  531. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
  532. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
  533. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
  534. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
  535. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
  536. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
  537. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
  538. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
  539. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
  540. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
  541. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
  542. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/tools/index.ts +0 -0
  543. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/types.ts +0 -0
  544. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/validator.ts +0 -0
  545. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
  546. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/FullLayout.vue +0 -0
  547. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/plugins/confirmPlugin.ts +0 -0
  548. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/plugins/vuetify.ts +0 -0
  549. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/AuthRoutes.ts +0 -0
  550. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
  551. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/index.ts +0 -0
  552. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/_override.scss +0 -0
  553. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/_variables.scss +0 -0
  554. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VButtons.scss +0 -0
  555. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VCard.scss +0 -0
  556. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VField.scss +0 -0
  557. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VInput.scss +0 -0
  558. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
  559. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
  560. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VShadow.scss +0 -0
  561. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VTabs.scss +0 -0
  562. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VTextField.scss +0 -0
  563. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/layout/_container.scss +0 -0
  564. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/layout/_sidebar.scss +0 -0
  565. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/pages/_dashboards.scss +0 -0
  566. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/style.scss +0 -0
  567. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/auth.ts +0 -0
  568. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/customizer.ts +0 -0
  569. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/toast.js +0 -0
  570. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/theme/DarkTheme.ts +0 -0
  571. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
  572. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
  573. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
  574. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/providerUtils.js +0 -0
  575. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/toast.js +0 -0
  576. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ChatBoxPage.vue +0 -0
  577. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ChatPage.vue +0 -0
  578. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ConsolePage.vue +0 -0
  579. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/Settings.vue +0 -0
  580. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
  581. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/Other.vue +0 -0
  582. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
  583. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
  584. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
  585. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
  586. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
  587. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
  588. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
  589. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
  590. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
  591. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
  592. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/tsconfig.json +0 -0
  593. {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/tsconfig.vite-config.json +0 -0
  594. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/__init__.py +0 -0
  595. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/admin.py +0 -0
  596. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/help.py +0 -0
  597. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/llm.py +0 -0
  598. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/persona.py +0 -0
  599. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/plugin.py +0 -0
  600. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/setunset.py +0 -0
  601. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/t2i.py +0 -0
  602. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/tool.py +0 -0
  603. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/tts.py +0 -0
  604. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/main.py +0 -0
  605. {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/metadata.yaml +0 -0
  606. {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/main.py +0 -0
  607. {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/metadata.yaml +0 -0
  608. {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/requirements.txt +0 -0
  609. {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/shared/api.py +0 -0
  610. {astrbot-4.3.3 → astrbot-4.5.0}/packages/reminder/main.py +0 -0
  611. {astrbot-4.3.3 → astrbot-4.5.0}/packages/reminder/metadata.yaml +0 -0
  612. {astrbot-4.3.3 → astrbot-4.5.0}/packages/session_controller/main.py +0 -0
  613. {astrbot-4.3.3 → astrbot-4.5.0}/packages/session_controller/metadata.yaml +0 -0
  614. {astrbot-4.3.3 → astrbot-4.5.0}/packages/thinking_filter/metadata.yaml +0 -0
  615. {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/__init__.py +0 -0
  616. {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/bing.py +0 -0
  617. {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/sogo.py +0 -0
  618. {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/metadata.yaml +0 -0
  619. {astrbot-4.3.3 → astrbot-4.5.0}/samples/stt_health_check.wav +0 -0
  620. {astrbot-4.3.3 → astrbot-4.5.0}/tests/test_dashboard.py +0 -0
  621. {astrbot-4.3.3 → astrbot-4.5.0}/tests/test_main.py +0 -0
  622. {astrbot-4.3.3 → astrbot-4.5.0}/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
@@ -11,6 +11,8 @@ reviewers:
11
11
  - Larch-C
12
12
  - anka-afk
13
13
  - advent259141
14
+ - Fridemn
15
+ - LIghtJUNction
14
16
  # - zouyonghe
15
17
 
16
18
  # A number of reviewers added to the pull request
@@ -60,7 +60,7 @@ jobs:
60
60
 
61
61
  # Initializes the CodeQL tools for scanning.
62
62
  - name: Initialize CodeQL
63
- uses: github/codeql-action/init@v3
63
+ uses: github/codeql-action/init@v4
64
64
  with:
65
65
  languages: ${{ matrix.language }}
66
66
  build-mode: ${{ matrix.build-mode }}
@@ -88,6 +88,6 @@ jobs:
88
88
  exit 1
89
89
 
90
90
  - name: Perform CodeQL Analysis
91
- uses: github/codeql-action/analyze@v3
91
+ uses: github/codeql-action/analyze@v4
92
92
  with:
93
93
  category: "/language:${{matrix.language}}"
@@ -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
@@ -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.3
3
+ Version: 4.5.0
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
@@ -52,32 +56,41 @@ Requires-Dist: websockets>=15.0.1
52
56
  Requires-Dist: wechatpy>=1.8.18
53
57
  Description-Content-Type: text/markdown
54
58
 
55
- <img width="430" height="31" alt="image" src="https://github.com/user-attachments/assets/474c822c-fab7-41be-8c23-6dae252823ed" /><p align="center">
56
-
57
59
  ![AstrBot-Logo-Simplified](https://github.com/user-attachments/assets/ffd99b6b-3272-4682-beaa-6fe74250f7d9)
58
60
 
59
61
  </p>
60
62
 
61
63
  <div align="center">
62
64
 
65
+ <br>
66
+
67
+ <div>
63
68
  <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>
69
+ <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" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
70
+ </div>
71
+
72
+ <br>
64
73
 
65
- [![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)
74
+ <div>
75
+ <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">
66
76
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
67
77
  <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>
68
- <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>
69
- <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>
70
- [![wakatime](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e.svg?style=for-the-badge&color=76bad9)](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
71
- ![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)
78
+ <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>
79
+ <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>
80
+ <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">
81
+ </div>
72
82
 
73
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
74
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
83
+ <br>
84
+
85
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
86
+ <a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
75
87
  <a href="https://astrbot.app/">文档</a> |
76
88
  <a href="https://blog.astrbot.app/">Blog</a> |
77
- <a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
89
+ <a href="https://astrbot.featurebase.app/roadmap">路线图</a>
90
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
78
91
  </div>
79
92
 
80
- AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架。
93
+ AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
81
94
 
82
95
  ## 主要功能
83
96
 
@@ -89,7 +102,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
89
102
 
90
103
  ## 部署方式
91
104
 
92
- #### Docker 部署
105
+ #### Docker 部署(推荐 🥳)
93
106
 
94
107
  推荐使用 Docker / Docker Compose 方式部署 AstrBot。
95
108
 
@@ -117,7 +130,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
117
130
 
118
131
  社区贡献的部署方式。
119
132
 
120
- [![Run on Repl.it](https://repl.it/badge/github/Soulter/AstrBot)](https://repl.it/github/Soulter/AstrBot)
133
+ [![Run on Repl.it](https://repl.it/badge/github/AstrBotDevs/AstrBot)](https://repl.it/github/AstrBotDevs/AstrBot)
121
134
 
122
135
  #### Windows 一键安装器部署
123
136
 
@@ -155,7 +168,6 @@ uv run main.py
155
168
  - 5 群:822130018
156
169
  - 6 群:753075035
157
170
  - 开发者群:975206796
158
- - 开发者群(备份):295657329
159
171
 
160
172
  ### Telegram 群组
161
173
 
@@ -167,48 +179,81 @@ uv run main.py
167
179
 
168
180
  ## ⚡ 消息平台支持情况
169
181
 
182
+ **官方维护**
183
+
170
184
  | 平台 | 支持性 |
171
185
  | -------- | ------- |
172
- | QQ(官方机器人接口) | ✔ |
186
+ | QQ(官方平台) | ✔ |
173
187
  | QQ(OneBot) | ✔ |
174
188
  | Telegram | ✔ |
175
- | 企业微信 | ✔ |
189
+ | 企微应用 | ✔ |
190
+ | 企微智能机器人 | ✔ |
176
191
  | 微信客服 | ✔ |
177
192
  | 微信公众号 | ✔ |
178
193
  | 飞书 | ✔ |
179
194
  | 钉钉 | ✔ |
180
195
  | Slack | ✔ |
181
196
  | Discord | ✔ |
182
- | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
183
- | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
184
197
  | Satori | ✔ |
185
198
  | Misskey | ✔ |
199
+ | Whatsapp | 将支持 |
200
+ | LINE | 将支持 |
201
+
202
+ **社区维护**
203
+
204
+ | 平台 | 支持性 |
205
+ | -------- | ------- |
206
+ | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
207
+ | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
208
+ | [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
209
+ | [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
186
210
 
187
211
  ## ⚡ 提供商支持情况
188
212
 
189
- | 名称 | 支持性 | 类型 | 备注 |
190
- | -------- | ------- | ------- | ------- |
191
- | OpenAI | ✔ | 文本生成 | 支持任何兼容 OpenAI API 的服务 |
192
- | Anthropic | | 文本生成 | |
193
- | Google Gemini | ✔ | 文本生成 | |
194
- | Dify | ✔ | LLMOps | |
195
- | 阿里云百炼应用 | ✔ | LLMOps | |
196
- | Ollama | ✔ | 模型加载器 | 本地部署 DeepSeek、Llama 等开源语言模型 |
197
- | LM Studio | ✔ | 模型加载器 | 本地部署 DeepSeek、Llama 等开源语言模型 |
198
- | [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | 模型 API 及算力服务平台 | |
199
- | [302.AI](https://share.302.ai/rr1M3l) | ✔ | 模型 API 服务平台 | |
200
- | 硅基流动 | ✔ | 模型 API 服务平台 | |
201
- | PPIO 派欧云 | ✔ | 模型 API 服务平台 | |
202
- | OneAPI | ✔ | LLM 分发系统 | |
203
- | Whisper | ✔ | 语音转文本 | 支持 API、本地部署 |
204
- | SenseVoice | ✔ | 语音转文本 | 本地部署 |
205
- | OpenAI TTS API | ✔ | 文本转语音 | |
206
- | GSVI | ✔ | 文本转语音 | GPT-Sovits-Inference |
207
- | GPT-SoVITs | ✔ | 文本转语音 | GPT-Sovits-Inference |
208
- | FishAudio | ✔ | 文本转语音 | GPT-Sovits 作者参与的项目 |
209
- | Edge TTS | ✔ | 文本转语音 | Edge 浏览器的免费 TTS |
210
- | 阿里云百炼 TTS | ✔ | 文本转语音 | |
211
- | Azure TTS | ✔ | 文本转语音 | Microsoft Azure TTS |
213
+ **大模型服务**
214
+
215
+ | 名称 | 支持性 | 备注 |
216
+ | -------- | ------- | ------- |
217
+ | OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
218
+ | Anthropic | ✔ | |
219
+ | Google Gemini | ✔ | |
220
+ | Moonshot AI | ✔ | |
221
+ | 智谱 AI | ✔ | |
222
+ | DeepSeek | ✔ | |
223
+ | Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
224
+ | LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
225
+ | [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
226
+ | [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
227
+ | [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
228
+ | 硅基流动 | ✔ | |
229
+ | PPIO 派欧云 | ✔ | |
230
+ | ModelScope | ✔ | |
231
+ | OneAPI | ✔ | |
232
+ | Dify | ✔ | |
233
+ | 阿里云百炼应用 | ✔ | |
234
+ | Coze | ✔ | |
235
+
236
+ **语音转文本服务**
237
+
238
+ | 名称 | 支持性 | 备注 |
239
+ | -------- | ------- | ------- |
240
+ | Whisper | ✔ | 支持 API、本地部署 |
241
+ | SenseVoice | ✔ | 本地部署 |
242
+
243
+ **文本转语音服务**
244
+
245
+ | 名称 | 支持性 | 备注 |
246
+ | -------- | ------- | ------- |
247
+ | OpenAI TTS | ✔ | |
248
+ | Gemini TTS | ✔ | |
249
+ | GSVI | ✔ | GPT-Sovits-Inference |
250
+ | GPT-SoVITs | ✔ | GPT-Sovits |
251
+ | FishAudio | ✔ | |
252
+ | Edge TTS | ✔ | Edge 浏览器的免费 TTS |
253
+ | 阿里云百炼 TTS | ✔ | |
254
+ | Azure TTS | ✔ | |
255
+ | Minimax TTS | ✔ | |
256
+ | 火山引擎 TTS | ✔ | |
212
257
 
213
258
  ## ❤️ 贡献
214
259
 
@@ -223,7 +268,7 @@ uv run main.py
223
268
  AstrBot 使用 `ruff` 进行代码格式化和检查。
224
269
 
225
270
  ```bash
226
- git clone https://github.com/Soulter/AstrBot
271
+ git clone https://github.com/AstrBotDevs/AstrBot
227
272
  pip install pre-commit
228
273
  pre-commit install
229
274
  ```
@@ -240,23 +285,14 @@ pre-commit install
240
285
 
241
286
  - [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
242
287
 
243
- 另外,一些同类型其他的活跃开源 Bot 项目:
244
-
245
- - [nonebot/nonebot2](https://github.com/nonebot/nonebot2) - 扩展性极强的 Bot 框架
246
- - [koishijs/koishi](https://github.com/koishijs/koishi) - 扩展性极强的 Bot 框架
247
- - [MaiM-with-u/MaiBot](https://github.com/MaiM-with-u/MaiBot) - 注重拟人功能的 ChatBot
248
- - [langbot-app/LangBot](https://github.com/langbot-app/LangBot) - 功能丰富的 Bot 平台
249
- - [KroMiose/nekro-agent](https://github.com/KroMiose/nekro-agent) - 注重 Agent 的 ChatBot
250
- - [zhenxun-org/zhenxun_bot](https://github.com/zhenxun-org/zhenxun_bot) - 功能完善的 ChatBot
251
-
252
288
  ## ⭐ Star History
253
289
 
254
290
  > [!TIP]
255
- > 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我维护这个开源项目的动力 <3
291
+ > 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
256
292
 
257
293
  <div align="center">
258
294
 
259
- [![Star History Chart](https://api.star-history.com/svg?repos=soulter/astrbot&type=Date)](https://star-history.com/#soulter/astrbot&Date)
295
+ [![Star History Chart](https://api.star-history.com/svg?repos=astrbotdevs/astrbot&type=Date)](https://star-history.com/#astrbotdevs/astrbot&Date)
260
296
 
261
297
  </div>
262
298
 
@@ -1,29 +1,38 @@
1
- <img width="430" height="31" alt="image" src="https://github.com/user-attachments/assets/474c822c-fab7-41be-8c23-6dae252823ed" /><p align="center">
2
-
3
1
  ![AstrBot-Logo-Simplified](https://github.com/user-attachments/assets/ffd99b6b-3272-4682-beaa-6fe74250f7d9)
4
2
 
5
3
  </p>
6
4
 
7
5
  <div align="center">
8
6
 
7
+ <br>
8
+
9
+ <div>
9
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" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
12
+ </div>
13
+
14
+ <br>
10
15
 
11
- [![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">
12
18
  <img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
13
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>
14
- <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>
15
- <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>
16
- [![wakatime](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e.svg?style=for-the-badge&color=76bad9)](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
17
- ![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>
18
24
 
19
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
20
- <a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
25
+ <br>
26
+
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> |
21
29
  <a href="https://astrbot.app/">文档</a> |
22
30
  <a href="https://blog.astrbot.app/">Blog</a> |
23
- <a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
31
+ <a href="https://astrbot.featurebase.app/roadmap">路线图</a>
32
+ <a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
24
33
  </div>
25
34
 
26
- AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架。
35
+ AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
27
36
 
28
37
  ## 主要功能
29
38
 
@@ -35,7 +44,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
35
44
 
36
45
  ## 部署方式
37
46
 
38
- #### Docker 部署
47
+ #### Docker 部署(推荐 🥳)
39
48
 
40
49
  推荐使用 Docker / Docker Compose 方式部署 AstrBot。
41
50
 
@@ -63,7 +72,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
63
72
 
64
73
  社区贡献的部署方式。
65
74
 
66
- [![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)
67
76
 
68
77
  #### Windows 一键安装器部署
69
78
 
@@ -101,7 +110,6 @@ uv run main.py
101
110
  - 5 群:822130018
102
111
  - 6 群:753075035
103
112
  - 开发者群:975206796
104
- - 开发者群(备份):295657329
105
113
 
106
114
  ### Telegram 群组
107
115
 
@@ -113,48 +121,81 @@ uv run main.py
113
121
 
114
122
  ## ⚡ 消息平台支持情况
115
123
 
124
+ **官方维护**
125
+
116
126
  | 平台 | 支持性 |
117
127
  | -------- | ------- |
118
- | QQ(官方机器人接口) | ✔ |
128
+ | QQ(官方平台) | ✔ |
119
129
  | QQ(OneBot) | ✔ |
120
130
  | Telegram | ✔ |
121
- | 企业微信 | ✔ |
131
+ | 企微应用 | ✔ |
132
+ | 企微智能机器人 | ✔ |
122
133
  | 微信客服 | ✔ |
123
134
  | 微信公众号 | ✔ |
124
135
  | 飞书 | ✔ |
125
136
  | 钉钉 | ✔ |
126
137
  | Slack | ✔ |
127
138
  | Discord | ✔ |
128
- | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
129
- | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
130
139
  | Satori | ✔ |
131
140
  | Misskey | ✔ |
141
+ | Whatsapp | 将支持 |
142
+ | LINE | 将支持 |
143
+
144
+ **社区维护**
145
+
146
+ | 平台 | 支持性 |
147
+ | -------- | ------- |
148
+ | [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
149
+ | [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
150
+ | [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
151
+ | [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
132
152
 
133
153
  ## ⚡ 提供商支持情况
134
154
 
135
- | 名称 | 支持性 | 类型 | 备注 |
136
- | -------- | ------- | ------- | ------- |
137
- | OpenAI | ✔ | 文本生成 | 支持任何兼容 OpenAI API 的服务 |
138
- | Anthropic | | 文本生成 | |
139
- | Google Gemini | ✔ | 文本生成 | |
140
- | Dify | ✔ | LLMOps | |
141
- | 阿里云百炼应用 | ✔ | LLMOps | |
142
- | Ollama | ✔ | 模型加载器 | 本地部署 DeepSeek、Llama 等开源语言模型 |
143
- | LM Studio | ✔ | 模型加载器 | 本地部署 DeepSeek、Llama 等开源语言模型 |
144
- | [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | 模型 API 及算力服务平台 | |
145
- | [302.AI](https://share.302.ai/rr1M3l) | ✔ | 模型 API 服务平台 | |
146
- | 硅基流动 | ✔ | 模型 API 服务平台 | |
147
- | PPIO 派欧云 | ✔ | 模型 API 服务平台 | |
148
- | OneAPI | ✔ | LLM 分发系统 | |
149
- | Whisper | ✔ | 语音转文本 | 支持 API、本地部署 |
150
- | SenseVoice | ✔ | 语音转文本 | 本地部署 |
151
- | OpenAI TTS API | ✔ | 文本转语音 | |
152
- | GSVI | ✔ | 文本转语音 | GPT-Sovits-Inference |
153
- | GPT-SoVITs | ✔ | 文本转语音 | GPT-Sovits-Inference |
154
- | FishAudio | ✔ | 文本转语音 | GPT-Sovits 作者参与的项目 |
155
- | Edge TTS | ✔ | 文本转语音 | Edge 浏览器的免费 TTS |
156
- | 阿里云百炼 TTS | ✔ | 文本转语音 | |
157
- | Azure TTS | ✔ | 文本转语音 | Microsoft Azure TTS |
155
+ **大模型服务**
156
+
157
+ | 名称 | 支持性 | 备注 |
158
+ | -------- | ------- | ------- |
159
+ | OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
160
+ | Anthropic | ✔ | |
161
+ | Google Gemini | ✔ | |
162
+ | Moonshot AI | ✔ | |
163
+ | 智谱 AI | ✔ | |
164
+ | DeepSeek | ✔ | |
165
+ | Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
166
+ | LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
167
+ | [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
168
+ | [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
169
+ | [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
170
+ | 硅基流动 | ✔ | |
171
+ | PPIO 派欧云 | ✔ | |
172
+ | ModelScope | ✔ | |
173
+ | OneAPI | ✔ | |
174
+ | Dify | ✔ | |
175
+ | 阿里云百炼应用 | ✔ | |
176
+ | Coze | ✔ | |
177
+
178
+ **语音转文本服务**
179
+
180
+ | 名称 | 支持性 | 备注 |
181
+ | -------- | ------- | ------- |
182
+ | Whisper | ✔ | 支持 API、本地部署 |
183
+ | SenseVoice | ✔ | 本地部署 |
184
+
185
+ **文本转语音服务**
186
+
187
+ | 名称 | 支持性 | 备注 |
188
+ | -------- | ------- | ------- |
189
+ | OpenAI TTS | ✔ | |
190
+ | Gemini TTS | ✔ | |
191
+ | GSVI | ✔ | GPT-Sovits-Inference |
192
+ | GPT-SoVITs | ✔ | GPT-Sovits |
193
+ | FishAudio | ✔ | |
194
+ | Edge TTS | ✔ | Edge 浏览器的免费 TTS |
195
+ | 阿里云百炼 TTS | ✔ | |
196
+ | Azure TTS | ✔ | |
197
+ | Minimax TTS | ✔ | |
198
+ | 火山引擎 TTS | ✔ | |
158
199
 
159
200
  ## ❤️ 贡献
160
201
 
@@ -169,7 +210,7 @@ uv run main.py
169
210
  AstrBot 使用 `ruff` 进行代码格式化和检查。
170
211
 
171
212
  ```bash
172
- git clone https://github.com/Soulter/AstrBot
213
+ git clone https://github.com/AstrBotDevs/AstrBot
173
214
  pip install pre-commit
174
215
  pre-commit install
175
216
  ```
@@ -186,23 +227,14 @@ pre-commit install
186
227
 
187
228
  - [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
188
229
 
189
- 另外,一些同类型其他的活跃开源 Bot 项目:
190
-
191
- - [nonebot/nonebot2](https://github.com/nonebot/nonebot2) - 扩展性极强的 Bot 框架
192
- - [koishijs/koishi](https://github.com/koishijs/koishi) - 扩展性极强的 Bot 框架
193
- - [MaiM-with-u/MaiBot](https://github.com/MaiM-with-u/MaiBot) - 注重拟人功能的 ChatBot
194
- - [langbot-app/LangBot](https://github.com/langbot-app/LangBot) - 功能丰富的 Bot 平台
195
- - [KroMiose/nekro-agent](https://github.com/KroMiose/nekro-agent) - 注重 Agent 的 ChatBot
196
- - [zhenxun-org/zhenxun_bot](https://github.com/zhenxun-org/zhenxun_bot) - 功能完善的 ChatBot
197
-
198
230
  ## ⭐ Star History
199
231
 
200
232
  > [!TIP]
201
- > 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我维护这个开源项目的动力 <3
233
+ > 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
202
234
 
203
235
  <div align="center">
204
236
 
205
- [![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)
206
238
 
207
239
  </div>
208
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