AstrBot 4.23.2__tar.gz → 4.23.5__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.23.5/PKG-INFO +353 -0
- astrbot-4.23.5/astrbot/builtin_stars/builtin_commands/commands/__init__.py +17 -0
- astrbot-4.23.5/astrbot/builtin_stars/builtin_commands/commands/provider.py +248 -0
- astrbot-4.23.5/astrbot/builtin_stars/builtin_commands/main.py +75 -0
- astrbot-4.23.5/astrbot/cli/__init__.py +1 -0
- astrbot-4.23.5/astrbot/cli/commands/cmd_plug.py +253 -0
- astrbot-4.23.5/astrbot/core/agent/mcp_client.py +674 -0
- astrbot-4.23.5/astrbot/core/agent/message.py +337 -0
- astrbot-4.23.5/astrbot/core/agent/runners/coze/coze_agent_runner.py +370 -0
- astrbot-4.23.5/astrbot/core/agent/runners/tool_loop_agent_runner.py +1433 -0
- astrbot-4.23.5/astrbot/core/astr_agent_run_util.py +600 -0
- astrbot-4.23.5/astrbot/core/astr_main_agent.py +1405 -0
- astrbot-4.23.5/astrbot/core/backup/constants.py +85 -0
- astrbot-4.23.5/astrbot/core/backup/importer.py +973 -0
- astrbot-4.23.5/astrbot/core/computer/file_read_utils.py +744 -0
- astrbot-4.23.5/astrbot/core/config/default.py +4206 -0
- astrbot-4.23.5/astrbot/core/db/__init__.py +879 -0
- astrbot-4.23.5/astrbot/core/db/po.py +556 -0
- astrbot-4.23.5/astrbot/core/db/sqlite.py +2103 -0
- astrbot-4.23.5/astrbot/core/db/vec_db/faiss_impl/document_storage.py +804 -0
- astrbot-4.23.5/astrbot/core/knowledge_base/kb_helper.py +750 -0
- astrbot-4.23.5/astrbot/core/knowledge_base/parsers/__init__.py +15 -0
- astrbot-4.23.5/astrbot/core/knowledge_base/parsers/epub_parser.py +162 -0
- astrbot-4.23.5/astrbot/core/knowledge_base/parsers/util.py +17 -0
- astrbot-4.23.5/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +538 -0
- astrbot-4.23.5/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +684 -0
- astrbot-4.23.5/astrbot/core/platform/sources/webchat/webchat_adapter.py +261 -0
- astrbot-4.23.5/astrbot/core/platform_message_history_mgr.py +70 -0
- astrbot-4.23.5/astrbot/core/provider/entities.py +497 -0
- astrbot-4.23.5/astrbot/core/provider/modalities.py +158 -0
- astrbot-4.23.5/astrbot/core/provider/provider.py +427 -0
- astrbot-4.23.5/astrbot/core/provider/sources/anthropic_source.py +776 -0
- astrbot-4.23.5/astrbot/core/provider/sources/minimax_token_plan_source.py +63 -0
- astrbot-4.23.5/astrbot/core/provider/sources/openai_source.py +1363 -0
- astrbot-4.23.5/astrbot/core/star/config.py +84 -0
- astrbot-4.23.5/astrbot/core/star/filter/platform_adapter_type.py +74 -0
- astrbot-4.23.5/astrbot/core/star/filter/regex.py +18 -0
- astrbot-4.23.5/astrbot/core/star/register/star_handler.py +739 -0
- astrbot-4.23.5/astrbot/core/tools/computer_tools/fs.py +749 -0
- astrbot-4.23.5/astrbot/core/utils/network_utils.py +116 -0
- astrbot-4.23.5/astrbot/core/utils/t2i/renderer.py +61 -0
- astrbot-4.23.5/astrbot/dashboard/routes/chat.py +1686 -0
- astrbot-4.23.5/astrbot/dashboard/routes/live_chat.py +920 -0
- astrbot-4.23.5/astrbot/dashboard/routes/open_api.py +663 -0
- astrbot-4.23.5/changelogs/v4.23.5.md +63 -0
- astrbot-4.23.5/dashboard/src/components/chat/Chat.vue +1660 -0
- astrbot-4.23.5/dashboard/src/components/chat/ChatInput.vue +1042 -0
- astrbot-4.23.5/dashboard/src/components/chat/ChatMessageList.vue +1421 -0
- astrbot-4.23.5/dashboard/src/components/chat/MessageList.vue +814 -0
- astrbot-4.23.5/dashboard/src/components/chat/ProviderModelMenu.vue +244 -0
- astrbot-4.23.5/dashboard/src/components/chat/ReasoningSidebar.vue +119 -0
- astrbot-4.23.5/dashboard/src/components/chat/RegenerateMenu.vue +237 -0
- astrbot-4.23.5/dashboard/src/components/chat/StandaloneChat.vue +642 -0
- astrbot-4.23.5/dashboard/src/components/chat/ThreadPanel.vue +484 -0
- astrbot-4.23.5/dashboard/src/components/chat/ThreadedMarkdownMessagePart.vue +89 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/ActionRef.vue +131 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/IPythonToolBlock.vue +216 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/ReasoningBlock.vue +317 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/ReasoningTimeline.vue +265 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/RefsSidebar.vue +263 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/ThreadNode.vue +63 -0
- astrbot-4.23.5/dashboard/src/components/chat/message_list_comps/ToolCallItem.vue +77 -0
- astrbot-4.23.5/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +180 -0
- astrbot-4.23.5/dashboard/src/components/shared/StyledMenu.vue +92 -0
- astrbot-4.23.5/dashboard/src/composables/useMediaHandling.ts +200 -0
- astrbot-4.23.5/dashboard/src/composables/useMessages.ts +1032 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +155 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/en-US/features/chat.json +179 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/en-US/features/config-metadata.json +1648 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/en-US/features/extension.json +369 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +118 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/ru-RU/features/chat.json +169 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/ru-RU/features/config-metadata.json +1645 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/ru-RU/features/extension.json +368 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/detail.json +118 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +155 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/zh-CN/features/chat.json +179 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +1650 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/zh-CN/features/extension.json +372 -0
- astrbot-4.23.5/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +118 -0
- astrbot-4.23.5/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +423 -0
- astrbot-4.23.5/dashboard/src/views/SessionManagementPage.vue +1630 -0
- astrbot-4.23.5/dashboard/src/views/alkaid/KnowledgeBase.vue +1388 -0
- astrbot-4.23.5/dashboard/src/views/extension/InstalledPluginsTab.vue +991 -0
- astrbot-4.23.5/dashboard/src/views/extension/extensionPreferenceStorage.mjs +84 -0
- astrbot-4.23.5/dashboard/src/views/extension/useExtensionPage.js +1831 -0
- astrbot-4.23.5/dashboard/src/views/knowledge-base/DocumentDetail.vue +517 -0
- astrbot-4.23.5/dashboard/src/views/knowledge-base/KBList.vue +691 -0
- astrbot-4.23.5/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +874 -0
- astrbot-4.23.5/dashboard/tests/extensionPreferenceStorage.test.mjs +75 -0
- astrbot-4.23.5/dashboard-artifact/AstrBot-v4.23.5-dashboard.zip +0 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/AboutPage-CeQKET9N.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ActionRef-3Xdm2cI_.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ActionRef-BoqPX7gb.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-D36JMQpq.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-BIQDbN22.js +16 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/BlankLayout-D8dQkKh_.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/Chat-CqsglkmB.js +11 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/Chat-DSp1fahy.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-BMjoE-CY.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ChatPage-Do1D7S5R.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConfigPage-CzJz2iYj.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConfigPage-TjF-326P.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-CHUW65-L.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConsolePage-BgIxqcQs.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConversationPage-0CYjjW1l.js +30 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ConversationPage-DuU0kiYI.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/CronJobPage-BEFsNvP3.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/DocumentDetail-B_HEORz7.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/DocumentDetail-mm_OJAtq.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ExtensionPage-CD5hhEgc.js +3 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ExtensionPage-G6qfdEro.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/FullLayout-BlqePg5L.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/FullLayout-DBXBbLxA.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KBDetail-B66qzfki.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KBDetail-WlQ1e1PQ.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KBList-BvHI56sh.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KBList-DMH-k2Bt.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-CLnU_S1d.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-DOYGUnUZ.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/LoginPage-O3MYuL2q.js +5 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/MigrationDialog-dsgaQNU_.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/PersonaForm-DM2BmZSZ.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/PersonaPage-BCL_jL2-.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-B-5KiXQJ.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/PlatformPage-CWlJ9WIL.js +8 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-CxkkUonR.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ProxySelector-CK_IIRA0.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-DfsbjneZ.js +8 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-A8MkWHfp.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-BIhL6pfa.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/Settings-DCAYtCvV.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/StatsPage-BjbVHQJF.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/StyledMenu-8exaDaCF.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-Df9Mihaz.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/SubAgentPage-C6e2ojmy.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/Tooltip-C_B7yAFF.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/TracePage-DBVIchsk.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/WelcomePage-rb1y9M0e.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/confirmDialog-CXoJ5pGs.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/cssMode-DoHPZnMT.js +9 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/customizer-DKnRXskR.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/freemarker2-OobCRzUe.js +8 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/handlebars-BI3RMv7k.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/html-Zv_5v-Rw.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/htmlMode-CE9jGaLP.js +9 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-1km93T2H.css +5 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-B_RFLXhv.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-CTNg74I9.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-CqJDWahz.js +1565 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-DsY0Z3ll.js +9 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index-rivKfrCx.js +4 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index2-PJ0czYeT.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index3-DJmU3YVy.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index4-CJdVQFXO.js +22 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index5-1Hdw6qET.js +4 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/index6-DZDvg3kC.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/javascript-BYFiPZSD.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/jsonMode-CJtWSeAg.js +15 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/liquid-D3l8OEe8.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-QIi42Gva.woff +0 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-Xmoxbfuj.woff2 +0 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/md5-JKEMf__7.js +9 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/mdx-xQAJ-m6c.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/mermaid-CGoBwww3.js +2807 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/mhchem-BpvBIrSu.js +261 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/python-CrtHrpz1.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/razor-FUmXvphr.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/restartAstrBot-Bb_SxQXJ.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/shiki-CTSNGX95.js +13 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/tsMode-Dr4h0oY4.js +16 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/typescript-CskapdBT.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/useMediaHandling-CAPzc07g.js +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DkBa5OwE.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/useMessages-3ioXzeqj.css +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/useMessages-BWCoGZgH.js +361 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/version +1 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/vue-i18n-Don3AbNJ.js +19 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/xml-LjPQyYG1.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/assets/yaml-DyyL4dJR.js +6 -0
- astrbot-4.23.5/dashboard-artifact/unpacked/dist/index.html +21 -0
- astrbot-4.23.5/docs/en/use/webui.md +96 -0
- astrbot-4.23.5/docs/zh/use/webui.md +96 -0
- astrbot-4.23.5/pyproject.toml +131 -0
- astrbot-4.23.5/requirements.txt +56 -0
- astrbot-4.23.5/tests/test_computer_fs_tools.py +402 -0
- astrbot-4.23.5/tests/test_conversation_checkpoint.py +110 -0
- astrbot-4.23.5/tests/test_epub_parser.py +211 -0
- astrbot-4.23.5/tests/test_tool_loop_agent_runner.py +1655 -0
- astrbot-4.23.5/tests/unit/test_astr_main_agent.py +1644 -0
- astrbot-4.23.5/tests/unit/test_document_storage_fts.py +103 -0
- astrbot-4.23.5/tests/unit/test_mcp_client_schema.py +117 -0
- astrbot-4.23.5/tests/unit/test_network_utils.py +51 -0
- astrbot-4.23.2/PKG-INFO +0 -353
- astrbot-4.23.2/astrbot/builtin_stars/builtin_commands/commands/__init__.py +0 -15
- astrbot-4.23.2/astrbot/builtin_stars/builtin_commands/main.py +0 -62
- astrbot-4.23.2/astrbot/cli/__init__.py +0 -1
- astrbot-4.23.2/astrbot/cli/commands/cmd_plug.py +0 -253
- astrbot-4.23.2/astrbot/core/agent/mcp_client.py +0 -618
- astrbot-4.23.2/astrbot/core/agent/message.py +0 -233
- astrbot-4.23.2/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -367
- astrbot-4.23.2/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1341
- astrbot-4.23.2/astrbot/core/astr_agent_run_util.py +0 -529
- astrbot-4.23.2/astrbot/core/astr_main_agent.py +0 -1495
- astrbot-4.23.2/astrbot/core/backup/constants.py +0 -83
- astrbot-4.23.2/astrbot/core/backup/importer.py +0 -946
- astrbot-4.23.2/astrbot/core/computer/file_read_utils.py +0 -707
- astrbot-4.23.2/astrbot/core/config/default.py +0 -4193
- astrbot-4.23.2/astrbot/core/db/__init__.py +0 -800
- astrbot-4.23.2/astrbot/core/db/po.py +0 -525
- astrbot-4.23.2/astrbot/core/db/sqlite.py +0 -1914
- astrbot-4.23.2/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -748
- astrbot-4.23.2/astrbot/core/knowledge_base/kb_helper.py +0 -743
- astrbot-4.23.2/astrbot/core/knowledge_base/parsers/__init__.py +0 -13
- astrbot-4.23.2/astrbot/core/knowledge_base/parsers/util.py +0 -13
- astrbot-4.23.2/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +0 -517
- astrbot-4.23.2/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -682
- astrbot-4.23.2/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -257
- astrbot-4.23.2/astrbot/core/platform_message_history_mgr.py +0 -51
- astrbot-4.23.2/astrbot/core/provider/entities.py +0 -494
- astrbot-4.23.2/astrbot/core/provider/provider.py +0 -425
- astrbot-4.23.2/astrbot/core/provider/sources/anthropic_source.py +0 -777
- astrbot-4.23.2/astrbot/core/provider/sources/minimax_token_plan_source.py +0 -55
- astrbot-4.23.2/astrbot/core/provider/sources/openai_source.py +0 -1361
- astrbot-4.23.2/astrbot/core/star/config.py +0 -84
- astrbot-4.23.2/astrbot/core/star/filter/platform_adapter_type.py +0 -77
- astrbot-4.23.2/astrbot/core/star/filter/regex.py +0 -18
- astrbot-4.23.2/astrbot/core/star/register/star_handler.py +0 -739
- astrbot-4.23.2/astrbot/core/tools/computer_tools/fs.py +0 -749
- astrbot-4.23.2/astrbot/core/utils/network_utils.py +0 -102
- astrbot-4.23.2/astrbot/core/utils/t2i/renderer.py +0 -61
- astrbot-4.23.2/astrbot/dashboard/routes/chat.py +0 -878
- astrbot-4.23.2/astrbot/dashboard/routes/live_chat.py +0 -942
- astrbot-4.23.2/astrbot/dashboard/routes/open_api.py +0 -676
- astrbot-4.23.2/dashboard/src/components/chat/Chat.vue +0 -2088
- astrbot-4.23.2/dashboard/src/components/chat/ChatInput.vue +0 -824
- astrbot-4.23.2/dashboard/src/components/chat/MessageList.vue +0 -793
- astrbot-4.23.2/dashboard/src/components/chat/ProviderModelMenu.vue +0 -232
- astrbot-4.23.2/dashboard/src/components/chat/StandaloneChat.vue +0 -617
- astrbot-4.23.2/dashboard/src/components/chat/message_list_comps/ActionRef.vue +0 -121
- astrbot-4.23.2/dashboard/src/components/chat/message_list_comps/IPythonToolBlock.vue +0 -214
- astrbot-4.23.2/dashboard/src/components/chat/message_list_comps/ReasoningBlock.vue +0 -288
- astrbot-4.23.2/dashboard/src/components/chat/message_list_comps/RefsSidebar.vue +0 -262
- astrbot-4.23.2/dashboard/src/components/chat/message_list_comps/ToolCallItem.vue +0 -74
- astrbot-4.23.2/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -180
- astrbot-4.23.2/dashboard/src/components/shared/StyledMenu.vue +0 -77
- astrbot-4.23.2/dashboard/src/composables/useMediaHandling.ts +0 -184
- astrbot-4.23.2/dashboard/src/composables/useMessages.ts +0 -652
- astrbot-4.23.2/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -155
- astrbot-4.23.2/dashboard/src/i18n/locales/en-US/features/chat.json +0 -165
- astrbot-4.23.2/dashboard/src/i18n/locales/en-US/features/config-metadata.json +0 -1644
- astrbot-4.23.2/dashboard/src/i18n/locales/en-US/features/extension.json +0 -368
- astrbot-4.23.2/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -118
- astrbot-4.23.2/dashboard/src/i18n/locales/ru-RU/features/chat.json +0 -155
- astrbot-4.23.2/dashboard/src/i18n/locales/ru-RU/features/config-metadata.json +0 -1641
- astrbot-4.23.2/dashboard/src/i18n/locales/ru-RU/features/extension.json +0 -367
- astrbot-4.23.2/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/detail.json +0 -118
- astrbot-4.23.2/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -155
- astrbot-4.23.2/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -165
- astrbot-4.23.2/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +0 -1646
- astrbot-4.23.2/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -371
- astrbot-4.23.2/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -118
- astrbot-4.23.2/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -423
- astrbot-4.23.2/dashboard/src/views/SessionManagementPage.vue +0 -1630
- astrbot-4.23.2/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -1389
- astrbot-4.23.2/dashboard/src/views/extension/InstalledPluginsTab.vue +0 -981
- astrbot-4.23.2/dashboard/src/views/extension/useExtensionPage.js +0 -1809
- astrbot-4.23.2/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -515
- astrbot-4.23.2/dashboard/src/views/knowledge-base/KBList.vue +0 -691
- astrbot-4.23.2/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -875
- astrbot-4.23.2/dashboard-artifact/AstrBot-v4.23.2-dashboard.zip +0 -0
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AboutPage-ZGzmcG4o.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ActionRef-C9xiML8m.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ActionRef-DFruOpYV.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-B7VI4y3Q.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-BU5vaql8.js +0 -16
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/BlankLayout-CL3q1prg.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Chat-Bcqw7YIk.js +0 -2
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Chat-Bo7t-53f.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-DdsIQYRq.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ChatPage-h7vq9EnA.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConfigPage-ytl-2uy7.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConfigPage-zA3-zwEW.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-Bj065Qm0.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConsolePage-HkO88R87.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConversationPage-Bm0CAByq.js +0 -30
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ConversationPage-CWoOM03x.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/CronJobPage-_rb1GF1U.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/DocumentDetail--dSc99Vm.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/DocumentDetail-DFu0yq8L.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ExtensionPage-Bo2tWDHt.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ExtensionPage-MvenJqU-.js +0 -3
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/FullLayout-BWgw9saq.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/FullLayout-DzpKN_Dm.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBDetail-ClzUZeBI.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBDetail-DV0laQf1.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBList-BB1wzeNc.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KBList-KD4CI8Lk.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-BSBG80Mm.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/KnowledgeBase-qr9OyQqk.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/LoginPage-DOL3Azgf.js +0 -5
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/MigrationDialog-BEeYkcwV.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaForm-BnRLeL_T.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaPage-CKf5xYtr.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-C7Ev13cV.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/PlatformPage-CdqWyzxO.js +0 -8
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-BKl1Ky1V.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ProxySelector-D14dxa8j.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-235nQuvj.js +0 -8
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-CEzWNJ3d.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/SessionManagementPage-Ko0fTdO_.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Settings-BI1S7U2b.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/StatsPage-B53ifwys.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/StyledMenu-DR1uiFzZ.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/StyledMenu.vue_vue_type_style_index_0_lang-PvyM1oJt.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/SubAgentPage-CsOkPuqH.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock-DyVlRfdJ.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/ThemeAwareMarkdownCodeBlock.vue_vue_type_script_setup_true_lang-DY0Z2Nzx.js +0 -349
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/Tooltip-BAuU336x.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/TracePage-DqPbL2HP.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/WelcomePage-BdTSMrPl.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/confirmDialog-u8ZoseUr.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/cssMode-XwIDGFmU.js +0 -9
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/customizer-BLQ62lJl.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/freemarker2-Cdu43O_H.js +0 -8
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/handlebars-DKw6vEg7.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/html-DzYzHWxC.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/htmlMode-6dqySmRq.js +0 -9
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-BKbCjwQn.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-BaNIryD6.js +0 -4
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-CB4UYt2h.js +0 -1565
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-CV1ubCEg.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-DSBeuDGv.css +0 -5
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index-M-s-UjXj.js +0 -9
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index2-D3YQeqmT.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index3-Dxth3oeG.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index4-eO9FSTrw.js +0 -22
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index5-B-pcXz-A.js +0 -4
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/index6-B-Qi4RIf.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/javascript-B6szJy0M.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/jsonMode-CgOlmwEI.js +0 -15
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/liquid-CSpb0Hc_.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-BZxwdIVP.woff +0 -0
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/materialdesignicons-webfont-subset-CGQxIPFh.woff2 +0 -0
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/md5-BzP2wN0h.js +0 -9
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mdx-gtjazTU2.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mermaid-CC-eHTXq.js +0 -2807
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/mhchem-CGt9eKcP.js +0 -261
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/python-DJ1jYaX_.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/razor-DbmUwO8s.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/restartAstrBot-CAtGvx2J.js +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/shiki-d2JWxtr_.js +0 -13
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/tsMode-CrkN5bDG.js +0 -16
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/typescript-CtHDghqL.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DBAyj4S5.css +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/useMediaHandling-DJVHdoYS.js +0 -11
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/version +0 -1
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/vue-i18n-D6lMHCas.js +0 -19
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/xml-1Xk71fdX.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/assets/yaml-BUmBfvoN.js +0 -6
- astrbot-4.23.2/dashboard-artifact/unpacked/dist/index.html +0 -21
- astrbot-4.23.2/docs/en/use/webui.md +0 -79
- astrbot-4.23.2/docs/zh/use/webui.md +0 -79
- astrbot-4.23.2/pyproject.toml +0 -131
- astrbot-4.23.2/requirements.txt +0 -56
- astrbot-4.23.2/tests/test_computer_fs_tools.py +0 -283
- astrbot-4.23.2/tests/test_tool_loop_agent_runner.py +0 -1542
- astrbot-4.23.2/tests/unit/test_astr_main_agent.py +0 -1642
- astrbot-4.23.2/tests/unit/test_document_storage_fts.py +0 -75
- {astrbot-4.23.2 → astrbot-4.23.5}/.dockerignore +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/FUNDING.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/auto_assign.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/copilot-instructions.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/dependabot.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/build-docs.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/pr-title-check.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/release.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/smoke_test.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/stale.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/sync-wiki.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.github/workflows/unit_tests.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.gitignore +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.pre-commit-config.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/.python-version +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/CONTRIBUTING.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/Dockerfile +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/EULA.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/FIRST_NOTICE.en-US.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/FIRST_NOTICE.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/LICENSE +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/Makefile +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README_fr.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README_ja.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README_ru.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README_zh-TW.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/README_zh.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/all.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/message_components.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/astrbot/long_term_memory.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/astrbot/main.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/astrbot/metadata.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/admin.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/conversation.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/help.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/setunset.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/sid.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/builtin_commands/metadata.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/session_controller/main.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/builtin_stars/session_controller/metadata.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/context/compressor.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/context/config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/context/manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/context/token_counter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/context/truncator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/deerflow/constants.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/deerflow/deerflow_agent_runner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/deerflow/deerflow_api_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/deerflow/deerflow_content_mapper.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/deerflow/deerflow_stream_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/agent/tool_image_cache.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/astr_agent_hooks.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/astr_agent_tool_exec.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/astr_main_agent_resources.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/backup/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/backup/exporter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/bay_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/boxlite.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/local.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/shipyard.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/shipyard_neo.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/booters/shipyard_search_file_util.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/computer_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/olayer/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/olayer/browser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/olayer/filesystem.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/olayer/python.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/computer/olayer/shell.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/cron/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/cron/events.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/cron/manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/migra_token_usage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/knowledge_base/retrieval/tokenizer.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/log.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/message/components.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/persona_error_reply.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/bootstrap.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/process_stage/follow_up.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/stage_order.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_roles_record.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/kook/kook_types.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/lark/server.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/line/line_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/line/line_api.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/line/line_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/mattermost/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/mattermost/client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/mattermost/mattermost_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/mattermost/mattermost_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/webchat/message_parts_helper.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_long_connection.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_webhook.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/weixin_oc/weixin_oc_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/weixin_oc/weixin_oc_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/weixin_oc/weixin_oc_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/genie_tts.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/kimi_code_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/longcat_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/mimo_api_common.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/mimo_stt_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/mimo_tts_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/nvidia_rerank_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/oai_aihubmix_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/openrouter_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/xai_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/sentinels.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/skills/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/skills/neo_skill_sync.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/skills/skill_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/README.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/command_management.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/context.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/error_messages.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/star.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/subagent_orchestrator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/python.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/shell.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/shipyard_neo/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/shipyard_neo/browser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/shipyard_neo/neo_skills.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/computer_tools/util.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/cron_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/knowledge_base_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/message_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/registry.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/tools/web_search_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/updator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/active_event_registry.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/config_number.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/core_constraints.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/datetime_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/error_redaction.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/file_extract.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/history_saver.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/http_ssl.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/image_ref_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/llm_metadata.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/media_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/plugin_kv_store.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/chain_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/extractor.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/image_refs.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/image_resolver.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/onebot_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message/settings.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/quoted_message_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/requirements_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/runtime_env.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/storage_cleaner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/string_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/template/astrbot_vitepress.html +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/template/shiki_runtime.iife.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/temp_dir_cleaner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/trace.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/utils/webhook_utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/api_key.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/backup.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/chatui_project.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/command.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/cron.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/knowledge_base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/platform.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/skills.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/subagent.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/routes/util.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/server.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/utils/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/astrbot/utils/http_ssl_common.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.0-alpha.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.0-alpha.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.10.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.11.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.11.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.11.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.11.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.11.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.12.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.12.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.12.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.12.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.12.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.13.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.13.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.13.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.7.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.14.8.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.15.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.16.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.17.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.18.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.18.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.18.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.18.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.19.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.19.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.19.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.19.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.20.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.20.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.21.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.22.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.22.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.22.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.22.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.23.0-beta.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.23.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.23.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.23.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.7.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.7.3.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.7.4.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.8.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.9.0.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.9.1.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/changelogs/v4.9.2.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/compose-with-shipyard.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/compose.yml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/.gitignore +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/LICENSE +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/README.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/env.d.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/index.html +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/package.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/pnpm-lock.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/public/_redirects +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/public/robots.txt +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/scripts/build-t2i-shiki-runtime.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/scripts/subset-mdi-font.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/App.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/loading-seio.webp +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/line.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/matrix.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/mattermost.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/onebot.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/images/xmas-hat.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/mdi-subset/materialdesignicons-subset.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/assets/mdi-subset/materialdesignicons-webfont-subset.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/LiveMode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/LiveOrb.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/MessageListDEPRECATED.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/ProjectDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/ProjectList.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/ProjectView.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/ProviderConfigDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/message_list_comps/MarkdownMessagePart.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/message_list_comps/RefNode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/chat/message_list_comps/ToolCallCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/config/UnsavedChangesConfirmDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/MarketPluginCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/McpServersSection.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/PinnedPluginItem.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/PluginSortControl.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/SkillsSection.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/components/CommandFilters.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/components/CommandTable.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/components/DetailsDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/components/RenameDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/components/ToolTable.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/composables/useCommandActions.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/composables/useCommandFilters.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/composables/useComponentData.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/index.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/extension/componentPanel/types.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseCreateFolderDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseFolderBreadcrumb.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseFolderCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseFolderItemSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseFolderTree.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseFolderTreeNode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseMoveTargetNode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/BaseMoveToFolderDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/README.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/index.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/types.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/folder/useFolderManager.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/provider/ProviderModelsPanel.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/provider/ProviderSourcesPanel.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/BackupDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ChangelogDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ConfigItemRenderer.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/FileConfigItem.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/PersonaQuickPreview.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/PluginPlatformChip.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/QrCodeViewer.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/StorageCleanupPanel.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/TemplateListEditor.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/ThemeAwareMarkdownCodeBlock.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/TraceDisplayer.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useProjects.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useProviderSources.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useRecording.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/composables/useVADRecording.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/config.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/command.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/cron.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/stats.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/subagent.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/trace.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/features/welcome.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/actions.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/common.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/header.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/navigation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/shared.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/core/status.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/about.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/alkaid/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/alkaid/memory.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/auth.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/chart.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/command.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/config.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/console.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/conversation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/cron.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/dashboard.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/document.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/knowledge-base/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/migration.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/persona.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/platform.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/provider.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/session-management.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/settings.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/stats.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/subagent.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/tool-use.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/trace.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/features/welcome.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/messages/errors.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/messages/success.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/ru-RU/messages/validation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/command.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/cron.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/stats.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/subagent.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/trace.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/features/welcome.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/main.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/router/routeConstants.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_CodeBlockDark.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/personaStore.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/routerLoading.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/styles/dashboard-shell.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/types/confirm.d.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/types/desktop-bridge.d.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/chatConfigBinding.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/confirmDialog.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/desktopRuntime.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/errorUtils.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/hashRouteTabs.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/inputValue.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/pluginSearch.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/restartAstrBot.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/routerReadiness.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/shiki.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/CronJobPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/SubAgentPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/TracePage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/WelcomePage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/extension/MarketPluginsTab.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/CreateFolderDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/FolderBreadcrumb.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/FolderCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/FolderTree.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/FolderTreeNode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/MoveTargetNode.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/MoveToFolderDialog.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/PersonaCard.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/PersonaManager.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/persona/index.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/src/views/stats/StatsPage.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/tests/hashRouteTabs.test.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/tests/routerReadiness.test.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/tests/subsetMdiFont.test.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/tsconfig.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard/vite.config.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/_redirects +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/AddNewPlatform-DmMe3doR.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/AstrBotConfig-DFTbGTOJ.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ChatBoxPage-wITcYeZo.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ChatPage-eUJ4JNI2.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ConsoleDisplayer-C8Lma3GS.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ConsolePage-BS-DOdqp.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/CronJobPage-BPbEiZg2.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3-UBGEe-DlT9XTxE.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3CUBGEe-Bgw4czJT.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3GUBGEe-BCp_3N7R.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3KUBGEe-DYIxWhlt.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3OUBGEe-_f1XEJpo.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3iUBGEe-fOt7epNf.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA-ccAYIvAh.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMawCUBGEe-4a3xuzGk.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMaxKUBGEe-B7iHSfaG.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/LoginPage-BFEwI6dV.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/MigrationDialog-CujGC_I8.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/PersonaForm-BHNoUZKa.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/PersonaPage-DxiwyXpm.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/PersonaQuickPreview-DAEP78tl.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/PlatformPage-CNrYUK6O.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ProviderConfigDialog-BPAZ5uTl.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ProxySelector-DIVzyY3H.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4a0Ew-BGsTXAXT.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4i0ExAo-5tcqmc2S.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ReadmeDialog-BSjGDTat.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/Settings-D-Utrlz7.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/StatsPage-LO3xhSQC.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/SubAgentPage-Brwxg9R6.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/TracePage-DM4da9YE.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/WelcomePage-p_P_7t29.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/abap-BdImnpbu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/abap-BrgZPUOV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/actionscript-3-CoDkCxhg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ada-bCR0ucgS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/andromeeda-C4gqWexZ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/angular-html-CU67Zn6k.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/angular-ts-BwZT4LLn.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/apache-Pmp26Uib.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/apex-D8_7TLub.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/apex-DyP6w7ZV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/apl-dKokRX4l.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/applescript-Co6uUVPk.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ara-BRHolxvo.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/asciidoc-Dv7Oe6Be.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/asm-D_Q5rh1f.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/astrbot_logo_mini-DrntZlnL.webp +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/astro-CbQHKStN.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/aurora-x-D-2ljcwZ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/awk-DMzUqQB5.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ayu-dark-CMjwMIkn.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ayu-light-C47S-Tmv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ayu-mirage-CjoLj4QM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/azcli-BaLxmfj-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ballerina-BFfxhgS-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bat-BkioyH1T.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bat-CFOPXBzS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/beancount-k_qm7-4y.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/berry-uYugtg8r.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bibtex-CHM0blh-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bicep-BfEKNvv3.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bicep-Bmn6On1c.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/blade-D4QpJJKB.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/bsl-BO_Y6i37.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/c-BIGW1oBm.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/c3-VCDPK7BO.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cadence-Bv_4Rxtq.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cairo-KRGpt6FW.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cameligo-BFG1Mk7z.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/catppuccin-frappe-DFWUc33u.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/catppuccin-latte-C9dUb6Cb.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/catppuccin-macchiato-DQyhUUbL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/catppuccin-mocha-D87Tk5Gz.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/clarity-D53aC0YG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/clojure-DTECt2xU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/clojure-P80f7IUj.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cmake-D1j8_8rp.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cobol-nwyudZeR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/codeowners-Bp6g37R7.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/codeql-DsOJ9woJ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/codicon-DCmgc-ay.ttf +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/coffee-CDGzqUPQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/coffee-Ch7k5sss.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/common-lisp-Cg-RD9OK.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/coq-DkFqJrB1.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cpp-CLLBncYj.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cpp-CofmeUqb.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/crystal-tKQVLTB8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/csharp-COcwbKMJ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/csharp-dUCx_-0o.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/csp-5Rap-vPy.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/css-D3h14YRZ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/css-DPfMkruS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/css.worker-DaIe3gwK.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/csv-fuZLfV_i.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cue-D82EKSYY.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cypher-COkxafJQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/cypher-DrQuvNYM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/d-85-TOEBH.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dark-plus-C3mMm8J8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dart-CF10PKvl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dart-CFKIUWau.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dax-CEL-wOlO.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/desktop-BmXAJ9_W.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/diff-D97Zzqfu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/docker-BcOcwvcX.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dockerfile-Zznr-cwX.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dotenv-Da5cRb03.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dracula-BzJJZx-M.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dracula-soft-BXkSAIEj.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/dream-maker-BtqSS_iP.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ecl-Ce3n6wWz.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/edge-BkV0erSs.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/editor.worker-BCzxt1at.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/elixir-CDX3lj18.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/elixir-deUWdS0T.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/elm-DbKCFpqz.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/emacs-lisp-C9XAeP06.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/erb-CgJxNhIT.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/erlang-DsQrWhSR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/eventsource-CejZdUM0.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/everforest-dark-BgDCqdQA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/everforest-light-C8M2exoo.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fennel-BYunw83y.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fish-BvzEVeQv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/flow9-i9-g7ZhI.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fluent-C4IJs8-o.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fortran-fixed-form-CkoXwp7k.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fortran-free-form-BxgE0vQu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fsharp-CXgrBDvD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/fsharp-CzKuDChf.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gdresource-BOOCDP_w.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gdscript-C5YyOfLZ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gdshader-DkwncUOv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/genie-D0YGMca9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gherkin-DyxjwDmM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/git-commit-F4YmCXRG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/git-rebase-r7XF79zn.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-dark-DHJKELXO.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-dark-default-Cuk6v7N8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-dark-dimmed-DH5Ifo-i.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-light-DAi9KRSo.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-light-default-D7oLnXFd.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/github-light-high-contrast-BfjtVDDH.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gleam-BspZqrRM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/glimmer-js-Rg0-pVw9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/glimmer-ts-U6CK756n.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/glsl-DplSGwfg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gn-n2N0HUVH.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gnuplot-DdkO51Og.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/go-Cphgjts3.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/go-CxLEBnE3.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/graphql-Cg7bfA9N.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/graphql-ChdNCCLP.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/groovy-gcz8RCvz.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-medium-GsRaNv29.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-dark-soft-CVdnzihN.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-hard-CH1njM8p.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-medium-DRw_LuNl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/gruvbox-light-soft-hJgmCMqR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hack-CaT9iCJl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/haml-B8DHNrY2.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/handlebars-BL8al0AC.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/haskell-Df6bDoY_.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/haxe-CzTSHFRz.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hcl-0cvrggvQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hcl-BWvSN4gD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hjson-D5-asLiD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hlsl-D3lLCCz7.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/horizon-BUw7H-hv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/houston-DnULxvSX.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/html-GMplVEZG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/html-derivative-BFtXZ54Q.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/html.worker-CKrFyw_2.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/http-jrhK8wxY.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hurl-irOxFIW8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hxml-Bvhsp5Yf.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/hy-DFXneXwc.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/icon-no-shadow-d_sgy4RT.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/imba-DGztddWO.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/index-C6rTYzL3.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/index-_Dy2zPzC.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/infographic_markstream-vue-yoD6TSFD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ini-BEwlwnbL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ini-Drc7WvVn.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/inputValue-De_-AW4_.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/java-B_fMsGYe.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/java-CylS5w8V.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/javascript-wDzz0qaB.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jinja-4LBKfQ-Z.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jison-wvAkD_A8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/json-Cp-IABpG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/json.worker-B7c_PmGb.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/json5-C9tS-k6U.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jsonc-Des-eS-w.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jsonl-DcaNXYhu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jsonnet-DFQXde-d.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jssm-C2t-YnRu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/jsx-g9-lgVsj.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/julia-Bqgm2twL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/julia-CxzCAyBv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kanagawa-dragon-CkXjmgJE.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kanagawa-lotus-CfQXZHmo.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kanagawa-wave-DWedfzmr.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/katex-CBSAILhF.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kdl-DV7GczEv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kotlin-BSkB5QuD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kotlin-BdnUsdx6.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/kusto-DZf3V79B.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/laserwave-DUszq2jm.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/latex-DGMBWnxU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/lean-BZvkOJ9d.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/less-B1dDrJ26.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/less-BsTHnhdd.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/lexon-YWi4-JPR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/light-plus-B7mTdjB0.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/liquid-DYVedYrR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/llvm-BtvRca6l.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/log-2UxHyX5q.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/logo-BtOb2qkB.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/lua-BaeVxFsk.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/lua-nf6ki56Z.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/luau-C-HG3fhB.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/m3-Cpb6xl2v.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/make-CHLpvVh8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/markdown-Cvjx9yec.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/markdown-DSZPf7rp.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/marko-DZsq8hO1.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/material-theme-D5KoaKCx.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/material-theme-darker-BfHTSMKl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/material-theme-lighter-B0m2ddpp.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/material-theme-ocean-CyktbL80.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/material-theme-palenight-Csfq5Kiy.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/matlab-D7o27uSR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mdc-DUICxH0z.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mdx-Cmh6b_Ma.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mermaid-mWjccvbQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/min-dark-CafNBF8u.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/min-light-CTRr51gU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mips-B_c3zf-v.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mipsasm-CKIfxQSi.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/misskey-DyDC7ZfL.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mojo-B93PlW-d.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/monokai-D4h5O-jR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/moonbit-Ba13S78F.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/move-IF9eRakj.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/msdax-rUNN04Wq.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/mysql-DDwshQtU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/narrat-DRg8JJMk.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nextflow-BrzmwbiE.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nginx-BpAMiNFr.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/night-owl-C39BiMTA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/night-owl-light-CMTm3GFP.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nim-CVrawwO9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nix-CwoSXNpI.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nord-Ddv68eIx.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/nushell-C-sUppwS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/objective-c-B5zXfXm9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/objective-c-DXmwc3jG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/objective-cpp-CLxacb5B.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ocaml-C0hk2d4L.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/odin-BBf5iR-q.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/one-dark-pro-DVMEJ2y_.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/one-light-C3Wv6jpd.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/onebot-fwgbsrHC.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/openscad-C4EeE6gA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pascal-CXOwvkN_.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pascal-D93ZcfNL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pascaligo-Bc-ZgV77.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/perl-C0TMdlhV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/perl-CwNk8-XU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pgsql-tGk8EFnU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/php-CpIb_Oan.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/php-Dhbhpdrm.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pkl-u5AG7uiY.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pla-B03wrqEc.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/plastic-3e1v2bzS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/platformUtils-Y3QWFAMC.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/plsql-ChMvpjG-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/plugin_icon-xgxlkBou.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/po-BTJTHyun.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/poimandres-CS3Unz2-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/polar-C0HS_06l.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/postcss-CXtECtnM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/postiats-BKlk5iyT.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/powerquery-Bhzvs7bI.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/powerquery-CEu0bR-o.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/powershell-Dd3NCNK9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/powershell-Dpen1YoG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/prisma-Dd19v3D-.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/prolog-CbFg5uaA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/proto-C7zT0LnQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/protobuf-COyEY5Pt.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pug-BaJupSGV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pug-CGlum2m_.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/puppet-BMWR74SV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/purescript-CklMAg4u.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z11lFc-K-O-jipLrW.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z1JlFc-K-cby-RkWa.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLCz7Z1xlFQ-Qrb0O0WB.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z11lFc-K-STEjXBNN.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z1JlFc-K-CAhIAdZj.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLEj6Z1xlFQ-zEkxB9Mr.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z11lFc-K-BIdkeU1p.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z1JlFc-K-CK-6C4Hw.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiByp8kv8JHgFVrLGT9Z1xlFQ-C8OXljZJ.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJbecmNE-CJDn6rn8.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJfecg-cpxAROuN.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/pxiEyp8kv8JHgFVrJJnecmNE-by3JarPu.woff2 +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/python-B6aJPvgy.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/qml-3beO22l8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/qmldir-C8lEn-DE.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/qq-D53z62OG.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/qsharp-DXyYeYxl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/qss-IeuSbFQv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/r-CdQndTaG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/r-Dspwwk_N.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/racket-BqYA7rlc.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/raku-DXvB9xmW.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/razor-Uh8Bk_45.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/red-bN70gL4F.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/redis-CVwtpugi.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/redshift-25W9uPmb.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/reg-C-SQnVFl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/regexp-CDVJQ6XC.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rel-C3B-1QV4.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/restructuredtext-DfzH4Xui.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/riscv-BM1_JUlF.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ron-BhRPY-oY.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rose-pine-dawn-DHQR4-dF.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rose-pine-moon-D4_iv3hh.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rose-pine-qdsjHGoJ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rosmsg-BJDFO7_C.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rst-D5oM4XIm.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ruby-Cp1zYvxS.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ruby-Cw6WdidG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rust-B1yitclQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/rust-D5C2fndG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/safeRaf-DvJDa2y1.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sas-cz2c8ADy.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sass-Cj5Yp3dK.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/satori-DvyZ9Qos.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sb-CDntyWJ8.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scala-BoFRg7Ot.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scala-C151Ov-r.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scheme-Bio4gycK.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scheme-C98Dy4si.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scss-4Ik7cdeQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/scss-OYdSNvt2.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sdbl-DVxCFoDh.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/shaderlab-Dg9Lc6iA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/shell-CX-rkNHf.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/shellscript-Yzrsuije.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/shellsession-BADoaaVG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/slack-dark-BthQWCQV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/slack-ochin-DqwNpetd.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/smalltalk-BERRCDM3.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/snazzy-light-Bw305WKR.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/solarized-dark-DXbdFlpD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/solarized-light-L9t79GZl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/solidity-Tw7wswEv.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/solidity-rGO070M0.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sophia-C5WLch3f.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/soy-Brmx7dQM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sparql-DHaeiCBh.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sparql-rVzFXLq3.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/splunk-BtCnVYZw.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sql-BLtJtn59.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/sql-CCSDG5nI.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ssh-config-_ykCGR6B.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/st-pnP8ivHi.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/stata-BH5u7GGu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/stylus-BEDo0Tqx.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/surrealql-Bq5Q-fJD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/svelte-zxCyuUbr.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/swift-Dg5xB15N.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/swift-DwJ7jVG9.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/synthwave-84-CbfX1IO0.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/system-verilog-CnnmHF94.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/systemd-4A_iFExJ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/systemverilog-B9Xyijhd.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/talonscript-CkByrt1z.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tasl-QIJgUcNo.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tcl-DnHyzjbg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tcl-dwOrl1Do.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/templ-P3uqSqPl.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/terraform-BETggiCN.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tex-CvyZ59Mk.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tokyo-night-hegEt444.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/toml-vGWfd6FD.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ts-tags-zn1MmPIZ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/ts.worker-BhkL8olL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tsv-B_m7g4N7.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/tsx-COt5Ahok.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/turtle-BsS91CYL.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/twig-CPajHgWi.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/twig-ChbOoGGc.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/typescript-BPQ3VLAy.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/typespec-BGHnOYBU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/typespec-D-MeaMDU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/typst-DHCkPAjA.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/v-BcVCzyr7.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vala-CsfeWuGM.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vb-D17OF-Vu.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vb-DgyLZaXg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/verilog-BQ8w6xss.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vesper-DU1UobuO.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vhdl-CeAyd5Ju.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/viml-CJc9bBzg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vitesse-black-Bkuqu6BP.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vitesse-dark-D0r3Knsf.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vitesse-light-CVO1_9PV.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vocechat-3FM9-gsb.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vue-DN_0RTcg.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vue-html-AaS7Mt5G.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vue-vine-CQOfvN7w.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/vyper-CDx5xZoG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wasm-CG6Dc4jp.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wasm-MzD3tlZU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wechat-OKdslIg4.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wecom-CG6W-50z.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wenyan-BV7otONQ.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wgsl-BIv9DU6q.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wgsl-Dx-B1_4e.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wikitext-BhOHFoWU.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wit-5i3qLPDT.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/wolfram-lXgVvXCa.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/xmas-hat-ChoGHOay.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/xml-sdJ4AIDG.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/xsl-CtQFsRM5.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/yaml-Buea-lGh.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/zenscript-DVFEvuxE.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/assets/zig-VOosw3JB.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/favicon.svg +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/dashboard-artifact/unpacked/dist/robots.txt +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.gitignore +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/config/head.ts +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/config.mjs +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/components/ArticleShare.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/components/HomeFeaturesAfter.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/components/Layout.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/components/NotFound.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/components/SectionTabs.vue +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/index.js +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/styles/custom-block.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/styles/font.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/.vitepress/theme/styles/style.css +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/README.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/community.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/config/model-config.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/1panel.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/btpanel.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/casaos.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/cli.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/community-deployment.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/compshare.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/docker.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/kubernetes.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/launcher.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/other-deployments.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/package.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/astrbot/sys-pm.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/deploy/when-deployed.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/astrbot-config.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/openapi.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/plugin-platform-adapter.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/plugin.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/ai.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/env.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/html-to-pic.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/listen-message-event.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/plugin-config.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/send-message.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/session-control.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/simple.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/guides/storage.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/plugin-new.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/dev/star/plugin-publish.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/faq.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/index.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/ospp/2025.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/others/self-host-t2i.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/aiocqhttp.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/dingtalk.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/discord.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/kook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/lark.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/line.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/matrix.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/mattermost.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/misskey.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/qqofficial/webhook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/qqofficial/websockets.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/qqofficial.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/satori/guide.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/satori/server-satori.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/slack.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/start.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/telegram.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/vocechat.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/wecom.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/wecom_ai_bot.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/weixin-official-account.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/platform/weixin_oc.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/302ai.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners/astrbot-agent-runner.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners/coze.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners/dashscope.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners/deerflow.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners/dify.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/agent-runners.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/aihubmix.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/coze.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/dashscope.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/dify.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/llm.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/newapi.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/ppio.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/provider-lmstudio.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/provider-ollama.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/siliconflow.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/start.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/providers/tokenpony.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/agent-runner.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/astrbot-agent-sandbox.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/astrbot-sandbox.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/code-interpreter.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/command.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/computer.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/context-compress.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/custom-rules.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/function-calling.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/knowledge-base.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/mcp.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/plugin.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/proactive-agent.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/skills.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/subagent.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/unified-webhook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/use/websearch.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/en/what-is-astrbot.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/package.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/pnpm-lock.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/public/404-seio.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/public/logo.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/public/logo_prod.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/public/openapi.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/public/scalar.html +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/scripts/sync_docs_to_wiki.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/scripts/upload-doc-images-to-r2.sh +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/scripts/upload_doc_images_to_r2.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/scripts/usage.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/tests/test_sync_docs_to_wiki.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/vercel.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/community-events/ospp-2025.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/community-events/tonggujiyu-astrbot-plugin-reward-program.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/community.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/1panel.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/btpanel.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/casaos.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/cli.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/community-deployment.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/compshare.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/desktop.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/docker.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/kubernetes.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/launcher.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/other-deployments.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/package.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/rainyun.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/astrbot/sys-pm.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/deploy/when-deployed.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/astrbot-config.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/openapi.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/plugin-platform-adapter.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/plugin.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/ai.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/env.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/html-to-pic.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/listen-message-event.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/other.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/plugin-config.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/send-message.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/session-control.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/simple.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/guides/storage.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/plugin-new.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/plugin-publish.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/dev/star/plugin.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/faq.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/index.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/others/github-proxy.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/others/ipv6.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/others/self-host-t2i.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/aiocqhttp.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/dingtalk.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/discord.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/kook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/lark.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/line.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/matrix.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/mattermost.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/misskey.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/qqofficial/webhook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/qqofficial/websockets.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/qqofficial.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/satori/guide.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/satori/server-satori.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/slack.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/start.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/telegram.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/vocechat.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/wecom.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/wecom_ai_bot.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/weixin-official-account.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/weixin_oc.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/platform/weixin_qr_entry.png +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/302ai.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners/astrbot-agent-runner.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners/coze.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners/dashscope.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners/deerflow.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners/dify.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/agent-runners.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/aihubmix.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/coze.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/dashscope.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/dify.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/llm.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/newapi.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/ppio.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/provider-lmstudio.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/provider-ollama.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/siliconflow.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/start.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/providers/tokenpony.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/agent-runner.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/astrbot-agent-sandbox.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/code-interpreter.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/command.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/computer.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/context-compress.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/custom-rules.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/function-calling.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/knowledge-base-old.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/knowledge-base.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/mcp.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/plugin.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/proactive-agent.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/skills.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/subagent.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/unified-webhook.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/use/websearch.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/docs/zh/what-is-astrbot.md +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot/00-namespace.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot/01-pvc.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot/02-deployment.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot/03-service-nodeport.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot_with_napcat/00-namespace.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot_with_napcat/01-pvc.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot_with_napcat/02-deployment.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot_with_napcat/03-service-nodeport.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/main.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/openspec/config.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/runtime_bootstrap.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/samples/stt_health_check.wav +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/astrbot.service +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/hatch_build.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/pr_test_env.sh +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/run_pytests_ci.sh +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/smoke_startup_check.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/scripts/start-with-neo.sh +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/agent/test_context_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/agent/test_token_counter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/agent/test_truncator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/conftest.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/configs/test_cmd_config.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/helpers.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/messages/test_messages.json +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/mocks/__init__.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/mocks/aiocqhttp.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/mocks/discord.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/mocks/telegram.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/plugins/fixture_plugin.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/fixtures/plugins/metadata.yaml +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_anthropic_kimi_code_provider.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_api_key_open_api.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_backup.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_chat_route.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_computer_config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_computer_skill_sync.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_computer_tool_permissions.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_conversation_commands.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_dashboard.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_deerflow_agent_runner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_deerflow_api_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_gemini_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_httpx_socks_dependency.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kb_import.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kook/.gitignore +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kook/shared.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kook/test_kook_client.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kook/test_kook_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_kook/test_kook_types.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_local_filesystem_component.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_local_shell_component.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_main.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_mattermost_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_mimo_api_sources.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_neo_skill_sync.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_neo_skill_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_openai_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_pip_helper_modules.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_pip_installer.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_plugin_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_profile_aware_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_quoted_message_parser.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_runtime_env.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_security_fixes.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_skill_manager_sandbox_cache.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_skill_metadata_enrichment.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_smoke.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_storage_cleaner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_telegram_adapter.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_temp_dir_cleaner.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_updator_socks.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/test_whisper_api_source.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_aiocqhttp_poke.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_astr_agent_tool_exec.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_astr_message_event.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_astrbot_message.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_computer.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_config.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_core_lifecycle.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_cron_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_cron_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_event_bus.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_faiss_vec_db.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_func_tool_manager.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_kb_manager_resilience.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_provider_stats.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_python_tools.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_session_lock.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_sparse_retriever.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_star_base.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_subagent_orchestrator.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_tool_conflict_resolution.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/tests/unit/test_tool_google_schema.py +0 -0
- {astrbot-4.23.2 → astrbot-4.23.5}/typings/faiss/__init__.pyi +0 -0
astrbot-4.23.5/PKG-INFO
ADDED
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: AstrBot
|
|
3
|
+
Version: 4.23.5
|
|
4
|
+
Summary: Easy-to-use multi-platform LLM chatbot and development framework
|
|
5
|
+
Project-URL: Repository, https://github.com/AstrBotDevs/AstrBot
|
|
6
|
+
License: AGPL-3.0-or-later
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Keywords: Agent,AstrBot,Chatbot,IM
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Requires-Dist: aiocqhttp>=1.4.4
|
|
11
|
+
Requires-Dist: aiodocker>=0.24.0
|
|
12
|
+
Requires-Dist: aiofiles>=25.1.0
|
|
13
|
+
Requires-Dist: aiohttp>=3.11.18
|
|
14
|
+
Requires-Dist: aiosqlite>=0.21.0
|
|
15
|
+
Requires-Dist: anthropic>=0.51.0
|
|
16
|
+
Requires-Dist: apscheduler>=3.11.0
|
|
17
|
+
Requires-Dist: audioop-lts; python_full_version >= '3.13'
|
|
18
|
+
Requires-Dist: certifi>=2025.4.26
|
|
19
|
+
Requires-Dist: chardet~=5.1.0
|
|
20
|
+
Requires-Dist: click>=8.2.1
|
|
21
|
+
Requires-Dist: cryptography>=44.0.3
|
|
22
|
+
Requires-Dist: dashscope>=1.23.2
|
|
23
|
+
Requires-Dist: deprecated>=1.2.18
|
|
24
|
+
Requires-Dist: dingtalk-stream>=0.22.1
|
|
25
|
+
Requires-Dist: docstring-parser>=0.16
|
|
26
|
+
Requires-Dist: faiss-cpu>=1.12.0
|
|
27
|
+
Requires-Dist: filelock>=3.18.0
|
|
28
|
+
Requires-Dist: google-genai>=1.56.0
|
|
29
|
+
Requires-Dist: httpx[socks]>=0.28.1
|
|
30
|
+
Requires-Dist: jieba>=0.42.1
|
|
31
|
+
Requires-Dist: lark-oapi>=1.4.15
|
|
32
|
+
Requires-Dist: loguru>=0.7.2
|
|
33
|
+
Requires-Dist: markitdown-no-magika[docx,xls,xlsx]>=0.1.2
|
|
34
|
+
Requires-Dist: mcp>=1.8.0
|
|
35
|
+
Requires-Dist: openai>=1.78.0
|
|
36
|
+
Requires-Dist: ormsgpack>=1.9.1
|
|
37
|
+
Requires-Dist: packaging>=24.2
|
|
38
|
+
Requires-Dist: pillow>=11.2.1
|
|
39
|
+
Requires-Dist: pip>=25.1.1
|
|
40
|
+
Requires-Dist: psutil<7.2.0,>=5.8.0
|
|
41
|
+
Requires-Dist: py-cord>=2.6.1
|
|
42
|
+
Requires-Dist: pydantic>=2.12.5
|
|
43
|
+
Requires-Dist: pydub>=0.25.1
|
|
44
|
+
Requires-Dist: pyjwt>=2.10.1
|
|
45
|
+
Requires-Dist: pypdf>=6.1.1
|
|
46
|
+
Requires-Dist: pysocks>=1.7.1
|
|
47
|
+
Requires-Dist: python-ripgrep==0.0.8
|
|
48
|
+
Requires-Dist: python-socks>=2.8.0
|
|
49
|
+
Requires-Dist: python-telegram-bot>=22.6
|
|
50
|
+
Requires-Dist: qq-botpy>=1.2.1
|
|
51
|
+
Requires-Dist: qrcode>=8.2
|
|
52
|
+
Requires-Dist: quart>=0.20.0
|
|
53
|
+
Requires-Dist: rank-bm25>=0.2.2
|
|
54
|
+
Requires-Dist: shipyard-neo-sdk>=0.2.0
|
|
55
|
+
Requires-Dist: shipyard-python-sdk>=0.2.4
|
|
56
|
+
Requires-Dist: silk-python>=0.2.6
|
|
57
|
+
Requires-Dist: slack-sdk>=3.35.0
|
|
58
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.41
|
|
59
|
+
Requires-Dist: sqlmodel>=0.0.24
|
|
60
|
+
Requires-Dist: telegramify-markdown>=1.0.0
|
|
61
|
+
Requires-Dist: tenacity>=9.1.2
|
|
62
|
+
Requires-Dist: watchfiles>=1.0.5
|
|
63
|
+
Requires-Dist: websockets>=15.0.1
|
|
64
|
+
Requires-Dist: wechatpy>=1.8.18
|
|
65
|
+
Requires-Dist: xinference-client
|
|
66
|
+
Description-Content-Type: text/markdown
|
|
67
|
+
|
|
68
|
+

