AstrBot 4.25.0__tar.gz → 4.25.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- astrbot-4.25.2/.github/workflows/build-docs.yml +49 -0
- astrbot-4.25.2/.github/workflows/dashboard_ci.yml +61 -0
- astrbot-4.25.2/.github/workflows/docker-image.yml +198 -0
- astrbot-4.25.2/.github/workflows/release.yml +248 -0
- astrbot-4.25.2/FIRST_NOTICE.en-US.md +16 -0
- astrbot-4.25.2/FIRST_NOTICE.md +16 -0
- astrbot-4.25.2/FIRST_NOTICE.ru-RU.md +16 -0
- astrbot-4.25.2/PKG-INFO +353 -0
- astrbot-4.25.2/astrbot/builtin_stars/astrbot/group_chat_context.py +241 -0
- astrbot-4.25.2/astrbot/builtin_stars/astrbot/main.py +241 -0
- astrbot-4.25.2/astrbot/builtin_stars/builtin_commands/commands/conversation.py +311 -0
- astrbot-4.25.2/astrbot/cli/__init__.py +1 -0
- astrbot-4.25.2/astrbot/cli/__main__.py +60 -0
- astrbot-4.25.2/astrbot/cli/commands/__init__.py +7 -0
- astrbot-4.25.2/astrbot/cli/commands/cmd_conf.py +239 -0
- astrbot-4.25.2/astrbot/cli/commands/cmd_password.py +38 -0
- astrbot-4.25.2/astrbot/core/agent/context/compressor.py +251 -0
- astrbot-4.25.2/astrbot/core/agent/context/round_utils.py +38 -0
- astrbot-4.25.2/astrbot/core/agent/runners/tool_loop_agent_runner.py +1449 -0
- astrbot-4.25.2/astrbot/core/astr_main_agent.py +1553 -0
- astrbot-4.25.2/astrbot/core/config/default.py +4332 -0
- astrbot-4.25.2/astrbot/core/db/__init__.py +910 -0
- astrbot-4.25.2/astrbot/core/db/vec_db/faiss_impl/document_storage.py +857 -0
- astrbot-4.25.2/astrbot/core/knowledge_base/chunking/__init__.py +11 -0
- astrbot-4.25.2/astrbot/core/knowledge_base/chunking/markdown.py +347 -0
- astrbot-4.25.2/astrbot/core/knowledge_base/kb_db_sqlite.py +365 -0
- astrbot-4.25.2/astrbot/core/knowledge_base/kb_helper.py +763 -0
- astrbot-4.25.2/astrbot/core/knowledge_base/parsers/util.py +17 -0
- astrbot-4.25.2/astrbot/core/message/components.py +872 -0
- astrbot-4.25.2/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +571 -0
- astrbot-4.25.2/astrbot/core/pipeline/result_decorate/stage.py +421 -0
- astrbot-4.25.2/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +744 -0
- astrbot-4.25.2/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +606 -0
- astrbot-4.25.2/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +201 -0
- astrbot-4.25.2/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +173 -0
- astrbot-4.25.2/astrbot/core/provider/manager.py +890 -0
- astrbot-4.25.2/astrbot/core/provider/sources/anthropic_source.py +850 -0
- astrbot-4.25.2/astrbot/core/provider/sources/mimo_tts_api_source.py +133 -0
- astrbot-4.25.2/astrbot/core/provider/sources/openai_source.py +1484 -0
- astrbot-4.25.2/astrbot/core/provider/sources/xiaomi_source.py +56 -0
- astrbot-4.25.2/astrbot/core/provider/sources/xiaomi_token_plan_source.py +59 -0
- astrbot-4.25.2/astrbot/core/star/star_manager.py +1920 -0
- astrbot-4.25.2/astrbot/core/tools/message_tools.py +264 -0
- astrbot-4.25.2/astrbot/core/utils/t2i/network_strategy.py +231 -0
- astrbot-4.25.2/astrbot/dashboard/routes/command.py +117 -0
- astrbot-4.25.2/astrbot/dashboard/routes/file.py +24 -0
- astrbot-4.25.2/astrbot/dashboard/routes/platform.py +285 -0
- astrbot-4.25.2/astrbot/dashboard/routes/plugin.py +2060 -0
- astrbot-4.25.2/astrbot/dashboard/routes/static_file.py +37 -0
- astrbot-4.25.2/astrbot/dashboard/server.py +552 -0
- astrbot-4.25.2/changelogs/v4.25.1.md +26 -0
- astrbot-4.25.2/changelogs/v4.25.2.md +110 -0
- astrbot-4.25.2/dashboard/.gitignore +4 -0
- astrbot-4.25.2/dashboard/package.json +79 -0
- astrbot-4.25.2/dashboard/pnpm-lock.yaml +6103 -0
- astrbot-4.25.2/dashboard/src/components/chat/Chat.vue +1785 -0
- astrbot-4.25.2/dashboard/src/components/chat/ChatInput.vue +1298 -0
- astrbot-4.25.2/dashboard/src/components/chat/ChatMessageList.vue +1437 -0
- astrbot-4.25.2/dashboard/src/components/chat/CommandSuggestion.vue +273 -0
- astrbot-4.25.2/dashboard/src/components/chat/MessageList.vue +829 -0
- astrbot-4.25.2/dashboard/src/components/chat/ReasoningSidebar.vue +132 -0
- astrbot-4.25.2/dashboard/src/components/chat/StandaloneChat.vue +651 -0
- astrbot-4.25.2/dashboard/src/components/chat/ThreadedMarkdownMessagePart.vue +93 -0
- astrbot-4.25.2/dashboard/src/components/chat/message_list_comps/MarkdownMessagePart.vue +44 -0
- astrbot-4.25.2/dashboard/src/components/chat/message_list_comps/ReasoningBlock.vue +327 -0
- astrbot-4.25.2/dashboard/src/components/chat/message_list_comps/ReasoningTimeline.vue +270 -0
- astrbot-4.25.2/dashboard/src/components/platform/AddNewPlatform.vue +1283 -0
- astrbot-4.25.2/dashboard/src/components/provider/ProviderSourcesPanel.vue +428 -0
- astrbot-4.25.2/dashboard/src/components/shared/ExtensionCard.vue +534 -0
- astrbot-4.25.2/dashboard/src/components/shared/ListConfigItem.vue +348 -0
- astrbot-4.25.2/dashboard/src/composables/useMediaHandling.ts +216 -0
- astrbot-4.25.2/dashboard/src/composables/useMessages.ts +1070 -0
- astrbot-4.25.2/dashboard/src/composables/useProviderSources.ts +770 -0
- astrbot-4.25.2/dashboard/src/composables/useRecording.ts +141 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/en-US/features/chat.json +187 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/en-US/features/config-metadata.json +1680 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/en-US/features/extension.json +432 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +121 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/en-US/features/provider.json +154 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/ru-RU/features/chat.json +177 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/ru-RU/features/config-metadata.json +1677 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/ru-RU/features/extension.json +427 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/detail.json +121 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/ru-RU/features/provider.json +154 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/zh-CN/features/chat.json +187 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +1682 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/zh-CN/features/extension.json +432 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +121 -0
- astrbot-4.25.2/dashboard/src/i18n/locales/zh-CN/features/provider.json +155 -0
- astrbot-4.25.2/dashboard/src/scss/_variables.scss +134 -0
- astrbot-4.25.2/dashboard/src/scss/layout/_container.scss +119 -0
- astrbot-4.25.2/dashboard/src/utils/providerUtils.js +71 -0
- astrbot-4.25.2/dashboard/src/views/PluginPagePage.vue +528 -0
- astrbot-4.25.2/dashboard/src/views/extension/InstalledPluginsTab.vue +437 -0
- astrbot-4.25.2/dashboard/src/views/extension/useExtensionPage.js +1895 -0
- astrbot-4.25.2/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +870 -0
- astrbot-4.25.2/dashboard-artifact/AstrBot-v4.25.2-dashboard.zip +0 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/AboutPage-Ck_domlG.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ActionRef-B6jo6VYK.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-CHcuy5oD.js +8 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/BlankLayout-B8TYtWlm.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/Chat-Bw0VoaA5.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/Chat-fCjX__TS.js +11 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-llfMYDCI.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ChatPage-DmclSyrr.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/CodeBlockNode-DFJhjQi1.js +22 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConfigPage-DQxvB7Gb.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConfigPage-DTF5swCn.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-DnHlttXB.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConsolePage-C9nGSiko.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConversationPage-DgDsXfsT.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ConversationPage-DonP4kkq.js +30 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/CronJobPage-CgoLVQGd.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/DocumentDetail-DAfGqW16.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ExtensionPage-DNSGtRPQ.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ExtensionPage-tau7zTRJ.js +3 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/FullLayout-goVBZRnW.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/KBDetail-DKRcqpQB.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/KBDetail-DN9k3Csg.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/KBList-Q_ziX5u2.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-DDdYM3Uq.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/LanguageSwitcher-DKgkKRAZ.js +5 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/LoginPage-BuyNDR1-.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/MigrationDialog-DaSreb6M.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/OutlinedActionListItem-B-c3o696.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PersonaForm-C-eyyY3a.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PersonaPage-j5q3GEkf.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-D83n9YmX.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PlatformPage-CNA5J5mL.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PluginPagePage-BtaHbfSb.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/PluginPagePage-DxpWis1H.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ProviderChatCompletionPanel-BXBRmr9Y.js +19 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ProviderChatCompletionPanel-CWRKmOV5.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ProxySelector-DJAXFXby.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-DVg5FFiR.js +8 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-BOxWaQwV.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/Settings-BDqflgyc.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/SetupPage-B6yXXSY2.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/StatsPage-C0JPu49p.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-C1djd96x.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/SubAgentPage-dLzQL1zR.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock-CcY0q7Ay.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock.vue_vue_type_script_setup_true_lang-DNznYFnJ.js +189 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/TracePage-C2wC48X1.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/WelcomePage-BGt2B83-.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/confirmDialog-K3FvaM8e.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/cssMode-DIHCRwse.js +9 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/customizer-CLw-6J4n.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/extended-p72mFE2C.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/htmlMode-K2h5jr2T.js +9 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index-BKDyY-Io.css +5 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index-CiATbMrD.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index-DL0WKcFI.js +1493 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index-Z6AqvYP4.js +8 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index-dHqFVNo-.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index2-BvZZFElr.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index3-DHEW2AQ5.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index4-CAtcODwK.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index5-wPlTBgs_.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index6-ub4ZUlRR.js +8 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/index7-Dj55Ur5I.js +2 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/infographic_markstream-vue-yoD6TSFD.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/javascript-C-xMQoP9.js +6 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/jsonMode-C9GHVI_0.js +15 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/mermaid-_iE8njRg.js +2807 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/mhchem-BbGQkeOt.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/pluginI18n-Bs1Wk_9h.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/python-C46Kl5EM.js +6 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/restartAstrBot-Dtn3t9kR.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/safeRaf-DGuzXxDK.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/typescript-CoW8Q9Pf.js +6 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/useMediaHandling-4TDlgM0I.css +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DabQX72H.js +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/version +1 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/workers-mermaidWorkerClient-CiVQ48XN.js +2 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/xml-CKpUCSyY.js +6 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/yaml-D5NU4j_M.js +6 -0
- astrbot-4.25.2/dashboard-artifact/unpacked/dist/index.html +21 -0
- astrbot-4.25.2/docs/.vitepress/config.mjs +532 -0
- astrbot-4.25.2/docs/en/deploy/astrbot/desktop.md +33 -0
- astrbot-4.25.2/docs/en/dev/openapi.md +149 -0
- astrbot-4.25.2/docs/en/dev/star/guides/ai.md +574 -0
- astrbot-4.25.2/docs/en/dev/star/guides/listen-message-event.md +487 -0
- astrbot-4.25.2/docs/en/dev/star/guides/send-message.md +130 -0
- astrbot-4.25.2/docs/en/dev/star/guides/simple.md +42 -0
- astrbot-4.25.2/docs/en/faq.md +144 -0
- astrbot-4.25.2/docs/en/index.md +31 -0
- astrbot-4.25.2/docs/en/platform/discord.md +76 -0
- astrbot-4.25.2/docs/en/platform/matrix.md +43 -0
- astrbot-4.25.2/docs/en/providers/ppio.md +41 -0
- astrbot-4.25.2/docs/en/use/function-calling.md +49 -0
- astrbot-4.25.2/docs/zh/dev/star/guides/ai.md +571 -0
- astrbot-4.25.2/docs/zh/dev/star/guides/listen-message-event.md +488 -0
- astrbot-4.25.2/docs/zh/dev/star/guides/other.md +56 -0
- astrbot-4.25.2/docs/zh/dev/star/guides/send-message.md +130 -0
- astrbot-4.25.2/docs/zh/dev/star/plugin.md +1795 -0
- astrbot-4.25.2/docs/zh/faq.md +182 -0
- astrbot-4.25.2/docs/zh/index.md +31 -0
- astrbot-4.25.2/docs/zh/platform/discord.md +74 -0
- astrbot-4.25.2/docs/zh/platform/matrix.md +46 -0
- astrbot-4.25.2/docs/zh/platform/qqofficial/websockets.md +90 -0
- astrbot-4.25.2/docs/zh/providers/ppio.md +43 -0
- astrbot-4.25.2/docs/zh/use/function-calling.md +47 -0
- astrbot-4.25.2/main.py +156 -0
- astrbot-4.25.2/pyproject.toml +131 -0
- astrbot-4.25.2/tests/agent/test_context_manager.py +763 -0
- astrbot-4.25.2/tests/test_anthropic_kimi_code_provider.py +613 -0
- astrbot-4.25.2/tests/test_cli_password.py +90 -0
- astrbot-4.25.2/tests/test_dashboard.py +2400 -0
- astrbot-4.25.2/tests/test_epub_parser.py +220 -0
- astrbot-4.25.2/tests/test_mimo_api_sources.py +270 -0
- astrbot-4.25.2/tests/test_openai_source.py +1811 -0
- astrbot-4.25.2/tests/test_plugin_manager.py +1373 -0
- astrbot-4.25.2/tests/test_tool_loop_agent_runner.py +1744 -0
- astrbot-4.25.2/tests/unit/test_astr_main_agent.py +1998 -0
- astrbot-4.25.2/tests/unit/test_document_storage_fts.py +139 -0
- astrbot-4.25.2/tests/unit/test_file_message_component.py +39 -0
- astrbot-4.25.2/tests/unit/test_group_chat_context_wiring.py +120 -0
- astrbot-4.25.0/.github/workflows/build-docs.yml +0 -49
- astrbot-4.25.0/.github/workflows/dashboard_ci.yml +0 -61
- astrbot-4.25.0/.github/workflows/docker-image.yml +0 -198
- astrbot-4.25.0/.github/workflows/release.yml +0 -248
- astrbot-4.25.0/FIRST_NOTICE.en-US.md +0 -14
- astrbot-4.25.0/FIRST_NOTICE.md +0 -14
- astrbot-4.25.0/PKG-INFO +0 -353
- astrbot-4.25.0/astrbot/builtin_stars/astrbot/long_term_memory.py +0 -188
- astrbot-4.25.0/astrbot/builtin_stars/astrbot/main.py +0 -242
- astrbot-4.25.0/astrbot/builtin_stars/builtin_commands/commands/conversation.py +0 -311
- astrbot-4.25.0/astrbot/cli/__init__.py +0 -1
- astrbot-4.25.0/astrbot/cli/__main__.py +0 -59
- astrbot-4.25.0/astrbot/cli/commands/__init__.py +0 -6
- astrbot-4.25.0/astrbot/cli/commands/cmd_conf.py +0 -232
- astrbot-4.25.0/astrbot/core/agent/context/compressor.py +0 -245
- astrbot-4.25.0/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1436
- astrbot-4.25.0/astrbot/core/astr_main_agent.py +0 -1477
- astrbot-4.25.0/astrbot/core/config/default.py +0 -4305
- astrbot-4.25.0/astrbot/core/db/__init__.py +0 -879
- astrbot-4.25.0/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -804
- astrbot-4.25.0/astrbot/core/knowledge_base/chunking/__init__.py +0 -9
- astrbot-4.25.0/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -347
- astrbot-4.25.0/astrbot/core/knowledge_base/kb_helper.py +0 -750
- astrbot-4.25.0/astrbot/core/knowledge_base/parsers/util.py +0 -17
- astrbot-4.25.0/astrbot/core/message/components.py +0 -855
- astrbot-4.25.0/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +0 -542
- astrbot-4.25.0/astrbot/core/pipeline/result_decorate/stage.py +0 -420
- astrbot-4.25.0/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -692
- astrbot-4.25.0/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -598
- astrbot-4.25.0/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -196
- astrbot-4.25.0/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -151
- astrbot-4.25.0/astrbot/core/provider/manager.py +0 -884
- astrbot-4.25.0/astrbot/core/provider/sources/anthropic_source.py +0 -823
- astrbot-4.25.0/astrbot/core/provider/sources/mimo_tts_api_source.py +0 -131
- astrbot-4.25.0/astrbot/core/provider/sources/openai_source.py +0 -1415
- astrbot-4.25.0/astrbot/core/star/star_manager.py +0 -1894
- astrbot-4.25.0/astrbot/core/tools/message_tools.py +0 -264
- astrbot-4.25.0/astrbot/core/utils/t2i/network_strategy.py +0 -221
- astrbot-4.25.0/astrbot/dashboard/routes/command.py +0 -105
- astrbot-4.25.0/astrbot/dashboard/routes/file.py +0 -26
- astrbot-4.25.0/astrbot/dashboard/routes/platform.py +0 -274
- astrbot-4.25.0/astrbot/dashboard/routes/plugin.py +0 -2045
- astrbot-4.25.0/astrbot/dashboard/routes/static_file.py +0 -37
- astrbot-4.25.0/astrbot/dashboard/server.py +0 -552
- astrbot-4.25.0/dashboard/.gitignore +0 -3
- astrbot-4.25.0/dashboard/package.json +0 -80
- astrbot-4.25.0/dashboard/pnpm-lock.yaml +0 -6096
- astrbot-4.25.0/dashboard/src/assets/mdi-subset/materialdesignicons-subset.css +0 -1341
- astrbot-4.25.0/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff +0 -0
- astrbot-4.25.0/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff2 +0 -0
- astrbot-4.25.0/dashboard/src/components/chat/Chat.vue +0 -1734
- astrbot-4.25.0/dashboard/src/components/chat/ChatInput.vue +0 -1071
- astrbot-4.25.0/dashboard/src/components/chat/ChatMessageList.vue +0 -1435
- astrbot-4.25.0/dashboard/src/components/chat/MessageList.vue +0 -828
- astrbot-4.25.0/dashboard/src/components/chat/ReasoningSidebar.vue +0 -119
- astrbot-4.25.0/dashboard/src/components/chat/StandaloneChat.vue +0 -642
- astrbot-4.25.0/dashboard/src/components/chat/ThreadedMarkdownMessagePart.vue +0 -89
- astrbot-4.25.0/dashboard/src/components/chat/message_list_comps/MarkdownMessagePart.vue +0 -40
- astrbot-4.25.0/dashboard/src/components/chat/message_list_comps/ReasoningBlock.vue +0 -317
- astrbot-4.25.0/dashboard/src/components/chat/message_list_comps/ReasoningTimeline.vue +0 -265
- astrbot-4.25.0/dashboard/src/components/platform/AddNewPlatform.vue +0 -1251
- astrbot-4.25.0/dashboard/src/components/provider/ProviderSourcesPanel.vue +0 -396
- astrbot-4.25.0/dashboard/src/components/shared/ExtensionCard.vue +0 -511
- astrbot-4.25.0/dashboard/src/components/shared/ListConfigItem.vue +0 -347
- astrbot-4.25.0/dashboard/src/composables/useMediaHandling.ts +0 -200
- astrbot-4.25.0/dashboard/src/composables/useMessages.ts +0 -1032
- astrbot-4.25.0/dashboard/src/composables/useProviderSources.ts +0 -754
- astrbot-4.25.0/dashboard/src/composables/useRecording.ts +0 -96
- astrbot-4.25.0/dashboard/src/i18n/locales/en-US/features/chat.json +0 -179
- astrbot-4.25.0/dashboard/src/i18n/locales/en-US/features/config-metadata.json +0 -1680
- astrbot-4.25.0/dashboard/src/i18n/locales/en-US/features/extension.json +0 -430
- astrbot-4.25.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -121
- astrbot-4.25.0/dashboard/src/i18n/locales/en-US/features/provider.json +0 -153
- astrbot-4.25.0/dashboard/src/i18n/locales/ru-RU/features/chat.json +0 -169
- astrbot-4.25.0/dashboard/src/i18n/locales/ru-RU/features/config-metadata.json +0 -1677
- astrbot-4.25.0/dashboard/src/i18n/locales/ru-RU/features/extension.json +0 -425
- astrbot-4.25.0/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/detail.json +0 -121
- astrbot-4.25.0/dashboard/src/i18n/locales/ru-RU/features/provider.json +0 -153
- astrbot-4.25.0/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -179
- astrbot-4.25.0/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +0 -1682
- astrbot-4.25.0/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -430
- astrbot-4.25.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -121
- astrbot-4.25.0/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -154
- astrbot-4.25.0/dashboard/src/scss/_variables.scss +0 -134
- astrbot-4.25.0/dashboard/src/scss/layout/_container.scss +0 -119
- astrbot-4.25.0/dashboard/src/utils/providerUtils.js +0 -69
- astrbot-4.25.0/dashboard/src/views/PluginPagePage.vue +0 -528
- astrbot-4.25.0/dashboard/src/views/extension/InstalledPluginsTab.vue +0 -424
- astrbot-4.25.0/dashboard/src/views/extension/useExtensionPage.js +0 -1883
- astrbot-4.25.0/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -868
- astrbot-4.25.0/dashboard-artifact/AstrBot-v4.25.0-dashboard.zip +0 -0
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/AboutPage-OtMtnwyp.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ActionRef-Cmkm9kyu.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-uBTAYw_k.js +0 -8
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/BlankLayout-DfmkDUeF.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/Chat-Bev9E4X-.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/Chat-CwjpiZ2w.js +0 -11
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-ZwWdElfM.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ChatPage-BDQKt47Q.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConfigPage-Cs1hUlgw.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConfigPage-M-haLuuX.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-teSrnbF6.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConsolePage-WDBvPgSD.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConversationPage-Bq4IrY7h.js +0 -30
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ConversationPage-CH9mgU37.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/CronJobPage-DjgtRKaq.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/DocumentDetail-CTLlatlL.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ExtensionPage-C1Dk_k_a.js +0 -3
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ExtensionPage-DXh5LDpq.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/FullLayout-D81CRagt.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/KBDetail-CXwrIxLa.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/KBDetail-Dqd3vsEt.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/KBList-AHqx4d1d.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-BaFyPu8Q.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/LanguageSwitcher-W4Kd2JtX.js +0 -5
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/LoginPage-DCIt5aEv.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/MigrationDialog-Bi4qxwB1.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/OutlinedActionListItem-DdfhoCUm.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PersonaForm-BcjicUBM.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PersonaPage-9804MFHL.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-BffqbIwX.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PlatformPage-C2LwQ_xf.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PluginPagePage-D79Dd7B8.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/PluginPagePage-fDTCqXqe.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ProviderChatCompletionPanel-BWv-Jczd.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ProviderChatCompletionPanel-CkOefX1c.js +0 -19
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ProxySelector-BIpJ9mMi.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-_W1w9Syh.js +0 -8
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-C_zl0PXj.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/Settings-C8vEAOa1.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/SetupPage-CofHpE-4.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/StatsPage-DMuR_sV6.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-D4OjchJv.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/SubAgentPage-BvrcImtC.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/Tooltip-mmwrN2L9.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/TracePage-BaCJqyNr.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/WelcomePage-BC59W6CQ.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/confirmDialog-CakfddqC.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/cssMode-CLGcN_34.js +0 -9
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/customizer-DSS9H-sq.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/htmlMode-WP4-uYVl.js +0 -9
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index-2LH_IS9A.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index-BH4FyXgj.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index-C2hhLgNy.js +0 -1493
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index-DCJrE9ED.js +0 -9
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index-SezUT2Cc.css +0 -5
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index2-BUljy-5J.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index3-WVIlKFOw.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index4-BlHBMDqI.js +0 -22
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index5-B0kiBYV-.js +0 -4
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/index6-BtUSVvm5.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/javascript-FmxPKRlm.js +0 -6
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/jsonMode-DJWKB5mm.js +0 -15
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/mermaid-BcF4r_JD.js +0 -2807
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/mhchem-h_0q8E_7.js +0 -261
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/pluginI18n-CqoBb_Oz.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/python-C7WzQnBH.js +0 -6
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/restartAstrBot-mpAZzmi3.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/safeRaf-DvJDa2y1.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/typescript-DAg7tkO-.js +0 -6
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/useMediaHandling--VPzq8Pr.js +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DOnK2ihK.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/useMessages-3ioXzeqj.css +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/useMessages-DB967m5_.js +0 -361
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/version +0 -1
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/vue-i18n-DsYWy0GD.js +0 -19
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/xml-CLrXTATU.js +0 -6
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/yaml-DN-GtCUA.js +0 -6
- astrbot-4.25.0/dashboard-artifact/unpacked/dist/index.html +0 -21
- astrbot-4.25.0/docs/.vitepress/config.mjs +0 -531
- astrbot-4.25.0/docs/en/dev/openapi.md +0 -51
- astrbot-4.25.0/docs/en/dev/star/guides/ai.md +0 -540
- astrbot-4.25.0/docs/en/dev/star/guides/env.md +0 -48
- astrbot-4.25.0/docs/en/dev/star/guides/listen-message-event.md +0 -471
- astrbot-4.25.0/docs/en/dev/star/guides/send-message.md +0 -131
- astrbot-4.25.0/docs/en/dev/star/guides/simple.md +0 -42
- astrbot-4.25.0/docs/en/faq.md +0 -143
- astrbot-4.25.0/docs/en/index.md +0 -31
- astrbot-4.25.0/docs/en/platform/discord.md +0 -74
- astrbot-4.25.0/docs/en/platform/matrix.md +0 -20
- astrbot-4.25.0/docs/en/providers/ppio.md +0 -41
- astrbot-4.25.0/docs/en/use/function-calling.md +0 -54
- astrbot-4.25.0/docs/zh/dev/star/guides/ai.md +0 -568
- astrbot-4.25.0/docs/zh/dev/star/guides/env.md +0 -48
- astrbot-4.25.0/docs/zh/dev/star/guides/listen-message-event.md +0 -488
- astrbot-4.25.0/docs/zh/dev/star/guides/other.md +0 -52
- astrbot-4.25.0/docs/zh/dev/star/guides/send-message.md +0 -131
- astrbot-4.25.0/docs/zh/dev/star/plugin.md +0 -1795
- astrbot-4.25.0/docs/zh/faq.md +0 -181
- astrbot-4.25.0/docs/zh/index.md +0 -31
- astrbot-4.25.0/docs/zh/platform/discord.md +0 -72
- astrbot-4.25.0/docs/zh/platform/matrix.md +0 -45
- astrbot-4.25.0/docs/zh/platform/qqofficial/websockets.md +0 -90
- astrbot-4.25.0/docs/zh/providers/ppio.md +0 -43
- astrbot-4.25.0/docs/zh/use/function-calling.md +0 -52
- astrbot-4.25.0/main.py +0 -152
- astrbot-4.25.0/pyproject.toml +0 -131
- astrbot-4.25.0/tests/agent/test_context_manager.py +0 -774
- astrbot-4.25.0/tests/test_anthropic_kimi_code_provider.py +0 -418
- astrbot-4.25.0/tests/test_dashboard.py +0 -2392
- astrbot-4.25.0/tests/test_epub_parser.py +0 -211
- astrbot-4.25.0/tests/test_mimo_api_sources.py +0 -237
- astrbot-4.25.0/tests/test_openai_source.py +0 -1788
- astrbot-4.25.0/tests/test_plugin_manager.py +0 -1263
- astrbot-4.25.0/tests/test_tool_loop_agent_runner.py +0 -1655
- astrbot-4.25.0/tests/unit/test_astr_main_agent.py +0 -1802
- astrbot-4.25.0/tests/unit/test_document_storage_fts.py +0 -103
- {astrbot-4.25.0 → astrbot-4.25.2}/.dockerignore +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/FUNDING.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/auto_assign.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/copilot-instructions.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/dependabot.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/pr-title-check.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/smoke_test.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/stale.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/sync-wiki.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.github/workflows/unit_tests.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.gitignore +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.pre-commit-config.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/.python-version +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/CONTRIBUTING.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/Dockerfile +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/EULA.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/LICENSE +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/Makefile +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README_fr.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README_ja.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README_ru.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README_zh-TW.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/README_zh.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/all.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/message_components.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/astrbot/.astrbot-plugin/i18n/en-US.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/astrbot/.astrbot-plugin/i18n/zh-CN.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/astrbot/metadata.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/.astrbot-plugin/i18n/en-US.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/.astrbot-plugin/i18n/zh-CN.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/admin.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/help.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/provider.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/setunset.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/sid.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/main.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/builtin_stars/builtin_commands/metadata.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/context/config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/context/manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/context/token_counter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/context/truncator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/message.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/deerflow/constants.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/deerflow/deerflow_agent_runner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/deerflow/deerflow_api_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/deerflow/deerflow_content_mapper.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/deerflow/deerflow_stream_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/agent/tool_image_cache.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astr_agent_hooks.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astr_agent_run_util.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astr_agent_tool_exec.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astr_main_agent_resources.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/backup/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/backup/constants.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/backup/exporter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/backup/importer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/bay_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/boxlite.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/cua.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/cua_defaults.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/local.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/shell_background.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/shipyard.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/shipyard_neo.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/booters/shipyard_search_file_util.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/computer_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/file_read_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/browser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/filesystem.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/gui.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/python.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/computer/olayer/shell.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/cron/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/cron/events.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/cron/manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/migra_token_usage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/po.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/epub_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/knowledge_base/retrieval/tokenizer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/log.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/persona_error_reply.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/bootstrap.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/process_stage/follow_up.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/stage_order.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/dingtalk/app_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_roles_record.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/kook/kook_types.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/lark/app_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/lark/bot_info.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/lark/server.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/line/line_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/line/line_api.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/line/line_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/mattermost/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/mattermost/client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/mattermost/mattermost_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/mattermost/mattermost_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/webchat/message_parts_helper.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_long_connection.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_webhook.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_oc/login_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_oc/weixin_oc_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_oc/weixin_oc_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_oc/weixin_oc_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/modalities.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/provider.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/genie_tts.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/kimi_code_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/longcat_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/mimo_api_common.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/mimo_stt_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/minimax_token_plan_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/nvidia_embedding_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/nvidia_rerank_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/oai_aihubmix_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/ollama_embedding_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/openrouter_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/xai_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/sentinels.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/skills/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/skills/neo_skill_sync.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/skills/skill_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/README.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/command_management.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/context.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/error_messages.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/star.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/subagent_orchestrator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/cua.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/fs.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/python.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/shell.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/shipyard_neo/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/shipyard_neo/browser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/shipyard_neo/neo_skills.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/computer_tools/util.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/cron_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/knowledge_base_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/registry.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/tools/web_search_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/updator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/active_event_registry.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/auth_password.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/config_number.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/core_constraints.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/datetime_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/desktop_core_lock.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/error_redaction.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/file_extract.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/history_saver.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/http_ssl.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/image_ref_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/llm_metadata.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/media_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/network_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/plugin_kv_store.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/chain_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/extractor.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/image_refs.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/image_resolver.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/onebot_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message/settings.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/quoted_message_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/requirements_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/runtime_env.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/storage_cleaner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/string_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/template/astrbot_vitepress.html +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/template/shiki_runtime.iife.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/temp_dir_cleaner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/trace.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/utils/webhook_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/password_state.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/plugin_page_auth.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/plugin_page_bridge.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/api_key.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/backup.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/chatui_project.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/cron.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/knowledge_base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/live_chat.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/open_api.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/skills.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/subagent.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/routes/util.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/utils/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/astrbot/utils/http_ssl_common.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.0-alpha.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.0-alpha.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.10.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.11.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.11.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.11.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.11.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.11.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.12.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.12.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.12.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.12.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.12.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.13.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.13.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.13.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.7.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.14.8.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.15.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.16.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.17.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.18.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.18.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.18.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.18.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.19.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.19.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.19.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.19.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.20.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.20.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.21.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.22.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.22.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.22.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.22.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.0-beta.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.23.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.24.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.24.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.24.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.25.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.7.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.7.3.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.7.4.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.8.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.9.0.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.9.1.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/changelogs/v4.9.2.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/compose-with-shipyard.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/compose.yml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/LICENSE +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/README.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/env.d.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/index.html +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/public/_redirects +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/public/robots.txt +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/scripts/build-t2i-shiki-runtime.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/scripts/subset-mdi-font.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/App.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/loading-seio.webp +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/line.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/matrix.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/mattermost.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/onebot.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/assets/images/xmas-hat.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/LiveMode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/LiveOrb.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/MessageListDEPRECATED.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ProjectDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ProjectList.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ProjectView.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ProviderConfigDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ProviderModelMenu.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/RegenerateMenu.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/ThreadPanel.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/ActionRef.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/IPythonToolBlock.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/RefNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/RefsSidebar.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/ThreadNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/ToolCallCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/chat/message_list_comps/ToolCallItem.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/config/UnsavedChangesConfirmDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/MarketPluginCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/McpServersSection.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/PluginSortControl.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/SkillsSection.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/components/CommandFilters.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/components/CommandTable.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/components/DetailsDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/components/RenameDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/components/ToolTable.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/composables/useCommandActions.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/composables/useCommandFilters.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/composables/useComponentData.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/index.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/extension/componentPanel/types.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseCreateFolderDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseFolderBreadcrumb.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseFolderCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseFolderItemSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseFolderTree.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseFolderTreeNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseMoveTargetNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/BaseMoveToFolderDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/README.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/index.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/types.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/folder/useFolderManager.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/platform/PlatformRegistrationAction.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/provider/ProviderChatCompletionPanel.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/provider/ProviderModelsPanel.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/BackupDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ChangelogDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ConfigItemRenderer.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/FileConfigItem.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/OutlinedActionListItem.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/PersonaQuickPreview.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/PluginPlatformChip.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/QrCodeViewer.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/StorageCleanupPanel.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/StyledMenu.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/TemplateListEditor.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/ThemeAwareMarkdownCodeBlock.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/TraceDisplayer.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useConfigTextResolver.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useProjects.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useProviderModelConfigDialog.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/composables/useVADRecording.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/config.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/command.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/cron.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/stats.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/subagent.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/trace.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/features/welcome.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/actions.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/common.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/header.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/navigation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/shared.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/core/status.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/about.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/alkaid/memory.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/auth.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/chart.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/command.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/config.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/console.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/conversation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/cron.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/dashboard.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/document.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/migration.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/persona.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/platform.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/session-management.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/settings.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/stats.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/subagent.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/tool-use.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/trace.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/features/welcome.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/messages/errors.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/messages/success.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/ru-RU/messages/validation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/command.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/cron.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/stats.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/subagent.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/trace.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/features/welcome.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/main.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/router/routeConstants.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_CodeBlockDark.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/personaStore.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/routerLoading.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/styles/dashboard-shell.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/types/confirm.d.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/types/desktop-bridge.d.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/chatConfigBinding.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/clipboard.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/confirmDialog.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/desktopRuntime.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/errorUtils.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/hashRouteTabs.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/imeInput.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/inputValue.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/pluginI18n.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/pluginSearch.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/restartAstrBot.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/routerReadiness.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/shiki.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/shikiLimitedBundle.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/streamMonacoDisabled.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/CronJobPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/SubAgentPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/TracePage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/WelcomePage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/authentication/auth/SetupPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/authentication/authForms/AuthSetup.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/extension/MarketPluginsTab.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/extension/PluginDetailPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/extension/extensionPreferenceStorage.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/CreateFolderDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/FolderBreadcrumb.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/FolderCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/FolderTree.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/FolderTreeNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/MoveTargetNode.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/MoveToFolderDialog.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/PersonaCard.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/PersonaManager.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/persona/index.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/src/views/stats/StatsPage.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tests/extensionPreferenceStorage.test.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tests/hashRouteTabs.test.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tests/imeInput.test.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tests/routerReadiness.test.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tests/subsetMdiFont.test.mjs +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tsconfig.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard/vite.config.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/_redirects +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ActionRef-3Xdm2cI_.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-Wsb14M6C.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-wITcYeZo.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ChatPage-eUJ4JNI2.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-D2bL_UT2.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ConsolePage-C7MnhMff.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/CronJobPage-iUcPeCVw.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/DocumentDetail-BZ6iI533.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/FullLayout-DZhz8Ez5.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KBList-BXnjgFL1.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-DOYGUnUZ.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/LanguageSwitcher-Di65FO25.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/LoginPage-Dpqsj0ec.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/MigrationDialog-CujGC_I8.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/OutlinedActionListItem-C5Gi_QHb.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/PersonaForm-BHNoUZKa.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/PersonaPage-gVfFe3U4.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-DAEP78tl.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/PlatformPage-DSLpf9jm.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ProxySelector-DIVzyY3H.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4a0Ew-BGsTXAXT.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4i0ExAo-5tcqmc2S.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-C7wQ_kpF.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-A8MkWHfp.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/Settings-D-Utrlz7.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/SetupPage-B3-36-97.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/StatsPage-DQtDHkjL.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/StyledMenu-8exaDaCF.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/SubAgentPage-DjYC8wD1.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/TracePage-Dw642Cyi.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/WelcomePage-B0sdagHe.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/clipboard-CB4uewcM.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/css.worker-DaIe3gwK.js +0 -0
- /astrbot-4.25.0/dashboard-artifact/unpacked/dist/assets/infographic_markstream-vue-yoD6TSFD.js → /astrbot-4.25.2/dashboard-artifact/unpacked/dist/assets/d2_markstream-vue-yoD6TSFD.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/dockerfile-Zznr-cwX.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/editor.worker-BCzxt1at.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/eventsource-CejZdUM0.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/html.worker-CKrFyw_2.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/icon-no-shadow-d_sgy4RT.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/index-BP4SNDIk.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/index-_Dy2zPzC.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/ini-Drc7WvVn.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/inputValue-De_-AW4_.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/json.worker-B7c_PmGb.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALRIIKIyQ4-CqPqLCfe.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALRIYKIyQ4-y5SU35Rl.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALRKoKIyQ4-CRA5_Pf1.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALRLoKI-DYAKOyvl.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.100-DrqXJETY.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.101-c94LAl5p.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.102-C1RtbCZr.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.103-DGHo20nu.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.104-CJT2ioDJ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.105-BFoiJwz2.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.106-D6uUHw3w.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.107-kFQzJDLH.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.108-7aXvqIa2.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.109-CnjNbNmw.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.110-D2JBr045.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.111-ClFr5QXM.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.112-CiZxJMyY.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.113-OgQXOX6x.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.114-CRH9SDZu.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.115-BN__2iBG.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.116-vdFVzbO2.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.117-Dsz3vkzU.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.118-BPEb0gM9.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.119-BfzSEbFz.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.21-DIu_1ZBI.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.22-VXjdYcT-.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.23-4HrHKhpL.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.24-B58DWgHS.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.25-C3Jm6l7O.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.26-YNOygvr_.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.27-BP2pEGQH.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.28-BWPKDbtH.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.29-45aVmHn_.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.30-B8_s30jZ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.31-DW0t445S.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.32-ShbWPcei.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.33-BOTZYTjM.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.34-BF1rqDSt.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.35-Bosspiyr.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.36-CtU9CyKw.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.37-ghDiyiuv.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.38-4Nz8k_dt.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.39-Ddtm1XVC.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.4-BRbPMj-C.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.40-BVn4-kgX.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.41-CZqajZnl.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.42-CQ4lY28u.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.43-psppu0d8.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.44-cbKJlTUe.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.45-MKIEVRIC.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.46-CErGc6Mt.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.47-C5Kgg1_m.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.48-DFMjDDY6.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.49-B7l_3BZr.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.5-DI846rD9.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.50-C5KfAmFp.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.51-C2bq6hC8.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.52-P18e_Y0j.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.53-Bgkuo2tF.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.54-DL5lmlUd.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.55-BV_Oy6IF.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.56-B4L7Hj8f.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.57-DU8YBsDj.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.58-CE0BKS9u.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.59-Azv2Ku9_.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.6-ozUCEY9O.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.60-C1lngC61.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.61-BxWkGF5M.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.62-CXXMAq-5.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.63-4La5uKvS.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.64-CbIuD2Eg.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.65-BGqvKda2.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.66-BvNozWOY.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.67-CC-WRBV-.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.68-c0FjfUaj.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.69-D596Jjl2.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.70-ColEcmtJ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.71-ChZfXpdg.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.72-D1VyfEG3.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.73-DwSJRYPJ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.74-Cte7o1QG.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.75-B0qL41rF.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.76-BPLMO_2x.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.77-Dkbi3pye.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.78-BFUXeSw6.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.79-DoJG4UTB.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.80-BEFypWOO.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.81-ed_TZlfo.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.82-DcxfR5OJ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.83-C9UjAcMM.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.84-C7NxT478.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.85-DBcDBu1n.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.86-CLJIoPpl.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.87-DYfJ-vGE.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.88-ClNDOCGW.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.89-IQU_KQA8.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.90-BWcrRNoG.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.91-CGekvDdH.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.97-BsBHkXi3.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.98-BZqSA1r_.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/k3kXo84MPvpLmixcA63oeALhLOCT-xWNm8Hqd37g1OkDRZe7lR4sg1IzSy-MNbE9VH8V.99-Q_IptJM5.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/katex-CBSAILhF.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/markdown-DSZPf7rp.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-BeBOA4Nb.woff +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-DWQRA4YZ.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/misskey-DyDC7ZfL.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du2ui-Ymb6dZNd.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw-BYSzYMf3.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu2ui-W1qJv59z.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu2ui-DLTJy58D.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu2ui-12T8GTDR.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu2ui-DSNfmdVt.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du2ui-Cv-Vwajv.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu2ui-B2hlT84T.woff2 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/onebot-fwgbsrHC.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/platformUtils-O0RgrbHN.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/plugin_icon-klBjcUDx.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/plugin_icon-xgxlkBou.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/powershell-Dd3NCNK9.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/qq-D53z62OG.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/satori-DvyZ9Qos.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/shell-CX-rkNHf.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/shiki-CcKxT-6F.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/sql-CCSDG5nI.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/streamMonacoDisabled-C86_ftmA.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/vocechat-3FM9-gsb.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/wechat-OKdslIg4.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/wecom-CG6W-50z.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/assets/xmas-hat-ChoGHOay.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/favicon.svg +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/robots.txt +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/dashboard-artifact/unpacked/dist/t2i/shiki_runtime.iife.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.gitignore +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/config/head.ts +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/components/ArticleShare.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/components/HomeFeaturesAfter.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/components/Layout.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/components/NotFound.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/components/SectionTabs.vue +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/index.js +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/styles/custom-block.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/styles/font.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/.vitepress/theme/styles/style.css +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/README.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/community.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/config/model-config.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/1panel.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/btpanel.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/casaos.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/cli.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/community-deployment.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/compshare.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/docker.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/kubernetes.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/launcher.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/other-deployments.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/package.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/astrbot/sys-pm.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/deploy/when-deployed.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/astrbot-config.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/plugin-platform-adapter.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/plugin.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/html-to-pic.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/plugin-config.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/plugin-i18n.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/plugin-pages.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/session-control.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/guides/storage.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/plugin-new.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/dev/star/plugin-publish.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/ospp/2025.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/others/self-host-t2i.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/aiocqhttp.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/dingtalk.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/kook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/lark.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/line.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/mattermost.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/misskey.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/qqofficial/webhook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/qqofficial/websockets.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/qqofficial.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/satori/guide.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/satori/server-satori.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/slack.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/start.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/telegram.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/vocechat.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/wecom.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/wecom_ai_bot.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/weixin-official-account.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/platform/weixin_oc.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/302ai.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners/astrbot-agent-runner.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners/coze.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners/dashscope.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners/deerflow.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners/dify.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/agent-runners.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/aihubmix.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/coze.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/dashscope.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/dify.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/llm.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/newapi.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/provider-lmstudio.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/provider-ollama.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/siliconflow.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/start.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/providers/tokenpony.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/agent-runner.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/astrbot-agent-sandbox.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/astrbot-sandbox.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/code-interpreter.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/command.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/computer.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/context-compress.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/custom-rules.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/knowledge-base.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/mcp.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/plugin.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/proactive-agent.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/skills.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/subagent.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/unified-webhook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/websearch.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/use/webui.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/en/what-is-astrbot.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/package.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/pnpm-lock.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/404-seio.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/install.ps1 +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/install.sh +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/logo.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/logo_prod.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/openapi.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/public/scalar.html +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/scripts/sync_docs_to_wiki.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/scripts/upload-doc-images-to-r2.sh +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/scripts/upload_doc_images_to_r2.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/scripts/usage.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/tests/test_sync_docs_to_wiki.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/vercel.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/community-events/ospp-2025.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/community-events/tonggujiyu-astrbot-plugin-reward-program.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/community.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/1panel.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/btpanel.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/casaos.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/cli.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/community-deployment.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/compshare.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/desktop.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/docker.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/kubernetes.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/launcher.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/other-deployments.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/package.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/rainyun.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/astrbot/sys-pm.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/deploy/when-deployed.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/astrbot-config.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/openapi.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/plugin-platform-adapter.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/plugin.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/html-to-pic.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/plugin-config.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/plugin-i18n.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/plugin-pages.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/session-control.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/simple.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/guides/storage.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/plugin-new.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/dev/star/plugin-publish.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/others/github-proxy.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/others/ipv6.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/others/self-host-t2i.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/aiocqhttp.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/dingtalk.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/kook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/lark.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/line.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/mattermost.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/misskey.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/qqofficial/webhook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/qqofficial.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/satori/guide.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/satori/server-satori.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/slack.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/start.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/telegram.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/vocechat.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/wecom.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/wecom_ai_bot.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/weixin-official-account.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/weixin_oc.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/platform/weixin_qr_entry.png +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/302ai.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners/astrbot-agent-runner.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners/coze.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners/dashscope.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners/deerflow.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners/dify.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/agent-runners.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/aihubmix.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/coze.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/dashscope.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/dify.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/llm.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/newapi.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/provider-lmstudio.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/provider-ollama.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/siliconflow.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/start.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/providers/tokenpony.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/agent-runner.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/astrbot-agent-sandbox.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/code-interpreter.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/command.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/computer.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/context-compress.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/custom-rules.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/knowledge-base-old.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/knowledge-base.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/mcp.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/plugin.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/proactive-agent.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/skills.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/subagent.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/unified-webhook.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/websearch.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/use/webui.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/docs/zh/what-is-astrbot.md +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot/00-namespace.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot/01-pvc.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot/02-deployment.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot/03-service-nodeport.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot_with_napcat/00-namespace.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot_with_napcat/01-pvc.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot_with_napcat/02-deployment.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot_with_napcat/03-service-nodeport.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/openspec/config.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/requirements.txt +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/runtime_bootstrap.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/samples/stt_health_check.wav +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/astrbot.service +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/hatch_build.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/pr_test_env.sh +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/run_pytests_ci.sh +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/smoke_startup_check.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/scripts/start-with-neo.sh +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/agent/test_token_counter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/agent/test_truncator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/conftest.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/configs/test_cmd_config.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/helpers.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/messages/test_messages.json +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/mocks/__init__.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/mocks/aiocqhttp.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/mocks/discord.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/mocks/telegram.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/plugins/fixture_plugin.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/fixtures/plugins/metadata.yaml +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_api_key_open_api.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_backup.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_chat_route.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_cli_init.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_computer_config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_computer_fs_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_computer_skill_sync.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_computer_tool_permissions.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_conversation_checkpoint.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_conversation_commands.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_deerflow_agent_runner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_deerflow_api_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_dingtalk_app_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_discord_command_sync.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_gemini_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_httpx_socks_dependency.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kb_import.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kook/.gitignore +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kook/shared.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kook/test_kook_client.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kook/test_kook_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_kook/test_kook_types.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_lark_app_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_local_filesystem_component.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_local_shell_component.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_main.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_mattermost_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_neo_skill_sync.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_neo_skill_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_pip_helper_modules.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_pip_installer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_profile_aware_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_quoted_message_parser.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_runtime_env.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_security_fixes.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_shipyard_neo_booter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_skill_manager_sandbox_cache.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_skill_metadata_enrichment.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_smoke.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_storage_cleaner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_telegram_adapter.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_temp_dir_cleaner.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_updator_socks.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_weixin_oc_login_registration.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/test_whisper_api_source.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_aiocqhttp_poke.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_astr_agent_tool_exec.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_astr_message_event.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_astrbot_message.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_computer.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_config.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_core_lifecycle.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_cron_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_cron_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_cua_computer_use.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_event_bus.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_faiss_vec_db.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_func_tool_manager.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_kb_manager_resilience.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_mcp_client_schema.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_message_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_network_utils.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_provider_stats.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_python_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_session_lock.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_sparse_retriever.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_star_base.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_subagent_orchestrator.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_tool_conflict_resolution.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_tool_google_schema.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_upload_filename_sanitization.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/tests/unit/test_web_search_tools.py +0 -0
- {astrbot-4.25.0 → astrbot-4.25.2}/typings/faiss/__init__.pyi +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
runs-on: ubuntu-latest # 运行环境
|
|
12
|
+
steps:
|
|
13
|
+
- name: checkout
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
|
+
- name: Setup pnpm
|
|
16
|
+
uses: pnpm/action-setup@v6.0.8
|
|
17
|
+
with:
|
|
18
|
+
version: 10.28.2
|
|
19
|
+
- name: Setup Node.js
|
|
20
|
+
uses: actions/setup-node@v6
|
|
21
|
+
with:
|
|
22
|
+
node-version: "24.13.0"
|
|
23
|
+
cache: "pnpm"
|
|
24
|
+
cache-dependency-path: docs/pnpm-lock.yaml
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: pnpm install --frozen-lockfile
|
|
27
|
+
working-directory: './docs'
|
|
28
|
+
- name: Build docs
|
|
29
|
+
run: pnpm run docs:build
|
|
30
|
+
working-directory: './docs'
|
|
31
|
+
- name: scp
|
|
32
|
+
uses: appleboy/scp-action@v1.0.0
|
|
33
|
+
with:
|
|
34
|
+
host: ${{ secrets.HOST_NEKO }}
|
|
35
|
+
username: ${{ secrets.USERNAME }}
|
|
36
|
+
password: ${{ secrets.PASSWORDNEKO }}
|
|
37
|
+
source: 'docs/.vitepress/dist/*'
|
|
38
|
+
target: '/tmp/'
|
|
39
|
+
- name: script
|
|
40
|
+
uses: appleboy/ssh-action@v1.2.5
|
|
41
|
+
with:
|
|
42
|
+
host: ${{ secrets.HOST_NEKO }}
|
|
43
|
+
username: ${{ secrets.USERNAME }}
|
|
44
|
+
password: ${{ secrets.PASSWORDNEKO }}
|
|
45
|
+
script: |
|
|
46
|
+
mkdir -p /root/docker_data/caddy/caddy_data/static_site/abv4/
|
|
47
|
+
rm -rf /root/docker_data/caddy/caddy_data/static_site/abv4/*
|
|
48
|
+
mv /tmp/docs/.vitepress/dist/* /root/docker_data/caddy/caddy_data/static_site/abv4/
|
|
49
|
+
rm -rf /tmp/docs/
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
name: AstrBot Dashboard CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ "master" ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ "master" ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
if: github.repository == 'AstrBotDevs/AstrBot'
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout repository
|
|
15
|
+
uses: actions/checkout@v6
|
|
16
|
+
|
|
17
|
+
- name: Setup pnpm
|
|
18
|
+
uses: pnpm/action-setup@v6.0.8
|
|
19
|
+
with:
|
|
20
|
+
version: 10.28.2
|
|
21
|
+
|
|
22
|
+
- name: Setup Node.js
|
|
23
|
+
uses: actions/setup-node@v6
|
|
24
|
+
with:
|
|
25
|
+
node-version: '24.13.0'
|
|
26
|
+
cache: "pnpm"
|
|
27
|
+
cache-dependency-path: dashboard/pnpm-lock.yaml
|
|
28
|
+
|
|
29
|
+
- name: Install and Build
|
|
30
|
+
working-directory: dashboard
|
|
31
|
+
run: |
|
|
32
|
+
pnpm install --frozen-lockfile
|
|
33
|
+
pnpm run build
|
|
34
|
+
|
|
35
|
+
- name: Inject Commit SHA
|
|
36
|
+
id: get_sha
|
|
37
|
+
run: |
|
|
38
|
+
echo "COMMIT_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
39
|
+
mkdir -p dashboard/dist/assets
|
|
40
|
+
echo $COMMIT_SHA > dashboard/dist/assets/version
|
|
41
|
+
cd dashboard
|
|
42
|
+
zip -r dist.zip dist
|
|
43
|
+
|
|
44
|
+
- name: Archive production artifacts
|
|
45
|
+
uses: actions/upload-artifact@v7
|
|
46
|
+
with:
|
|
47
|
+
name: dist-without-markdown
|
|
48
|
+
path: |
|
|
49
|
+
dashboard/dist
|
|
50
|
+
!dist/**/*.md
|
|
51
|
+
|
|
52
|
+
- name: Create GitHub Release
|
|
53
|
+
if: github.event_name == 'push'
|
|
54
|
+
uses: ncipollo/release-action@v1.21.0
|
|
55
|
+
with:
|
|
56
|
+
tag: release-${{ github.sha }}
|
|
57
|
+
owner: AstrBotDevs
|
|
58
|
+
repo: astrbot-release-harbour
|
|
59
|
+
body: "Automated release from commit ${{ github.sha }}"
|
|
60
|
+
token: ${{ secrets.ASTRBOT_HARBOUR_TOKEN }}
|
|
61
|
+
artifacts: "dashboard/dist.zip"
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
name: Docker Image CI/CD
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
schedule:
|
|
8
|
+
# Run at 00:00 UTC every day
|
|
9
|
+
- cron: "0 0 * * *"
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build-nightly-image:
|
|
14
|
+
if: github.repository == 'AstrBotDevs/AstrBot' && github.event_name == 'schedule'
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
env:
|
|
17
|
+
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
18
|
+
GHCR_OWNER: astrbotdevs
|
|
19
|
+
HAS_GHCR_TOKEN: ${{ secrets.GHCR_GITHUB_TOKEN != '' }}
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- name: Checkout
|
|
23
|
+
uses: actions/checkout@v6
|
|
24
|
+
with:
|
|
25
|
+
fetch-depth: 1
|
|
26
|
+
fetch-tag: true
|
|
27
|
+
|
|
28
|
+
- name: Check for new commits today
|
|
29
|
+
if: github.event_name == 'schedule'
|
|
30
|
+
id: check-commits
|
|
31
|
+
run: |
|
|
32
|
+
# Get commits from the last 24 hours
|
|
33
|
+
commits=$(git log --since="24 hours ago" --oneline)
|
|
34
|
+
if [ -z "$commits" ]; then
|
|
35
|
+
echo "No commits in the last 24 hours, skipping build"
|
|
36
|
+
echo "has_commits=false" >> $GITHUB_OUTPUT
|
|
37
|
+
else
|
|
38
|
+
echo "Found commits in the last 24 hours:"
|
|
39
|
+
echo "$commits"
|
|
40
|
+
echo "has_commits=true" >> $GITHUB_OUTPUT
|
|
41
|
+
fi
|
|
42
|
+
|
|
43
|
+
- name: Exit if no commits
|
|
44
|
+
if: github.event_name == 'schedule' && steps.check-commits.outputs.has_commits == 'false'
|
|
45
|
+
run: exit 0
|
|
46
|
+
|
|
47
|
+
- name: Build Dashboard
|
|
48
|
+
run: |
|
|
49
|
+
cd dashboard
|
|
50
|
+
npm install
|
|
51
|
+
npm run build
|
|
52
|
+
mkdir -p dist/assets
|
|
53
|
+
echo $(git rev-parse HEAD) > dist/assets/version
|
|
54
|
+
cd ..
|
|
55
|
+
mkdir -p data
|
|
56
|
+
cp -r dashboard/dist data/
|
|
57
|
+
|
|
58
|
+
- name: Determine test image tags
|
|
59
|
+
id: test-meta
|
|
60
|
+
run: |
|
|
61
|
+
short_sha=$(echo "${GITHUB_SHA}" | cut -c1-12)
|
|
62
|
+
build_date=$(date +%Y%m%d)
|
|
63
|
+
echo "short_sha=$short_sha" >> $GITHUB_OUTPUT
|
|
64
|
+
echo "build_date=$build_date" >> $GITHUB_OUTPUT
|
|
65
|
+
|
|
66
|
+
- name: Set QEMU
|
|
67
|
+
uses: docker/setup-qemu-action@v4.0.0
|
|
68
|
+
|
|
69
|
+
- name: Set Docker Buildx
|
|
70
|
+
uses: docker/setup-buildx-action@v4.1.0
|
|
71
|
+
|
|
72
|
+
- name: Log in to DockerHub
|
|
73
|
+
uses: docker/login-action@v4.2.0
|
|
74
|
+
with:
|
|
75
|
+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
76
|
+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
|
77
|
+
|
|
78
|
+
- name: Login to GitHub Container Registry
|
|
79
|
+
if: env.HAS_GHCR_TOKEN == 'true'
|
|
80
|
+
uses: docker/login-action@v4.2.0
|
|
81
|
+
with:
|
|
82
|
+
registry: ghcr.io
|
|
83
|
+
username: ${{ env.GHCR_OWNER }}
|
|
84
|
+
password: ${{ secrets.GHCR_GITHUB_TOKEN }}
|
|
85
|
+
|
|
86
|
+
- name: Build nightly image tags list
|
|
87
|
+
id: test-tags
|
|
88
|
+
run: |
|
|
89
|
+
TAGS="${{ env.DOCKER_HUB_USERNAME }}/astrbot:nightly-latest
|
|
90
|
+
${{ env.DOCKER_HUB_USERNAME }}/astrbot:nightly-${{ steps.test-meta.outputs.build_date }}-${{ steps.test-meta.outputs.short_sha }}"
|
|
91
|
+
if [ "${{ env.HAS_GHCR_TOKEN }}" = "true" ]; then
|
|
92
|
+
TAGS="$TAGS
|
|
93
|
+
ghcr.io/${{ env.GHCR_OWNER }}/astrbot:nightly-latest
|
|
94
|
+
ghcr.io/${{ env.GHCR_OWNER }}/astrbot:nightly-${{ steps.test-meta.outputs.build_date }}-${{ steps.test-meta.outputs.short_sha }}"
|
|
95
|
+
fi
|
|
96
|
+
echo "tags<<EOF" >> $GITHUB_OUTPUT
|
|
97
|
+
echo "$TAGS" >> $GITHUB_OUTPUT
|
|
98
|
+
echo "EOF" >> $GITHUB_OUTPUT
|
|
99
|
+
|
|
100
|
+
- name: Build and Push Nightly Image
|
|
101
|
+
uses: docker/build-push-action@v7.2.0
|
|
102
|
+
with:
|
|
103
|
+
context: .
|
|
104
|
+
platforms: linux/amd64,linux/arm64
|
|
105
|
+
push: true
|
|
106
|
+
tags: ${{ steps.test-tags.outputs.tags }}
|
|
107
|
+
|
|
108
|
+
- name: Post build notifications
|
|
109
|
+
run: echo "Test Docker image has been built and pushed successfully"
|
|
110
|
+
|
|
111
|
+
build-release-image:
|
|
112
|
+
if: github.repository == 'AstrBotDevs/AstrBot' && (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')))
|
|
113
|
+
runs-on: ubuntu-latest
|
|
114
|
+
env:
|
|
115
|
+
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
116
|
+
GHCR_OWNER: astrbotdevs
|
|
117
|
+
HAS_GHCR_TOKEN: ${{ secrets.GHCR_GITHUB_TOKEN != '' }}
|
|
118
|
+
|
|
119
|
+
steps:
|
|
120
|
+
- name: Checkout
|
|
121
|
+
uses: actions/checkout@v6
|
|
122
|
+
with:
|
|
123
|
+
fetch-depth: 1
|
|
124
|
+
fetch-tag: true
|
|
125
|
+
|
|
126
|
+
- name: Get latest tag (only on manual trigger)
|
|
127
|
+
id: get-latest-tag
|
|
128
|
+
if: github.event_name == 'workflow_dispatch'
|
|
129
|
+
run: |
|
|
130
|
+
tag=$(git describe --tags --abbrev=0)
|
|
131
|
+
echo "latest_tag=$tag" >> $GITHUB_OUTPUT
|
|
132
|
+
|
|
133
|
+
- name: Checkout to latest tag (only on manual trigger)
|
|
134
|
+
if: github.event_name == 'workflow_dispatch'
|
|
135
|
+
run: git checkout ${{ steps.get-latest-tag.outputs.latest_tag }}
|
|
136
|
+
|
|
137
|
+
- name: Compute release metadata
|
|
138
|
+
id: release-meta
|
|
139
|
+
run: |
|
|
140
|
+
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
|
|
141
|
+
version="${{ steps.get-latest-tag.outputs.latest_tag }}"
|
|
142
|
+
else
|
|
143
|
+
version="${GITHUB_REF#refs/tags/}"
|
|
144
|
+
fi
|
|
145
|
+
if [[ "$version" == *"beta"* ]] || [[ "$version" == *"alpha"* ]]; then
|
|
146
|
+
echo "is_prerelease=true" >> $GITHUB_OUTPUT
|
|
147
|
+
echo "Version $version marked as pre-release"
|
|
148
|
+
else
|
|
149
|
+
echo "is_prerelease=false" >> $GITHUB_OUTPUT
|
|
150
|
+
echo "Version $version marked as stable"
|
|
151
|
+
fi
|
|
152
|
+
echo "version=$version" >> $GITHUB_OUTPUT
|
|
153
|
+
|
|
154
|
+
- name: Build Dashboard
|
|
155
|
+
run: |
|
|
156
|
+
cd dashboard
|
|
157
|
+
npm install
|
|
158
|
+
npm run build
|
|
159
|
+
mkdir -p dist/assets
|
|
160
|
+
echo $(git rev-parse HEAD) > dist/assets/version
|
|
161
|
+
cd ..
|
|
162
|
+
mkdir -p data
|
|
163
|
+
cp -r dashboard/dist data/
|
|
164
|
+
|
|
165
|
+
- name: Set QEMU
|
|
166
|
+
uses: docker/setup-qemu-action@v4.0.0
|
|
167
|
+
|
|
168
|
+
- name: Set Docker Buildx
|
|
169
|
+
uses: docker/setup-buildx-action@v4.1.0
|
|
170
|
+
|
|
171
|
+
- name: Log in to DockerHub
|
|
172
|
+
uses: docker/login-action@v4.2.0
|
|
173
|
+
with:
|
|
174
|
+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
175
|
+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
|
176
|
+
|
|
177
|
+
- name: Login to GitHub Container Registry
|
|
178
|
+
if: env.HAS_GHCR_TOKEN == 'true'
|
|
179
|
+
uses: docker/login-action@v4.2.0
|
|
180
|
+
with:
|
|
181
|
+
registry: ghcr.io
|
|
182
|
+
username: ${{ env.GHCR_OWNER }}
|
|
183
|
+
password: ${{ secrets.GHCR_GITHUB_TOKEN }}
|
|
184
|
+
|
|
185
|
+
- name: Build and Push Release Image
|
|
186
|
+
uses: docker/build-push-action@v7.2.0
|
|
187
|
+
with:
|
|
188
|
+
context: .
|
|
189
|
+
platforms: linux/amd64,linux/arm64
|
|
190
|
+
push: true
|
|
191
|
+
tags: |
|
|
192
|
+
${{ steps.release-meta.outputs.is_prerelease == 'false' && format('{0}/astrbot:latest', env.DOCKER_HUB_USERNAME) || '' }}
|
|
193
|
+
${{ steps.release-meta.outputs.is_prerelease == 'false' && env.HAS_GHCR_TOKEN == 'true' && format('ghcr.io/{0}/astrbot:latest', env.GHCR_OWNER) || '' }}
|
|
194
|
+
${{ format('{0}/astrbot:{1}', env.DOCKER_HUB_USERNAME, steps.release-meta.outputs.version) }}
|
|
195
|
+
${{ env.HAS_GHCR_TOKEN == 'true' && format('ghcr.io/{0}/astrbot:{1}', env.GHCR_OWNER, steps.release-meta.outputs.version) || '' }}
|
|
196
|
+
|
|
197
|
+
- name: Post build notifications
|
|
198
|
+
run: echo "Release Docker image has been built and pushed successfully"
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
inputs:
|
|
9
|
+
ref:
|
|
10
|
+
description: "Git ref to build (branch/tag/SHA)"
|
|
11
|
+
required: false
|
|
12
|
+
default: "master"
|
|
13
|
+
tag:
|
|
14
|
+
description: "Release tag to publish assets to (for example: v4.14.6)"
|
|
15
|
+
required: false
|
|
16
|
+
|
|
17
|
+
permissions:
|
|
18
|
+
contents: write
|
|
19
|
+
|
|
20
|
+
jobs:
|
|
21
|
+
build-dashboard:
|
|
22
|
+
name: Build Dashboard
|
|
23
|
+
if: github.repository == 'AstrBotDevs/AstrBot'
|
|
24
|
+
runs-on: ubuntu-24.04
|
|
25
|
+
env:
|
|
26
|
+
R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}
|
|
27
|
+
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
|
|
28
|
+
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
|
|
29
|
+
steps:
|
|
30
|
+
- name: Checkout repository
|
|
31
|
+
uses: actions/checkout@v6
|
|
32
|
+
with:
|
|
33
|
+
fetch-depth: 0
|
|
34
|
+
ref: ${{ inputs.ref || github.ref }}
|
|
35
|
+
|
|
36
|
+
- name: Resolve tag
|
|
37
|
+
id: tag
|
|
38
|
+
shell: bash
|
|
39
|
+
run: |
|
|
40
|
+
if [ "${{ github.event_name }}" = "push" ]; then
|
|
41
|
+
tag="${GITHUB_REF_NAME}"
|
|
42
|
+
elif [ -n "${{ inputs.tag }}" ]; then
|
|
43
|
+
tag="${{ inputs.tag }}"
|
|
44
|
+
else
|
|
45
|
+
tag="$(git describe --tags --abbrev=0)"
|
|
46
|
+
fi
|
|
47
|
+
if [ -z "$tag" ]; then
|
|
48
|
+
echo "Failed to resolve tag." >&2
|
|
49
|
+
exit 1
|
|
50
|
+
fi
|
|
51
|
+
echo "tag=$tag" >> "$GITHUB_OUTPUT"
|
|
52
|
+
|
|
53
|
+
- name: Setup pnpm
|
|
54
|
+
uses: pnpm/action-setup@v6.0.8
|
|
55
|
+
with:
|
|
56
|
+
version: 10.28.2
|
|
57
|
+
|
|
58
|
+
- name: Setup Node.js
|
|
59
|
+
uses: actions/setup-node@v6
|
|
60
|
+
with:
|
|
61
|
+
node-version: '24.13.0'
|
|
62
|
+
cache: "pnpm"
|
|
63
|
+
cache-dependency-path: dashboard/pnpm-lock.yaml
|
|
64
|
+
|
|
65
|
+
- name: Build dashboard dist
|
|
66
|
+
shell: bash
|
|
67
|
+
working-directory: dashboard
|
|
68
|
+
run: |
|
|
69
|
+
pnpm install --frozen-lockfile
|
|
70
|
+
pnpm run build
|
|
71
|
+
echo "${{ steps.tag.outputs.tag }}" > dist/assets/version
|
|
72
|
+
zip -r "AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip" dist
|
|
73
|
+
|
|
74
|
+
- name: Upload dashboard artifact
|
|
75
|
+
uses: actions/upload-artifact@v7
|
|
76
|
+
with:
|
|
77
|
+
name: Dashboard-${{ steps.tag.outputs.tag }}
|
|
78
|
+
if-no-files-found: error
|
|
79
|
+
path: dashboard/AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip
|
|
80
|
+
|
|
81
|
+
- name: Upload dashboard package to Cloudflare R2
|
|
82
|
+
if: ${{ env.R2_ACCOUNT_ID != '' && env.R2_ACCESS_KEY_ID != '' && env.R2_SECRET_ACCESS_KEY != '' }}
|
|
83
|
+
env:
|
|
84
|
+
R2_BUCKET_NAME: "astrbot"
|
|
85
|
+
R2_OBJECT_NAME: "astrbot-webui-latest.zip"
|
|
86
|
+
VERSION_TAG: ${{ steps.tag.outputs.tag }}
|
|
87
|
+
shell: bash
|
|
88
|
+
run: |
|
|
89
|
+
curl https://rclone.org/install.sh | sudo bash
|
|
90
|
+
|
|
91
|
+
mkdir -p ~/.config/rclone
|
|
92
|
+
cat <<EOF > ~/.config/rclone/rclone.conf
|
|
93
|
+
[r2]
|
|
94
|
+
type = s3
|
|
95
|
+
provider = Cloudflare
|
|
96
|
+
access_key_id = $R2_ACCESS_KEY_ID
|
|
97
|
+
secret_access_key = $R2_SECRET_ACCESS_KEY
|
|
98
|
+
endpoint = https://${R2_ACCOUNT_ID}.r2.cloudflarestorage.com
|
|
99
|
+
EOF
|
|
100
|
+
|
|
101
|
+
cp "dashboard/AstrBot-${VERSION_TAG}-dashboard.zip" "dashboard/${R2_OBJECT_NAME}"
|
|
102
|
+
rclone copy "dashboard/${R2_OBJECT_NAME}" "r2:${R2_BUCKET_NAME}" --progress
|
|
103
|
+
cp "dashboard/AstrBot-${VERSION_TAG}-dashboard.zip" "dashboard/astrbot-webui-${VERSION_TAG}.zip"
|
|
104
|
+
rclone copy "dashboard/astrbot-webui-${VERSION_TAG}.zip" "r2:${R2_BUCKET_NAME}" --progress
|
|
105
|
+
|
|
106
|
+
publish-release:
|
|
107
|
+
name: Publish GitHub Release
|
|
108
|
+
if: github.repository == 'AstrBotDevs/AstrBot'
|
|
109
|
+
runs-on: ubuntu-24.04
|
|
110
|
+
needs:
|
|
111
|
+
- build-dashboard
|
|
112
|
+
steps:
|
|
113
|
+
- name: Checkout repository
|
|
114
|
+
uses: actions/checkout@v6
|
|
115
|
+
with:
|
|
116
|
+
fetch-depth: 0
|
|
117
|
+
ref: ${{ inputs.ref || github.ref }}
|
|
118
|
+
|
|
119
|
+
- name: Resolve tag
|
|
120
|
+
id: tag
|
|
121
|
+
shell: bash
|
|
122
|
+
run: |
|
|
123
|
+
if [ "${{ github.event_name }}" = "push" ]; then
|
|
124
|
+
tag="${GITHUB_REF_NAME}"
|
|
125
|
+
elif [ -n "${{ inputs.tag }}" ]; then
|
|
126
|
+
tag="${{ inputs.tag }}"
|
|
127
|
+
else
|
|
128
|
+
tag="$(git describe --tags --abbrev=0)"
|
|
129
|
+
fi
|
|
130
|
+
if [ -z "$tag" ]; then
|
|
131
|
+
echo "Failed to resolve tag." >&2
|
|
132
|
+
exit 1
|
|
133
|
+
fi
|
|
134
|
+
echo "tag=$tag" >> "$GITHUB_OUTPUT"
|
|
135
|
+
|
|
136
|
+
- name: Download dashboard artifact
|
|
137
|
+
uses: actions/download-artifact@v8
|
|
138
|
+
with:
|
|
139
|
+
name: Dashboard-${{ steps.tag.outputs.tag }}
|
|
140
|
+
path: release-assets
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
- name: Resolve release notes
|
|
144
|
+
id: notes
|
|
145
|
+
shell: bash
|
|
146
|
+
run: |
|
|
147
|
+
note_file="changelogs/${{ steps.tag.outputs.tag }}.md"
|
|
148
|
+
if [ ! -f "$note_file" ]; then
|
|
149
|
+
note_file="$(mktemp)"
|
|
150
|
+
echo "Release ${{ steps.tag.outputs.tag }}" > "$note_file"
|
|
151
|
+
fi
|
|
152
|
+
echo "file=$note_file" >> "$GITHUB_OUTPUT"
|
|
153
|
+
|
|
154
|
+
- name: Ensure release exists
|
|
155
|
+
env:
|
|
156
|
+
GH_TOKEN: ${{ github.token }}
|
|
157
|
+
shell: bash
|
|
158
|
+
run: |
|
|
159
|
+
tag="${{ steps.tag.outputs.tag }}"
|
|
160
|
+
if ! gh release view "$tag" >/dev/null 2>&1; then
|
|
161
|
+
gh release create "$tag" --title "$tag" --notes-file "${{ steps.notes.outputs.file }}"
|
|
162
|
+
fi
|
|
163
|
+
|
|
164
|
+
- name: Remove stale assets from release
|
|
165
|
+
env:
|
|
166
|
+
GH_TOKEN: ${{ github.token }}
|
|
167
|
+
shell: bash
|
|
168
|
+
run: |
|
|
169
|
+
tag="${{ steps.tag.outputs.tag }}"
|
|
170
|
+
while IFS= read -r asset; do
|
|
171
|
+
case "$asset" in
|
|
172
|
+
*.AppImage|*.dmg|*.zip|*.exe|*.blockmap)
|
|
173
|
+
gh release delete-asset "$tag" "$asset" -y || true
|
|
174
|
+
;;
|
|
175
|
+
esac
|
|
176
|
+
done < <(gh release view "$tag" --json assets --jq '.assets[].name')
|
|
177
|
+
|
|
178
|
+
- name: Upload assets to release
|
|
179
|
+
env:
|
|
180
|
+
GH_TOKEN: ${{ github.token }}
|
|
181
|
+
shell: bash
|
|
182
|
+
run: |
|
|
183
|
+
tag="${{ steps.tag.outputs.tag }}"
|
|
184
|
+
gh release upload "$tag" release-assets/* --clobber
|
|
185
|
+
|
|
186
|
+
publish-pypi:
|
|
187
|
+
name: Publish PyPI
|
|
188
|
+
if: github.repository == 'AstrBotDevs/AstrBot'
|
|
189
|
+
runs-on: ubuntu-24.04
|
|
190
|
+
needs:
|
|
191
|
+
- publish-release
|
|
192
|
+
steps:
|
|
193
|
+
- name: Checkout repository
|
|
194
|
+
uses: actions/checkout@v6
|
|
195
|
+
with:
|
|
196
|
+
fetch-depth: 0
|
|
197
|
+
ref: ${{ inputs.ref || github.ref }}
|
|
198
|
+
|
|
199
|
+
- name: Resolve tag
|
|
200
|
+
id: tag
|
|
201
|
+
shell: bash
|
|
202
|
+
run: |
|
|
203
|
+
if [ "${{ github.event_name }}" = "push" ]; then
|
|
204
|
+
tag="${GITHUB_REF_NAME}"
|
|
205
|
+
elif [ -n "${{ inputs.tag }}" ]; then
|
|
206
|
+
tag="${{ inputs.tag }}"
|
|
207
|
+
else
|
|
208
|
+
tag="$(git describe --tags --abbrev=0)"
|
|
209
|
+
fi
|
|
210
|
+
if [ -z "$tag" ]; then
|
|
211
|
+
echo "Failed to resolve tag." >&2
|
|
212
|
+
exit 1
|
|
213
|
+
fi
|
|
214
|
+
echo "tag=$tag" >> "$GITHUB_OUTPUT"
|
|
215
|
+
|
|
216
|
+
- name: Download dashboard artifact
|
|
217
|
+
uses: actions/download-artifact@v8
|
|
218
|
+
with:
|
|
219
|
+
name: Dashboard-${{ steps.tag.outputs.tag }}
|
|
220
|
+
path: dashboard-artifact
|
|
221
|
+
|
|
222
|
+
- name: Unpack dashboard dist into package tree
|
|
223
|
+
shell: bash
|
|
224
|
+
run: |
|
|
225
|
+
mkdir -p astrbot/dashboard/dist
|
|
226
|
+
unzip -q "dashboard-artifact/AstrBot-${{ steps.tag.outputs.tag }}-dashboard.zip" -d dashboard-artifact/unpacked
|
|
227
|
+
cp -r dashboard-artifact/unpacked/dist/. astrbot/dashboard/dist/
|
|
228
|
+
|
|
229
|
+
- name: Set up Python
|
|
230
|
+
uses: actions/setup-python@v6
|
|
231
|
+
with:
|
|
232
|
+
python-version: "3.10"
|
|
233
|
+
|
|
234
|
+
- name: Install uv
|
|
235
|
+
shell: bash
|
|
236
|
+
run: python -m pip install uv
|
|
237
|
+
|
|
238
|
+
- name: Build package
|
|
239
|
+
shell: bash
|
|
240
|
+
# Dashboard assets are already in astrbot/dashboard/dist/;
|
|
241
|
+
# ASTRBOT_BUILD_DASHBOARD is intentionally unset so the hatch hook skips npm.
|
|
242
|
+
run: uv build
|
|
243
|
+
|
|
244
|
+
- name: Publish to PyPI
|
|
245
|
+
env:
|
|
246
|
+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
|
247
|
+
shell: bash
|
|
248
|
+
run: uv publish
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## Welcome to AstrBot
|
|
2
|
+
|
|
3
|
+
🌟 Thank you for using AstrBot!
|
|
4
|
+
|
|
5
|
+
AstrBot is an Agentic AI assistant for personal and group chats, with support for multiple IM platforms and a wide range of built-in features. We hope it brings you an efficient and enjoyable experience. ❤️
|
|
6
|
+
|
|
7
|
+
Important notice:
|
|
8
|
+
|
|
9
|
+
AstrBot is a **free and open-source software project** protected by the AGPLv3 license. You can find the full source code and related resources on our [**official website**](https://astrbot.app) and [**GitHub**](https://github.com/astrbotdevs/astrbot).
|
|
10
|
+
As of now, AstrBot has **no commercial services of any kind**, and the official team **will never charge users any fees** under any name.
|
|
11
|
+
|
|
12
|
+
If anyone asks you to pay while using AstrBot, **you are likely being scammed**. Please request a refund immediately and report it to us by email.
|
|
13
|
+
|
|
14
|
+
📊 Please read the [End User License Agreement](https://github.com/AstrBotDevs/AstrBot/blob/master/EULA.md) carefully before using this project. By installing, you agree to all its contents.
|
|
15
|
+
|
|
16
|
+
📮 Official email: [community@astrbot.app](mailto:community@astrbot.app)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## 欢迎使用 AstrBot
|
|
2
|
+
|
|
3
|
+
🌟 感谢您使用 AstrBot!
|
|
4
|
+
|
|
5
|
+
AstrBot 是一款可接入多种 IM 平台的 Agentic AI 个人 / 群聊助手,内置多项强大功能,希望能为您带来高效、愉快的使用体验。❤️
|
|
6
|
+
|
|
7
|
+
我们想特别说明:
|
|
8
|
+
|
|
9
|
+
AstrBot 是受 AGPLv3 开源协议保护的**免费开源软件项目**,您可以在[**官方网站**](https://astrbot.app)、[**GitHub**](https://github.com/astrbotdevs/astrbot) 上找到 AstrBot 的全部源代码及相关资源。
|
|
10
|
+
截至目前,AstrBot 项目**未开展任何形式的商业化服务**,官方**不会以任何名义向用户收取费用**。
|
|
11
|
+
|
|
12
|
+
如果您在使用 AstrBot 的过程中被要求付费,**表明您已经遭遇诈骗行为**。请立即向相关方申请退款,并及时通过邮件向我们反馈。
|
|
13
|
+
|
|
14
|
+
📊 在使用本项目之前,请仔细阅读 [最终用户许可协议](https://github.com/AstrBotDevs/AstrBot/blob/master/EULA.md)。安装即表示您已阅读并同意其中的全部内容。
|
|
15
|
+
|
|
16
|
+
📮 官方邮箱:[community@astrbot.app](mailto:community@astrbot.app)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## Добро пожаловать в AstrBot
|
|
2
|
+
|
|
3
|
+
🌟 Спасибо, что используете AstrBot!
|
|
4
|
+
|
|
5
|
+
AstrBot — это Agentic AI-ассистент для личных и групповых чатов с поддержкой множества IM-платформ и широким набором встроенных функций. Надеемся, что он сделает ваше общение эффективным и приятным. ❤️
|
|
6
|
+
|
|
7
|
+
Важное уведомление:
|
|
8
|
+
|
|
9
|
+
AstrBot — это **бесплатный проект с открытым исходным кодом**, защищённый лицензией AGPLv3. Полный исходный код и связанные ресурсы доступны на [**официальном сайте**](https://astrbot.app) и [**GitHub**](https://github.com/astrbotdevs/astrbot).
|
|
10
|
+
На данный момент AstrBot **не предоставляет никаких коммерческих услуг**, и официальная команда **никогда не будет взимать плату с пользователей** под каким-либо названием.
|
|
11
|
+
|
|
12
|
+
Если кто-то просит вас заплатить при использовании AstrBot, **вас, скорее всего, пытаются обмануть**. Немедленно запросите возврат средств и сообщите нам по электронной почте.
|
|
13
|
+
|
|
14
|
+
📊 Пожалуйста, внимательно прочитайте [Лицензионное соглашение](https://github.com/AstrBotDevs/AstrBot/blob/master/EULA.md) перед использованием. Устанавливая программу, вы соглашаетесь со всеми его условиями.
|
|
15
|
+
|
|
16
|
+
📮 Официальная почта: [community@astrbot.app](mailto:community@astrbot.app)
|