|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<div align="center">
|
|
72
|
+
|
|
73
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_zh.md">简体中文</a> |
|
|
74
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_zh-TW.md">繁體中文</a> |
|
|
75
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
76
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_fr.md">Français</a> |
|
|
77
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ru.md">Русский</a>
|
|
78
|
+
|
|
79
|
+
<br>
|
|
80
|
+
|
|
81
|
+
<div>
|
|
82
|
+
<a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
83
|
+
<a href="https://hellogithub.com/repository/AstrBotDevs/AstrBot" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=d127d50cd5e54c5382328acc3bb25483&claim_uid=ZO9by7qCXgSd6Lp&t=2" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
<br>
|
|
87
|
+
|
|
88
|
+
<div>
|
|
89
|
+
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
|
|
90
|
+
<img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
|
|
91
|
+
<img src="https://deepwiki.com/badge.svg" href="https://deepwiki.com/AstrBotDevs/AstrBot">
|
|
92
|
+
<a href="https://zread.ai/AstrBotDevs/AstrBot" target="_blank"><img src="https://img.shields.io/badge/Ask_Zread-_.svg?style=flat&color=00b0aa&labelColor=000000&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuOTYxNTYgMS42MDAxSDIuMjQxNTZDMS44ODgxIDEuNjAwMSAxLjYwMTU2IDEuODg2NjQgMS42MDE1NiAyLjI0MDFWNC45NjAxQzEuNjAxNTYgNS4zMTM1NiAxLjg4ODEgNS42MDAxIDIuMjQxNTYgNS42MDAxSDQuOTYxNTZDNS4zMTUwMiA1LjYwMDEgNS42MDE1NiA1LjMxMzU2IDUuNjAxNTYgNC45NjAxVjIuMjQwMUM1LjYwMTU2IDEuODg2NjQgNS4zMTUwMiAxLjYwMDEgNC45NjE1NiAxLjYwMDFaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00Ljk2MTU2IDEwLjM5OTlIMi4yNDE1NkMxLjg4ODEgMTAuMzk5OSAxLjYwMTU2IDEwLjY4NjQgMS42MDE1NiAxMS4wMzk5VjEzLjc1OTlDMS42MDE1NiAxNC4xMTM0IDEuODg4MSAxNC4zOTk5IDIuMjQxNTYgMTQuMzk5OUg0Ljk2MTU2QzUuMzE1MDIgMTQuMzk5OSA1LjYwMTU2IDE0LjExMzQgNS42MDE1NiAxMy43NTk5VjExLjAzOTlDNS42MDE1NiAxMC42ODY0IDUuMzE1MDIgMTAuMzk5OSA0Ljk2MTU2IDEwLjM5OTlaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik0xMy43NTg0IDEuNjAwMUgxMS4wMzg0QzEwLjY4NSAxLjYwMDEgMTAuMzk4NCAxLjg4NjY0IDEwLjM5ODQgMi4yNDAxVjQuOTYwMUMxMC4zOTg0IDUuMzEzNTYgMTAuNjg1IDUuNjAwMSAxMS4wMzg0IDUuNjAwMUgxMy43NTg0QzE0LjExMTkgNS42MDAxIDE0LjM5ODQgNS4zMTM1NiAxNC4zOTg0IDQuOTYwMVYyLjI0MDFDMTQuMzk4NCAxLjg4NjY0IDE0LjExMTkgMS42MDAxIDEzLjc1ODQgMS42MDAxWiIgZmlsbD0iI2ZmZiIvPgo8cGF0aCBkPSJNNCAxMkwxMiA0TDQgMTJaIiBmaWxsPSIjZmZmIi8%2BCjxwYXRoIGQ9Ik00IDEyTDEyIDQiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K&logoColor=ffffff" alt="zread"/></a>
|
|
93
|
+
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?color=76bad9"/></a>
|
|
94
|
+
<img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%20plugins&label=Marketplace&cacheSeconds=3600">
|
|
95
|
+
<img src="https://gitcode.com/Soulter/AstrBot/star/badge.svg" href="https://gitcode.com/Soulter/AstrBot">
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<br>
|
|
99
|
+
|
|
100
|
+
<a href="https://astrbot.app/">Documentation</a> |
|
|
101
|
+
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
102
|
+
<a href="https://astrbot.featurebase.app/roadmap">Roadmap</a> |
|
|
103
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/issues">Issue Tracker</a> |
|
|
104
|
+
<a href="mailto:community@astrbot.app">Email Support</a>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
AstrBot is an open-source all-in-one Agent chatbot platform that integrates with mainstream instant messaging apps. It provides reliable and scalable conversational AI infrastructure for individuals, developers, and teams. Whether you're building a personal AI companion, intelligent customer service, automation assistant, or enterprise knowledge base, AstrBot enables you to quickly build production-ready AI applications within your IM platform workflows.
|
|
108
|
+
|
|
109
|
+

|
|
110
|
+
|
|
111
|
+
## Key Features
|
|
112
|
+
|
|
113
|
+
1. 💯 Free & Open Source.
|
|
114
|
+
2. ✨ AI LLM Conversations, Multimodal, Agent, MCP, Skills, Knowledge Base, Persona Settings, Auto Context Compression.
|
|
115
|
+
3. 🤖 Supports integration with Dify, Alibaba Cloud Bailian, Coze, and other agent platforms.
|
|
116
|
+
4. 🌐 Multi-Platform: QQ, WeChat Work, Feishu, DingTalk, WeChat Official Accounts, Telegram, Slack, and [more](#supported-messaging-platforms).
|
|
117
|
+
5. 📦 Plugin Extensions with 1000+ plugins available for one-click installation.
|
|
118
|
+
6. 🛡️ [Agent Sandbox](https://docs.astrbot.app/use/astrbot-agent-sandbox.html) for isolated, safe execution of code, shell calls, and session-level resource reuse.
|
|
119
|
+
7. 💻 WebUI Support.
|
|
120
|
+
8. 🌈 Web ChatUI Support with built-in agent sandbox and web search.
|
|
121
|
+
9. 🌐 Internationalization (i18n) Support.
|
|
122
|
+
|
|
123
|
+
<br>
|
|
124
|
+
|
|
125
|
+
<table align="center">
|
|
126
|
+
<tr align="center">
|
|
127
|
+
<th>💙 Role-playing & Emotional Companionship</th>
|
|
128
|
+
<th>✨ Proactive Agent</th>
|
|
129
|
+
<th>🚀 General Agentic Capabilities</th>
|
|
130
|
+
<th>🧩 1000+ Community Plugins</th>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<td align="center"><p align="center"><img width="984" height="1746" alt="99b587c5d35eea09d84f33e6cf6cfd4f" src="https://github.com/user-attachments/assets/89196061-3290-458d-b51f-afa178049f84" /></p></td>
|
|
134
|
+
<td align="center"><p align="center"><img width="976" height="1612" alt="c449acd838c41d0915cc08a3824025b1" src="https://github.com/user-attachments/assets/f75368b4-e022-41dc-a9e0-131c3e73e32e" /></p></td>
|
|
135
|
+
<td align="center"><p align="center"><img width="974" height="1732" alt="image" src="https://github.com/user-attachments/assets/e22a3968-87d7-4708-a7cd-e7f198c7c32e" /></p></td>
|
|
136
|
+
<td align="center"><p align="center"><img width="976" height="1734" alt="image" src="https://github.com/user-attachments/assets/0952b395-6b4a-432a-8a50-c294b7f89750" /></p></td>
|
|
137
|
+
</tr>
|
|
138
|
+
</table>
|
|
139
|
+
|
|
140
|
+
## Quick Start
|
|
141
|
+
|
|
142
|
+
### One-Click Deployment
|
|
143
|
+
|
|
144
|
+
For users who want to quickly experience AstrBot, are familiar with command-line usage, and can install a `uv` environment on their own, we recommend the `uv` one-click deployment method ⚡️:
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
uv tool install astrbot --python 3.12
|
|
148
|
+
astrbot init # Only execute this command for the first time to initialize the environment
|
|
149
|
+
astrbot run
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
> Requires [uv](https://docs.astral.sh/uv/) to be installed.
|
|
153
|
+
> AstrBot requires Python 3.12 or later. The `--python 3.12` option ensures that `uv` creates the tool environment with Python 3.12.
|
|
154
|
+
|
|
155
|
+
> [!NOTE]
|
|
156
|
+
> For macOS users: due to macOS security checks, the first run of the `astrbot` command may take longer (about 10-20s).
|
|
157
|
+
|
|
158
|
+
Update `astrbot`:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
uv tool upgrade astrbot --python 3.12
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
> [!WARNING]
|
|
165
|
+
> AstrBot deployed via `uv` **does not support upgrading through the WebUI**. To update, please run the command above from the command line.
|
|
166
|
+
|
|
167
|
+
### Docker Deployment
|
|
168
|
+
|
|
169
|
+
For users familiar with containers and looking for a more stable, production-ready deployment method, we recommend deploying AstrBot with Docker / Docker Compose.
|
|
170
|
+
|
|
171
|
+
Please refer to the official documentation: [Deploy AstrBot with Docker](https://docs.astrbot.app/deploy/astrbot/docker.html#%E4%BD%BF%E7%94%A8-docker-%E9%83%A8%E7%BD%B2-astrbot).
|
|
172
|
+
|
|
173
|
+
### Deploy on RainYun
|
|
174
|
+
|
|
175
|
+
For users who want one-click deployment and do not want to manage servers themselves, we recommend RainYun's one-click cloud deployment service ☁️:
|
|
176
|
+
|
|
177
|
+
[](https://app.rainyun.com/apps/rca/store/5994?ref=NjU1ODg0)
|
|
178
|
+
|
|
179
|
+
### Desktop Application Deployment
|
|
180
|
+
|
|
181
|
+
For users who want to use AstrBot on desktop and mainly use ChatUI, we recommend AstrBot App.
|
|
182
|
+
|
|
183
|
+
Visit [AstrBot-desktop](https://github.com/AstrBotDevs/AstrBot-desktop) to download and install; this method is designed for desktop usage and is not recommended for server scenarios.
|
|
184
|
+
|
|
185
|
+
### Launcher Deployment
|
|
186
|
+
|
|
187
|
+
For desktop users who also want fast deployment and isolated multi-instance usage, we recommend AstrBot Launcher.
|
|
188
|
+
|
|
189
|
+
Visit [AstrBot Launcher](https://github.com/Raven95676/astrbot-launcher) to download and install.
|
|
190
|
+
|
|
191
|
+
### Deploy on Replit
|
|
192
|
+
|
|
193
|
+
Replit deployment is maintained by the community and is suitable for online demos and lightweight trials.
|
|
194
|
+
|
|
195
|
+
[](https://repl.it/github/AstrBotDevs/AstrBot)
|
|
196
|
+
|
|
197
|
+
### AUR
|
|
198
|
+
|
|
199
|
+
AUR deployment targets Arch Linux users who prefer installing AstrBot through the system package workflow.
|
|
200
|
+
|
|
201
|
+
Run the command below to install `astrbot-git`, then start AstrBot in your local environment.
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
yay -S astrbot-git
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
**More deployment methods**
|
|
208
|
+
|
|
209
|
+
If you need panel-based management or deeper customization, see [BT-Panel Deployment](https://docs.astrbot.app/deploy/astrbot/btpanel.html) for BT Panel app-store setup, [1Panel Deployment](https://docs.astrbot.app/deploy/astrbot/1panel.html) for 1Panel app-market deployment, [CasaOS Deployment](https://docs.astrbot.app/deploy/astrbot/casaos.html) for NAS/home-server visual deployment, and [Manual Deployment](https://docs.astrbot.app/deploy/astrbot/cli.html) for fully custom source-based installation with `uv`.
|
|
210
|
+
|
|
211
|
+
## Supported Messaging Platforms
|
|
212
|
+
|
|
213
|
+
Connect AstrBot to your favorite chat platform.
|
|
214
|
+
|
|
215
|
+
| Platform | Maintainer |
|
|
216
|
+
|---------|---------------|
|
|
217
|
+
| QQ | Official |
|
|
218
|
+
| OneBot v11 protocol implementation | Official |
|
|
219
|
+
| Telegram | Official |
|
|
220
|
+
| Wecom & Wecom AI Bot | Official |
|
|
221
|
+
| WeChat Official Accounts | Official |
|
|
222
|
+
| Feishu (Lark) | Official |
|
|
223
|
+
| DingTalk | Official |
|
|
224
|
+
| Slack | Official |
|
|
225
|
+
| Discord | Official |
|
|
226
|
+
| LINE | Official |
|
|
227
|
+
| Satori | Official |
|
|
228
|
+
| KOOK | Official |
|
|
229
|
+
| Misskey | Official |
|
|
230
|
+
| Mattermost | Official |
|
|
231
|
+
| WhatsApp (Coming Soon) | Official |
|
|
232
|
+
| [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter) | Community |
|
|
233
|
+
| [Rocket.Chat](https://github.com/NET-Homeless/astrbot_plugin_rocket_chat_adapter) | Community |
|
|
234
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | Community |
|
|
235
|
+
|
|
236
|
+
## Supported Model Services
|
|
237
|
+
|
|
238
|
+
| Service | Type |
|
|
239
|
+
|---------|---------------|
|
|
240
|
+
| OpenAI and Compatible Services | LLM Services |
|
|
241
|
+
| Anthropic | LLM Services |
|
|
242
|
+
| Google Gemini | LLM Services |
|
|
243
|
+
| Moonshot AI | LLM Services |
|
|
244
|
+
| Zhipu AI | LLM Services |
|
|
245
|
+
| DeepSeek | LLM Services |
|
|
246
|
+
| Ollama (Self-hosted) | LLM Services |
|
|
247
|
+
| LM Studio (Self-hosted) | LLM Services |
|
|
248
|
+
| [AIHubMix](https://aihubmix.com/?aff=4bfH) | LLM Services (API Gateway, supports all models) |
|
|
249
|
+
| [CompShare](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | LLM Services |
|
|
250
|
+
| [302.AI](https://share.302.ai/rr1M3l) | LLM Services |
|
|
251
|
+
| [TokenPony](https://www.tokenpony.cn/3YPyf) | LLM Services |
|
|
252
|
+
| [SiliconFlow](https://docs.siliconflow.cn/cn/usercases/use-siliconcloud-in-astrbot) | LLM Services |
|
|
253
|
+
| [PPIO Cloud](https://ppio.com/user/register?invited_by=AIOONE) | LLM Services |
|
|
254
|
+
| ModelScope | LLM Services |
|
|
255
|
+
| OneAPI | LLM Services |
|
|
256
|
+
| Dify | LLMOps Platforms |
|
|
257
|
+
| Alibaba Cloud Bailian Applications | LLMOps Platforms |
|
|
258
|
+
| Coze | LLMOps Platforms |
|
|
259
|
+
| OpenAI Whisper | Speech-to-Text Services |
|
|
260
|
+
| SenseVoice | Speech-to-Text Services |
|
|
261
|
+
| Xiaomi MiMo Omni | Speech-to-Text Services |
|
|
262
|
+
| OpenAI TTS | Text-to-Speech Services |
|
|
263
|
+
| Gemini TTS | Text-to-Speech Services |
|
|
264
|
+
| GPT-Sovits-Inference | Text-to-Speech Services |
|
|
265
|
+
| GPT-Sovits | Text-to-Speech Services |
|
|
266
|
+
| FishAudio | Text-to-Speech Services |
|
|
267
|
+
| Edge TTS | Text-to-Speech Services |
|
|
268
|
+
| Alibaba Cloud Bailian TTS | Text-to-Speech Services |
|
|
269
|
+
| Azure TTS | Text-to-Speech Services |
|
|
270
|
+
| Minimax TTS | Text-to-Speech Services |
|
|
271
|
+
| Xiaomi MiMo TTS | Text-to-Speech Services |
|
|
272
|
+
| Volcano Engine TTS | Text-to-Speech Services |
|
|
273
|
+
|
|
274
|
+
## ❤️ Sponsors
|
|
275
|
+
|
|
276
|
+
<p align="center">
|
|
277
|
+
<img alt="sponsors" src="https://sponsors.astrbot.app/?v=1">
|
|
278
|
+
</p>
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
## ❤️ Contributing
|
|
282
|
+
|
|
283
|
+
Issues and Pull Requests are always welcome! Feel free to submit your changes to this project :)
|
|
284
|
+
|
|
285
|
+
### How to Contribute
|
|
286
|
+
|
|
287
|
+
You can contribute by reviewing issues or helping with pull request reviews. Any issues or PRs are welcome to encourage community participation. Of course, these are just suggestions—you can contribute in any way you like. For adding new features, please discuss through an Issue first.
|
|
288
|
+
|
|
289
|
+
### Development Environment
|
|
290
|
+
|
|
291
|
+
AstrBot uses `ruff` for code formatting and linting.
|
|
292
|
+
|
|
293
|
+
```bash
|
|
294
|
+
git clone https://github.com/AstrBotDevs/AstrBot
|
|
295
|
+
pip install pre-commit
|
|
296
|
+
pre-commit install
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
## 🌍 Community
|
|
301
|
+
|
|
302
|
+
### QQ Groups
|
|
303
|
+
|
|
304
|
+
- Group 12: 916228568 (New)
|
|
305
|
+
- Group 9: 1076659624 (Full)
|
|
306
|
+
- Group 10: 1078079676 (Full)
|
|
307
|
+
- Group 11: 704659519 (Full)
|
|
308
|
+
- Group 1: 322154837 (Full)
|
|
309
|
+
- Group 3: 630166526 (Full)
|
|
310
|
+
- Group 4: 1077826412 (Full)
|
|
311
|
+
- Group 5: 822130018 (Full)
|
|
312
|
+
- Group 6: 753075035 (Full)
|
|
313
|
+
- Group 7: 743746109 (Full)
|
|
314
|
+
- Group 8: 1030353265 (Full)
|
|
315
|
+
|
|
316
|
+
- Developer Group(Chit-chat): 975206796
|
|
317
|
+
- Developer Group(Formal): 1039761811
|
|
318
|
+
|
|
319
|
+
### Discord Server
|
|
320
|
+
|
|
321
|
+
<a href="https://discord.gg/hAVk6tgV36"><img alt="Discord_community" src="https://img.shields.io/badge/Discord-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
322
|
+
|
|
323
|
+
## ❤️ Special Thanks
|
|
324
|
+
|
|
325
|
+
Special thanks to all Contributors and plugin developers for their contributions to AstrBot ❤️
|
|
326
|
+
|
|
327
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/graphs/contributors">
|
|
328
|
+
<img src="https://contrib.rocks/image?repo=AstrBotDevs/AstrBot&max=200&columns=14" />
|
|
329
|
+
</a>
|
|
330
|
+
|
|
331
|
+
Additionally, the birth of this project would not have been possible without the help of the following open-source projects:
|
|
332
|
+
|
|
333
|
+
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - The amazing cat framework
|
|
334
|
+
|
|
335
|
+
## ⭐ Star History
|
|
336
|
+
|
|
337
|
+
> [!TIP]
|
|
338
|
+
> If this project has helped you in your life or work, or if you're interested in its future development, please give the project a Star. It's the driving force behind maintaining this open-source project <3
|
|
339
|
+
|
|
340
|
+
<div align="center">
|
|
341
|
+
|
|
342
|
+
[](https://star-history.com/#astrbotdevs/astrbot&Date)
|
|
343
|
+
|
|
344
|
+
</div>
|
|
345
|
+
|
|
346
|
+
<div align="center">
|
|
347
|
+
|
|
348
|
+
_Companionship and capability should never be at odds. What we aim to create is a robot that can understand emotions, provide genuine companionship, and reliably accomplish tasks._
|
|
349
|
+
|
|
350
|
+
_私は、高性能ですから!_
|
|
351
|
+
|
|
352
|
+
<img src="https://files.astrbot.app/watashiwa-koseino-desukara.gif" width="100"/>
|
|
353
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Commands module
|
|
2
|
+
|
|
3
|
+
from .admin import AdminCommands
|
|
4
|
+
from .conversation import ConversationCommands
|
|
5
|
+
from .help import HelpCommand
|
|
6
|
+
from .provider import ProviderCommands
|
|
7
|
+
from .setunset import SetUnsetCommands
|
|
8
|
+
from .sid import SIDCommand
|
|
9
|
+
|
|
10
|
+
__all__ = [
|
|
11
|
+
"AdminCommands",
|
|
12
|
+
"ConversationCommands",
|
|
13
|
+
"HelpCommand",
|
|
14
|
+
"ProviderCommands",
|
|
15
|
+
"SetUnsetCommands",
|
|
16
|
+
"SIDCommand",
|
|
17
|
+
]
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import asyncio
|
|
4
|
+
|
|
5
|
+
from astrbot import logger
|
|
6
|
+
from astrbot.api import star
|
|
7
|
+
from astrbot.api.event import AstrMessageEvent, MessageEventResult
|
|
8
|
+
from astrbot.core.provider.entities import ProviderType
|
|
9
|
+
from astrbot.core.utils.error_redaction import safe_error
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ProviderCommands:
|
|
13
|
+
def __init__(self, context: star.Context) -> None:
|
|
14
|
+
self.context = context
|
|
15
|
+
|
|
16
|
+
def _log_reachability_failure(
|
|
17
|
+
self,
|
|
18
|
+
provider,
|
|
19
|
+
provider_capability_type: ProviderType | None,
|
|
20
|
+
err_code: str,
|
|
21
|
+
err_reason: str,
|
|
22
|
+
) -> None:
|
|
23
|
+
meta = provider.meta()
|
|
24
|
+
logger.warning(
|
|
25
|
+
"Provider reachability check failed: id=%s type=%s code=%s reason=%s",
|
|
26
|
+
meta.id,
|
|
27
|
+
provider_capability_type.name if provider_capability_type else "unknown",
|
|
28
|
+
err_code,
|
|
29
|
+
err_reason,
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
async def _test_provider_capability(self, provider):
|
|
33
|
+
meta = provider.meta()
|
|
34
|
+
provider_capability_type = meta.provider_type
|
|
35
|
+
|
|
36
|
+
try:
|
|
37
|
+
await provider.test()
|
|
38
|
+
return True, None, None
|
|
39
|
+
except Exception as e:
|
|
40
|
+
err_code = "TEST_FAILED"
|
|
41
|
+
err_reason = safe_error("", e)
|
|
42
|
+
self._log_reachability_failure(
|
|
43
|
+
provider, provider_capability_type, err_code, err_reason
|
|
44
|
+
)
|
|
45
|
+
return False, err_code, err_reason
|
|
46
|
+
|
|
47
|
+
async def _build_provider_display_data(
|
|
48
|
+
self,
|
|
49
|
+
providers,
|
|
50
|
+
provider_type: str,
|
|
51
|
+
reachability_check_enabled: bool,
|
|
52
|
+
) -> list[dict]:
|
|
53
|
+
if not providers:
|
|
54
|
+
return []
|
|
55
|
+
|
|
56
|
+
if reachability_check_enabled:
|
|
57
|
+
check_results = await asyncio.gather(
|
|
58
|
+
*[self._test_provider_capability(provider) for provider in providers],
|
|
59
|
+
return_exceptions=True,
|
|
60
|
+
)
|
|
61
|
+
else:
|
|
62
|
+
check_results = [None for _ in providers]
|
|
63
|
+
|
|
64
|
+
display_data = []
|
|
65
|
+
for provider, reachable in zip(providers, check_results):
|
|
66
|
+
meta = provider.meta()
|
|
67
|
+
id_ = meta.id
|
|
68
|
+
error_code = None
|
|
69
|
+
|
|
70
|
+
if isinstance(reachable, asyncio.CancelledError):
|
|
71
|
+
raise reachable
|
|
72
|
+
if isinstance(reachable, Exception):
|
|
73
|
+
self._log_reachability_failure(
|
|
74
|
+
provider,
|
|
75
|
+
None,
|
|
76
|
+
reachable.__class__.__name__,
|
|
77
|
+
safe_error("", reachable),
|
|
78
|
+
)
|
|
79
|
+
reachable_flag = False
|
|
80
|
+
error_code = reachable.__class__.__name__
|
|
81
|
+
elif isinstance(reachable, tuple):
|
|
82
|
+
reachable_flag, error_code, _ = reachable
|
|
83
|
+
else:
|
|
84
|
+
reachable_flag = reachable
|
|
85
|
+
|
|
86
|
+
if provider_type == "llm":
|
|
87
|
+
info = f"{id_} ({meta.model})"
|
|
88
|
+
else:
|
|
89
|
+
info = f"{id_}"
|
|
90
|
+
|
|
91
|
+
if reachable_flag is True:
|
|
92
|
+
mark = " ✅"
|
|
93
|
+
elif reachable_flag is False:
|
|
94
|
+
if error_code:
|
|
95
|
+
mark = f" ❌(errcode: {error_code})"
|
|
96
|
+
else:
|
|
97
|
+
mark = " ❌"
|
|
98
|
+
else:
|
|
99
|
+
mark = ""
|
|
100
|
+
|
|
101
|
+
display_data.append(
|
|
102
|
+
{
|
|
103
|
+
"info": info,
|
|
104
|
+
"mark": mark,
|
|
105
|
+
"provider": provider,
|
|
106
|
+
}
|
|
107
|
+
)
|
|
108
|
+
|
|
109
|
+
return display_data
|
|
110
|
+
|
|
111
|
+
async def provider(
|
|
112
|
+
self,
|
|
113
|
+
event: AstrMessageEvent,
|
|
114
|
+
idx: str | int | None = None,
|
|
115
|
+
idx2: int | None = None,
|
|
116
|
+
) -> None:
|
|
117
|
+
"""查看或者切换 LLM Provider"""
|
|
118
|
+
umo = event.unified_msg_origin
|
|
119
|
+
cfg = self.context.get_config(umo).get("provider_settings", {})
|
|
120
|
+
reachability_check_enabled = cfg.get("reachability_check", True)
|
|
121
|
+
|
|
122
|
+
if idx is None:
|
|
123
|
+
parts = ["## LLM Providers\n"]
|
|
124
|
+
|
|
125
|
+
llms = list(self.context.get_all_providers())
|
|
126
|
+
ttss = self.context.get_all_tts_providers()
|
|
127
|
+
stts = self.context.get_all_stt_providers()
|
|
128
|
+
|
|
129
|
+
if reachability_check_enabled and (llms or ttss or stts):
|
|
130
|
+
await event.send(
|
|
131
|
+
MessageEventResult().message("👀 Testing provider reachability...")
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
llm_data, tts_data, stt_data = await asyncio.gather(
|
|
135
|
+
self._build_provider_display_data(
|
|
136
|
+
llms,
|
|
137
|
+
"llm",
|
|
138
|
+
reachability_check_enabled,
|
|
139
|
+
),
|
|
140
|
+
self._build_provider_display_data(
|
|
141
|
+
ttss,
|
|
142
|
+
"tts",
|
|
143
|
+
reachability_check_enabled,
|
|
144
|
+
),
|
|
145
|
+
self._build_provider_display_data(
|
|
146
|
+
stts,
|
|
147
|
+
"stt",
|
|
148
|
+
reachability_check_enabled,
|
|
149
|
+
),
|
|
150
|
+
)
|
|
151
|
+
|
|
152
|
+
provider_using = self.context.get_using_provider(umo=umo)
|
|
153
|
+
for i, d in enumerate(llm_data):
|
|
154
|
+
line = f"{i + 1}. {d['info']}{d['mark']}"
|
|
155
|
+
if (
|
|
156
|
+
provider_using
|
|
157
|
+
and provider_using.meta().id == d["provider"].meta().id
|
|
158
|
+
):
|
|
159
|
+
line += " 👈"
|
|
160
|
+
parts.append(line + "\n")
|
|
161
|
+
|
|
162
|
+
if tts_data:
|
|
163
|
+
parts.append("\n## TTS Providers\n")
|
|
164
|
+
tts_using = self.context.get_using_tts_provider(umo=umo)
|
|
165
|
+
for i, d in enumerate(tts_data):
|
|
166
|
+
line = f"{i + 1}. {d['info']}{d['mark']}"
|
|
167
|
+
if tts_using and tts_using.meta().id == d["provider"].meta().id:
|
|
168
|
+
line += " 👈"
|
|
169
|
+
parts.append(line + "\n")
|
|
170
|
+
|
|
171
|
+
if stt_data:
|
|
172
|
+
parts.append("\n## STT Providers\n")
|
|
173
|
+
stt_using = self.context.get_using_stt_provider(umo=umo)
|
|
174
|
+
for i, d in enumerate(stt_data):
|
|
175
|
+
line = f"{i + 1}. {d['info']}{d['mark']}"
|
|
176
|
+
if stt_using and stt_using.meta().id == d["provider"].meta().id:
|
|
177
|
+
line += " 👈"
|
|
178
|
+
parts.append(line + "\n")
|
|
179
|
+
|
|
180
|
+
parts.append("\nUse /provider <idx> to switch LLM providers.")
|
|
181
|
+
ret = "".join(parts)
|
|
182
|
+
|
|
183
|
+
if ttss:
|
|
184
|
+
ret += "\nUse /provider tts <idx> to switch TTS providers."
|
|
185
|
+
if stts:
|
|
186
|
+
ret += "\nUse /provider stt <idx> to switch STT providers."
|
|
187
|
+
|
|
188
|
+
event.set_result(MessageEventResult().message(ret))
|
|
189
|
+
elif idx == "tts":
|
|
190
|
+
if idx2 is None:
|
|
191
|
+
event.set_result(
|
|
192
|
+
MessageEventResult().message("Please enter the index.")
|
|
193
|
+
)
|
|
194
|
+
return
|
|
195
|
+
if idx2 > len(self.context.get_all_tts_providers()) or idx2 < 1:
|
|
196
|
+
event.set_result(
|
|
197
|
+
MessageEventResult().message("❌ Invalid provider index.")
|
|
198
|
+
)
|
|
199
|
+
return
|
|
200
|
+
provider = self.context.get_all_tts_providers()[idx2 - 1]
|
|
201
|
+
id_ = provider.meta().id
|
|
202
|
+
await self.context.provider_manager.set_provider(
|
|
203
|
+
provider_id=id_,
|
|
204
|
+
provider_type=ProviderType.TEXT_TO_SPEECH,
|
|
205
|
+
umo=umo,
|
|
206
|
+
)
|
|
207
|
+
event.set_result(
|
|
208
|
+
MessageEventResult().message(f"✅ Successfully switched to {id_}.")
|
|
209
|
+
)
|
|
210
|
+
elif idx == "stt":
|
|
211
|
+
if idx2 is None:
|
|
212
|
+
event.set_result(
|
|
213
|
+
MessageEventResult().message("Please enter the index.")
|
|
214
|
+
)
|
|
215
|
+
return
|
|
216
|
+
if idx2 > len(self.context.get_all_stt_providers()) or idx2 < 1:
|
|
217
|
+
event.set_result(
|
|
218
|
+
MessageEventResult().message("❌ Invalid provider index.")
|
|
219
|
+
)
|
|
220
|
+
return
|
|
221
|
+
provider = self.context.get_all_stt_providers()[idx2 - 1]
|
|
222
|
+
id_ = provider.meta().id
|
|
223
|
+
await self.context.provider_manager.set_provider(
|
|
224
|
+
provider_id=id_,
|
|
225
|
+
provider_type=ProviderType.SPEECH_TO_TEXT,
|
|
226
|
+
umo=umo,
|
|
227
|
+
)
|
|
228
|
+
event.set_result(
|
|
229
|
+
MessageEventResult().message(f"✅ Successfully switched to {id_}.")
|
|
230
|
+
)
|
|
231
|
+
elif isinstance(idx, int):
|
|
232
|
+
if idx > len(self.context.get_all_providers()) or idx < 1:
|
|
233
|
+
event.set_result(
|
|
234
|
+
MessageEventResult().message("❌ Invalid provider index.")
|
|
235
|
+
)
|
|
236
|
+
return
|
|
237
|
+
provider = self.context.get_all_providers()[idx - 1]
|
|
238
|
+
id_ = provider.meta().id
|
|
239
|
+
await self.context.provider_manager.set_provider(
|
|
240
|
+
provider_id=id_,
|
|
241
|
+
provider_type=ProviderType.CHAT_COMPLETION,
|
|
242
|
+
umo=umo,
|
|
243
|
+
)
|
|
244
|
+
event.set_result(
|
|
245
|
+
MessageEventResult().message(f"✅ Successfully switched to {id_}.")
|
|
246
|
+
)
|
|
247
|
+
else:
|
|
248
|
+
event.set_result(MessageEventResult().message("❌ Invalid parameter."))
|