AstrBot 4.3.3__tar.gz → 4.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/auto_assign.yml +2 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/codeql.yml +2 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/dashboard_ci.yml +9 -2
- astrbot-4.5.0/.pre-commit-config.yaml +25 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/PKG-INFO +91 -55
- {astrbot-4.3.3 → astrbot-4.5.0}/README.md +85 -53
- {astrbot-4.3.3 → astrbot-4.5.0}/README_en.md +9 -9
- {astrbot-4.3.3 → astrbot-4.5.0}/README_ja.md +4 -4
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/mcp_client.py +18 -4
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/tool_loop_agent_runner.py +31 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/astr_agent_context.py +1 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/astrbot_config_mgr.py +23 -51
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/default.py +139 -14
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/conversation_mgr.py +36 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/core_lifecycle.py +24 -5
- astrbot-4.5.0/astrbot/core/db/migration/migra_45_to_46.py +44 -0
- astrbot-4.5.0/astrbot/core/db/vec_db/base.py +77 -0
- astrbot-4.5.0/astrbot/core/db/vec_db/faiss_impl/document_storage.py +379 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +31 -3
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +81 -23
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/file_token_service.py +6 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/initial_loader.py +6 -3
- astrbot-4.5.0/astrbot/core/knowledge_base/chunking/__init__.py +11 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/chunking/base.py +24 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/chunking/fixed_size.py +57 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/chunking/recursive.py +155 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/kb_db_sqlite.py +299 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/kb_helper.py +348 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/kb_mgr.py +287 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/models.py +114 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/__init__.py +15 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/base.py +50 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/markitdown_parser.py +25 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/pdf_parser.py +100 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/text_parser.py +41 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/parsers/util.py +13 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/__init__.py +16 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +767 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/manager.py +273 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/rank_fusion.py +138 -0
- astrbot-4.5.0/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +130 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/method/llm_request.py +61 -21
- astrbot-4.5.0/astrbot/core/pipeline/process_stage/utils.py +80 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/scheduler.py +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/astr_message_event.py +8 -7
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/manager.py +4 -0
- astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_adapter.py +727 -0
- astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_api.py +940 -0
- astrbot-4.5.0/astrbot/core/platform/sources/misskey/misskey_event.py +158 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/misskey/misskey_utils.py +254 -43
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +2 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/satori/satori_adapter.py +27 -1
- astrbot-4.5.0/astrbot/core/platform/sources/satori/satori_event.py +423 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -1
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +289 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +17 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +20 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +445 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +378 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +149 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +148 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +166 -0
- astrbot-4.5.0/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +199 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/manager.py +14 -9
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/provider.py +67 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/anthropic_source.py +4 -4
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dashscope_source.py +10 -9
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dify_source.py +6 -8
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_embedding_source.py +1 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_embedding_source.py +1 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_source.py +18 -15
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/openai_tts_api_source.py +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/context.py +3 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star.py +6 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_manager.py +13 -7
- astrbot-4.5.0/astrbot/core/umop_config_router.py +81 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/updator.py +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/io.py +23 -12
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/__init__.py +2 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/config.py +137 -9
- astrbot-4.5.0/astrbot/dashboard/routes/knowledge_base.py +1065 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/plugin.py +24 -5
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/tools.py +14 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/update.py +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/server.py +6 -0
- astrbot-4.5.0/astrbot/dashboard/utils.py +161 -0
- astrbot-4.5.0/astrbot.lock +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.0.md +1 -1
- astrbot-4.5.0/changelogs/v3.4.16.md +6 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.33.md +4 -4
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.37.md +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.0.md +12 -12
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.1.md +3 -3
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.12.md +2 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.25.md +7 -7
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.5.md +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.0.md +10 -10
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.3.md +5 -5
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.4.md +5 -5
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.3.md +9 -9
- astrbot-4.5.0/changelogs/v4.3.5.md +8 -0
- astrbot-4.5.0/changelogs/v4.5.0.md +14 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/compose.yml +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/Chat.vue +14 -1
- astrbot-4.5.0/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +105 -0
- astrbot-4.5.0/dashboard/src/components/platform/AddNewPlatform.vue +1019 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/AstrBotConfig.vue +54 -24
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/AstrBotConfigV4.vue +2 -2
- astrbot-4.5.0/dashboard/src/components/shared/ExtensionCard.vue +241 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ItemCard.vue +7 -1
- astrbot-4.5.0/dashboard/src/components/shared/KnowledgeBaseSelector.vue +223 -0
- astrbot-4.5.0/dashboard/src/components/shared/PersonaForm.vue +536 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/PersonaSelector.vue +31 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/navigation.json +6 -3
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/conversation.json +3 -1
- astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +83 -0
- astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +52 -0
- astrbot-4.5.0/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +67 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/provider.json +4 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/session-management.json +29 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/tool-use.json +3 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +8 -5
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +6 -4
- astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +108 -0
- astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +55 -0
- astrbot-4.5.0/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +67 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/platform.json +6 -6
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/provider.json +17 -15
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +30 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +3 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/translations.ts +16 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +4 -4
- astrbot-4.5.0/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +59 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +116 -13
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +39 -33
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/main.ts +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/MainRoutes.ts +34 -8
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/common.js +3 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/theme/LightTheme.ts +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/platformUtils.js +2 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/AboutPage.vue +2 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/AlkaidPage.vue +3 -3
- astrbot-4.5.0/dashboard/src/views/ConfigPage.vue +568 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ConversationPage.vue +3 -3
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ExtensionPage.vue +24 -20
- astrbot-4.5.0/dashboard/src/views/PersonaPage.vue +322 -0
- astrbot-4.5.0/dashboard/src/views/PlatformPage.vue +237 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ProviderPage.vue +128 -88
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/SessionManagementPage.vue +323 -4
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ToolUsePage.vue +6 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/KnowledgeBase.vue +12 -6
- astrbot-4.5.0/dashboard/src/views/knowledge-base/DocumentDetail.vue +512 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/KBDetail.vue +351 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/KBList.vue +615 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +660 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +248 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/components/SettingsTab.vue +316 -0
- astrbot-4.5.0/dashboard/src/views/knowledge-base/index.vue +37 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/vite.config.ts +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/main.py +1 -1
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/alter_cmd.py +6 -22
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/conversation.py +1 -26
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/provider.py +1 -1
- astrbot-4.5.0/packages/astrbot/commands/sid.py +36 -0
- astrbot-4.5.0/packages/astrbot/commands/utils/rst_scene.py +26 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/long_term_memory.py +8 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/process_llm_request.py +2 -1
- astrbot-4.5.0/packages/thinking_filter/main.py +203 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/main.py +44 -17
- {astrbot-4.3.3 → astrbot-4.5.0}/pyproject.toml +7 -2
- {astrbot-4.3.3 → astrbot-4.5.0}/requirements.txt +5 -0
- astrbot-4.3.3/.pre-commit-config.yaml +0 -13
- astrbot-4.3.3/astrbot/core/db/vec_db/base.py +0 -46
- astrbot-4.3.3/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -121
- astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -391
- astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_api.py +0 -404
- astrbot-4.3.3/astrbot/core/platform/sources/misskey/misskey_event.py +0 -123
- astrbot-4.3.3/astrbot/core/platform/sources/satori/satori_event.py +0 -230
- astrbot-4.3.3/changelogs/v3.4.16.md +0 -6
- astrbot-4.3.3/dashboard/src/components/platform/AddNewPlatform.vue +0 -173
- astrbot-4.3.3/dashboard/src/components/shared/ExtensionCard.vue +0 -227
- astrbot-4.3.3/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -225
- astrbot-4.3.3/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -37
- astrbot-4.3.3/dashboard/src/views/ConfigPage.vue +0 -1168
- astrbot-4.3.3/dashboard/src/views/PersonaPage.vue +0 -803
- astrbot-4.3.3/dashboard/src/views/PlatformPage.vue +0 -445
- astrbot-4.3.3/packages/astrbot/commands/sid.py +0 -29
- astrbot-4.3.3/packages/thinking_filter/main.py +0 -62
- astrbot-4.3.3/packages/web_searcher/engines/google.py +0 -30
- {astrbot-4.3.3 → astrbot-4.5.0}/.dockerignore +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/FUNDING.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/copilot-instructions.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/dependabot.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.github/workflows/stale.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.gitignore +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/.python-version +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/Dockerfile +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/Dockerfile_with_node +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/LICENSE +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/all.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/message_components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/po.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/log.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/message/components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/coze_api_client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/coze_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/README.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/config.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/dify_api_client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/.gitignore +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/LICENSE +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/README.md +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/env.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/index.html +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/public/_redirects +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/App.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/MessageList.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/config.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/tsconfig.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/admin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/help.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/llm.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/persona.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/plugin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/setunset.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/t2i.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/tool.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/commands/tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/astrbot/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/requirements.txt +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/python_interpreter/shared/api.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/reminder/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/reminder/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/session_controller/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/session_controller/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/thinking_filter/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/bing.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/packages/web_searcher/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/samples/stt_health_check.wav +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/tests/test_dashboard.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/tests/test_main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.5.0}/tests/test_plugin_manager.py +0 -0
|
@@ -16,7 +16,7 @@ body:
|
|
|
16
16
|
|
|
17
17
|
请将插件信息填写到下方的 JSON 代码块中。其中 `tags`(插件标签)和 `social_link`(社交链接)选填。
|
|
18
18
|
|
|
19
|
-
不熟悉 JSON
|
|
19
|
+
不熟悉 JSON ?可以从 [此处](https://plugins.astrbot.app/submit) 生成 JSON ,生成后记得复制粘贴过来.
|
|
20
20
|
|
|
21
21
|
- type: textarea
|
|
22
22
|
id: plugin-info
|
|
@@ -60,7 +60,7 @@ jobs:
|
|
|
60
60
|
|
|
61
61
|
# Initializes the CodeQL tools for scanning.
|
|
62
62
|
- name: Initialize CodeQL
|
|
63
|
-
uses: github/codeql-action/init@
|
|
63
|
+
uses: github/codeql-action/init@v4
|
|
64
64
|
with:
|
|
65
65
|
languages: ${{ matrix.language }}
|
|
66
66
|
build-mode: ${{ matrix.build-mode }}
|
|
@@ -88,6 +88,6 @@ jobs:
|
|
|
88
88
|
exit 1
|
|
89
89
|
|
|
90
90
|
- name: Perform CodeQL Analysis
|
|
91
|
-
uses: github/codeql-action/analyze@
|
|
91
|
+
uses: github/codeql-action/analyze@v4
|
|
92
92
|
with:
|
|
93
93
|
category: "/language:${{matrix.language}}"
|
|
@@ -13,11 +13,18 @@ jobs:
|
|
|
13
13
|
- name: Checkout repository
|
|
14
14
|
uses: actions/checkout@v5
|
|
15
15
|
|
|
16
|
+
- name: Setup Node.js
|
|
17
|
+
uses: actions/setup-node@v6
|
|
18
|
+
with:
|
|
19
|
+
node-version: 'latest'
|
|
20
|
+
|
|
16
21
|
- name: npm install, build
|
|
17
22
|
run: |
|
|
18
23
|
cd dashboard
|
|
19
|
-
npm install
|
|
20
|
-
|
|
24
|
+
npm install pnpm -g
|
|
25
|
+
pnpm install
|
|
26
|
+
pnpm i --save-dev @types/markdown-it
|
|
27
|
+
pnpm run build
|
|
21
28
|
|
|
22
29
|
- name: Inject Commit SHA
|
|
23
30
|
id: get_sha
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
default_install_hook_types: [pre-commit, prepare-commit-msg]
|
|
2
|
+
ci:
|
|
3
|
+
autofix_commit_msg: ":balloon: auto fixes by pre-commit hooks"
|
|
4
|
+
autofix_prs: true
|
|
5
|
+
autoupdate_branch: master
|
|
6
|
+
autoupdate_schedule: weekly
|
|
7
|
+
autoupdate_commit_msg: ":balloon: pre-commit autoupdate"
|
|
8
|
+
repos:
|
|
9
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
10
|
+
# Ruff version.
|
|
11
|
+
rev: v0.14.1
|
|
12
|
+
hooks:
|
|
13
|
+
# Run the linter.
|
|
14
|
+
- id: ruff-check
|
|
15
|
+
types_or: [ python, pyi ]
|
|
16
|
+
args: [ --fix ]
|
|
17
|
+
# Run the formatter.
|
|
18
|
+
- id: ruff-format
|
|
19
|
+
types_or: [ python, pyi ]
|
|
20
|
+
|
|
21
|
+
- repo: https://github.com/asottile/pyupgrade
|
|
22
|
+
rev: v3.21.0
|
|
23
|
+
hooks:
|
|
24
|
+
- id: pyupgrade
|
|
25
|
+
args: [--py310-plus]
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AstrBot
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.5.0
|
|
4
4
|
Summary: 易上手的多平台 LLM 聊天机器人及开发框架
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.10
|
|
7
7
|
Requires-Dist: aiocqhttp>=1.4.4
|
|
8
8
|
Requires-Dist: aiodocker>=0.24.0
|
|
9
|
+
Requires-Dist: aiofiles>=25.1.0
|
|
9
10
|
Requires-Dist: aiohttp>=3.11.18
|
|
10
11
|
Requires-Dist: aiosqlite>=0.21.0
|
|
11
12
|
Requires-Dist: anthropic>=0.51.0
|
|
@@ -25,10 +26,11 @@ Requires-Dist: docstring-parser>=0.16
|
|
|
25
26
|
Requires-Dist: faiss-cpu==1.10.0
|
|
26
27
|
Requires-Dist: filelock>=3.18.0
|
|
27
28
|
Requires-Dist: google-genai>=1.14.0
|
|
29
|
+
Requires-Dist: jieba>=0.42.1
|
|
28
30
|
Requires-Dist: lark-oapi>=1.4.15
|
|
29
31
|
Requires-Dist: lxml-html-clean>=0.4.2
|
|
32
|
+
Requires-Dist: markitdown-no-magika[docx,xls,xlsx]>=0.1.2
|
|
30
33
|
Requires-Dist: mcp>=1.8.0
|
|
31
|
-
Requires-Dist: mi-googlesearch-python==1.3.0.post1
|
|
32
34
|
Requires-Dist: openai>=1.78.0
|
|
33
35
|
Requires-Dist: ormsgpack>=1.9.1
|
|
34
36
|
Requires-Dist: pillow>=11.2.1
|
|
@@ -38,9 +40,11 @@ Requires-Dist: py-cord>=2.6.1
|
|
|
38
40
|
Requires-Dist: pydantic~=2.10.3
|
|
39
41
|
Requires-Dist: pydub>=0.25.1
|
|
40
42
|
Requires-Dist: pyjwt>=2.10.1
|
|
43
|
+
Requires-Dist: pypdf>=6.1.1
|
|
41
44
|
Requires-Dist: python-telegram-bot>=22.0
|
|
42
45
|
Requires-Dist: qq-botpy>=1.2.1
|
|
43
46
|
Requires-Dist: quart>=0.20.0
|
|
47
|
+
Requires-Dist: rank-bm25>=0.2.2
|
|
44
48
|
Requires-Dist: readability-lxml>=0.8.4.1
|
|
45
49
|
Requires-Dist: silk-python>=0.2.6
|
|
46
50
|
Requires-Dist: slack-sdk>=3.35.0
|
|
@@ -52,32 +56,41 @@ Requires-Dist: websockets>=15.0.1
|
|
|
52
56
|
Requires-Dist: wechatpy>=1.8.18
|
|
53
57
|
Description-Content-Type: text/markdown
|
|
54
58
|
|
|
55
|
-
<img width="430" height="31" alt="image" src="https://github.com/user-attachments/assets/474c822c-fab7-41be-8c23-6dae252823ed" /><p align="center">
|
|
56
|
-
|
|
57
59
|

|
|
58
60
|
|
|
59
61
|
</p>
|
|
60
62
|
|
|
61
63
|
<div align="center">
|
|
62
64
|
|
|
65
|
+
<br>
|
|
66
|
+
|
|
67
|
+
<div>
|
|
63
68
|
<a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
69
|
+
<a href="https://hellogithub.com/repository/AstrBotDevs/AstrBot" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=d127d50cd5e54c5382328acc3bb25483&claim_uid=ZO9by7qCXgSd6Lp" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
<br>
|
|
64
73
|
|
|
65
|
-
|
|
74
|
+
<div>
|
|
75
|
+
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?style=for-the-badge&color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
|
|
66
76
|
<img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
|
|
67
77
|
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?style=for-the-badge&color=76bad9"/></a>
|
|
68
|
-
<a
|
|
69
|
-
<a
|
|
70
|
-
|
|
71
|
-
|
|
78
|
+
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
|
|
79
|
+
<a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
80
|
+
<img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
|
|
81
|
+
</div>
|
|
72
82
|
|
|
73
|
-
<
|
|
74
|
-
|
|
83
|
+
<br>
|
|
84
|
+
|
|
85
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
|
|
86
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
75
87
|
<a href="https://astrbot.app/">文档</a> |
|
|
76
88
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
77
|
-
<a href="https://
|
|
89
|
+
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
90
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
|
|
78
91
|
</div>
|
|
79
92
|
|
|
80
|
-
AstrBot 是一个开源的一站式
|
|
93
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
|
|
81
94
|
|
|
82
95
|
## 主要功能
|
|
83
96
|
|
|
@@ -89,7 +102,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
|
|
|
89
102
|
|
|
90
103
|
## 部署方式
|
|
91
104
|
|
|
92
|
-
#### Docker 部署
|
|
105
|
+
#### Docker 部署(推荐 🥳)
|
|
93
106
|
|
|
94
107
|
推荐使用 Docker / Docker Compose 方式部署 AstrBot。
|
|
95
108
|
|
|
@@ -117,7 +130,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
|
|
|
117
130
|
|
|
118
131
|
社区贡献的部署方式。
|
|
119
132
|
|
|
120
|
-
[](https://repl.it/github/AstrBotDevs/AstrBot)
|
|
121
134
|
|
|
122
135
|
#### Windows 一键安装器部署
|
|
123
136
|
|
|
@@ -155,7 +168,6 @@ uv run main.py
|
|
|
155
168
|
- 5 群:822130018
|
|
156
169
|
- 6 群:753075035
|
|
157
170
|
- 开发者群:975206796
|
|
158
|
-
- 开发者群(备份):295657329
|
|
159
171
|
|
|
160
172
|
### Telegram 群组
|
|
161
173
|
|
|
@@ -167,48 +179,81 @@ uv run main.py
|
|
|
167
179
|
|
|
168
180
|
## ⚡ 消息平台支持情况
|
|
169
181
|
|
|
182
|
+
**官方维护**
|
|
183
|
+
|
|
170
184
|
| 平台 | 支持性 |
|
|
171
185
|
| -------- | ------- |
|
|
172
|
-
| QQ(
|
|
186
|
+
| QQ(官方平台) | ✔ |
|
|
173
187
|
| QQ(OneBot) | ✔ |
|
|
174
188
|
| Telegram | ✔ |
|
|
175
|
-
|
|
|
189
|
+
| 企微应用 | ✔ |
|
|
190
|
+
| 企微智能机器人 | ✔ |
|
|
176
191
|
| 微信客服 | ✔ |
|
|
177
192
|
| 微信公众号 | ✔ |
|
|
178
193
|
| 飞书 | ✔ |
|
|
179
194
|
| 钉钉 | ✔ |
|
|
180
195
|
| Slack | ✔ |
|
|
181
196
|
| Discord | ✔ |
|
|
182
|
-
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
183
|
-
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
184
197
|
| Satori | ✔ |
|
|
185
198
|
| Misskey | ✔ |
|
|
199
|
+
| Whatsapp | 将支持 |
|
|
200
|
+
| LINE | 将支持 |
|
|
201
|
+
|
|
202
|
+
**社区维护**
|
|
203
|
+
|
|
204
|
+
| 平台 | 支持性 |
|
|
205
|
+
| -------- | ------- |
|
|
206
|
+
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
207
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
208
|
+
| [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
|
|
209
|
+
| [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
|
|
186
210
|
|
|
187
211
|
## ⚡ 提供商支持情况
|
|
188
212
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
|
192
|
-
|
|
|
193
|
-
|
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
|
|
|
208
|
-
|
|
|
209
|
-
|
|
|
210
|
-
|
|
|
211
|
-
|
|
213
|
+
**大模型服务**
|
|
214
|
+
|
|
215
|
+
| 名称 | 支持性 | 备注 |
|
|
216
|
+
| -------- | ------- | ------- |
|
|
217
|
+
| OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
|
|
218
|
+
| Anthropic | ✔ | |
|
|
219
|
+
| Google Gemini | ✔ | |
|
|
220
|
+
| Moonshot AI | ✔ | |
|
|
221
|
+
| 智谱 AI | ✔ | |
|
|
222
|
+
| DeepSeek | ✔ | |
|
|
223
|
+
| Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
224
|
+
| LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
225
|
+
| [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
|
|
226
|
+
| [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
|
|
227
|
+
| [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
|
|
228
|
+
| 硅基流动 | ✔ | |
|
|
229
|
+
| PPIO 派欧云 | ✔ | |
|
|
230
|
+
| ModelScope | ✔ | |
|
|
231
|
+
| OneAPI | ✔ | |
|
|
232
|
+
| Dify | ✔ | |
|
|
233
|
+
| 阿里云百炼应用 | ✔ | |
|
|
234
|
+
| Coze | ✔ | |
|
|
235
|
+
|
|
236
|
+
**语音转文本服务**
|
|
237
|
+
|
|
238
|
+
| 名称 | 支持性 | 备注 |
|
|
239
|
+
| -------- | ------- | ------- |
|
|
240
|
+
| Whisper | ✔ | 支持 API、本地部署 |
|
|
241
|
+
| SenseVoice | ✔ | 本地部署 |
|
|
242
|
+
|
|
243
|
+
**文本转语音服务**
|
|
244
|
+
|
|
245
|
+
| 名称 | 支持性 | 备注 |
|
|
246
|
+
| -------- | ------- | ------- |
|
|
247
|
+
| OpenAI TTS | ✔ | |
|
|
248
|
+
| Gemini TTS | ✔ | |
|
|
249
|
+
| GSVI | ✔ | GPT-Sovits-Inference |
|
|
250
|
+
| GPT-SoVITs | ✔ | GPT-Sovits |
|
|
251
|
+
| FishAudio | ✔ | |
|
|
252
|
+
| Edge TTS | ✔ | Edge 浏览器的免费 TTS |
|
|
253
|
+
| 阿里云百炼 TTS | ✔ | |
|
|
254
|
+
| Azure TTS | ✔ | |
|
|
255
|
+
| Minimax TTS | ✔ | |
|
|
256
|
+
| 火山引擎 TTS | ✔ | |
|
|
212
257
|
|
|
213
258
|
## ❤️ 贡献
|
|
214
259
|
|
|
@@ -223,7 +268,7 @@ uv run main.py
|
|
|
223
268
|
AstrBot 使用 `ruff` 进行代码格式化和检查。
|
|
224
269
|
|
|
225
270
|
```bash
|
|
226
|
-
git clone https://github.com/
|
|
271
|
+
git clone https://github.com/AstrBotDevs/AstrBot
|
|
227
272
|
pip install pre-commit
|
|
228
273
|
pre-commit install
|
|
229
274
|
```
|
|
@@ -240,23 +285,14 @@ pre-commit install
|
|
|
240
285
|
|
|
241
286
|
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
|
|
242
287
|
|
|
243
|
-
另外,一些同类型其他的活跃开源 Bot 项目:
|
|
244
|
-
|
|
245
|
-
- [nonebot/nonebot2](https://github.com/nonebot/nonebot2) - 扩展性极强的 Bot 框架
|
|
246
|
-
- [koishijs/koishi](https://github.com/koishijs/koishi) - 扩展性极强的 Bot 框架
|
|
247
|
-
- [MaiM-with-u/MaiBot](https://github.com/MaiM-with-u/MaiBot) - 注重拟人功能的 ChatBot
|
|
248
|
-
- [langbot-app/LangBot](https://github.com/langbot-app/LangBot) - 功能丰富的 Bot 平台
|
|
249
|
-
- [KroMiose/nekro-agent](https://github.com/KroMiose/nekro-agent) - 注重 Agent 的 ChatBot
|
|
250
|
-
- [zhenxun-org/zhenxun_bot](https://github.com/zhenxun-org/zhenxun_bot) - 功能完善的 ChatBot
|
|
251
|
-
|
|
252
288
|
## ⭐ Star History
|
|
253
289
|
|
|
254
290
|
> [!TIP]
|
|
255
|
-
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star
|
|
291
|
+
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
|
|
256
292
|
|
|
257
293
|
<div align="center">
|
|
258
294
|
|
|
259
|
-
[](https://star-history.com/#astrbotdevs/astrbot&Date)
|
|
260
296
|
|
|
261
297
|
</div>
|
|
262
298
|
|
|
@@ -1,29 +1,38 @@
|
|
|
1
|
-
<img width="430" height="31" alt="image" src="https://github.com/user-attachments/assets/474c822c-fab7-41be-8c23-6dae252823ed" /><p align="center">
|
|
2
|
-
|
|
3
1
|

|
|
4
2
|
|
|
5
3
|
</p>
|
|
6
4
|
|
|
7
5
|
<div align="center">
|
|
8
6
|
|
|
7
|
+
<br>
|
|
8
|
+
|
|
9
|
+
<div>
|
|
9
10
|
<a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
11
|
+
<a href="https://hellogithub.com/repository/AstrBotDevs/AstrBot" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=d127d50cd5e54c5382328acc3bb25483&claim_uid=ZO9by7qCXgSd6Lp" alt="Featured|HelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<br>
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
<div>
|
|
17
|
+
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?style=for-the-badge&color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
|
|
12
18
|
<img src="https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&color=76bad9" alt="python">
|
|
13
19
|
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot.svg?style=for-the-badge&color=76bad9"/></a>
|
|
14
|
-
<a
|
|
15
|
-
<a
|
|
16
|
-
|
|
17
|
-
|
|
20
|
+
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
|
|
21
|
+
<a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
22
|
+
<img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%E4%B8%AA&style=for-the-badge&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
|
|
23
|
+
</div>
|
|
18
24
|
|
|
19
|
-
<
|
|
20
|
-
|
|
25
|
+
<br>
|
|
26
|
+
|
|
27
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
|
|
28
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
21
29
|
<a href="https://astrbot.app/">文档</a> |
|
|
22
30
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
23
|
-
<a href="https://
|
|
31
|
+
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
32
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
|
|
24
33
|
</div>
|
|
25
34
|
|
|
26
|
-
AstrBot 是一个开源的一站式
|
|
35
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
|
|
27
36
|
|
|
28
37
|
## 主要功能
|
|
29
38
|
|
|
@@ -35,7 +44,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
|
|
|
35
44
|
|
|
36
45
|
## 部署方式
|
|
37
46
|
|
|
38
|
-
#### Docker 部署
|
|
47
|
+
#### Docker 部署(推荐 🥳)
|
|
39
48
|
|
|
40
49
|
推荐使用 Docker / Docker Compose 方式部署 AstrBot。
|
|
41
50
|
|
|
@@ -63,7 +72,7 @@ AstrBot 已由雨云官方上架至云应用平台,可一键部署。
|
|
|
63
72
|
|
|
64
73
|
社区贡献的部署方式。
|
|
65
74
|
|
|
66
|
-
[](https://repl.it/github/AstrBotDevs/AstrBot)
|
|
67
76
|
|
|
68
77
|
#### Windows 一键安装器部署
|
|
69
78
|
|
|
@@ -101,7 +110,6 @@ uv run main.py
|
|
|
101
110
|
- 5 群:822130018
|
|
102
111
|
- 6 群:753075035
|
|
103
112
|
- 开发者群:975206796
|
|
104
|
-
- 开发者群(备份):295657329
|
|
105
113
|
|
|
106
114
|
### Telegram 群组
|
|
107
115
|
|
|
@@ -113,48 +121,81 @@ uv run main.py
|
|
|
113
121
|
|
|
114
122
|
## ⚡ 消息平台支持情况
|
|
115
123
|
|
|
124
|
+
**官方维护**
|
|
125
|
+
|
|
116
126
|
| 平台 | 支持性 |
|
|
117
127
|
| -------- | ------- |
|
|
118
|
-
| QQ(
|
|
128
|
+
| QQ(官方平台) | ✔ |
|
|
119
129
|
| QQ(OneBot) | ✔ |
|
|
120
130
|
| Telegram | ✔ |
|
|
121
|
-
|
|
|
131
|
+
| 企微应用 | ✔ |
|
|
132
|
+
| 企微智能机器人 | ✔ |
|
|
122
133
|
| 微信客服 | ✔ |
|
|
123
134
|
| 微信公众号 | ✔ |
|
|
124
135
|
| 飞书 | ✔ |
|
|
125
136
|
| 钉钉 | ✔ |
|
|
126
137
|
| Slack | ✔ |
|
|
127
138
|
| Discord | ✔ |
|
|
128
|
-
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
129
|
-
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
130
139
|
| Satori | ✔ |
|
|
131
140
|
| Misskey | ✔ |
|
|
141
|
+
| Whatsapp | 将支持 |
|
|
142
|
+
| LINE | 将支持 |
|
|
143
|
+
|
|
144
|
+
**社区维护**
|
|
145
|
+
|
|
146
|
+
| 平台 | 支持性 |
|
|
147
|
+
| -------- | ------- |
|
|
148
|
+
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
149
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
150
|
+
| [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
|
|
151
|
+
| [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11) | ✔ |
|
|
132
152
|
|
|
133
153
|
## ⚡ 提供商支持情况
|
|
134
154
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
|
|
|
145
|
-
|
|
|
146
|
-
|
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
155
|
+
**大模型服务**
|
|
156
|
+
|
|
157
|
+
| 名称 | 支持性 | 备注 |
|
|
158
|
+
| -------- | ------- | ------- |
|
|
159
|
+
| OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
|
|
160
|
+
| Anthropic | ✔ | |
|
|
161
|
+
| Google Gemini | ✔ | |
|
|
162
|
+
| Moonshot AI | ✔ | |
|
|
163
|
+
| 智谱 AI | ✔ | |
|
|
164
|
+
| DeepSeek | ✔ | |
|
|
165
|
+
| Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
166
|
+
| LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
167
|
+
| [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
|
|
168
|
+
| [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
|
|
169
|
+
| [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
|
|
170
|
+
| 硅基流动 | ✔ | |
|
|
171
|
+
| PPIO 派欧云 | ✔ | |
|
|
172
|
+
| ModelScope | ✔ | |
|
|
173
|
+
| OneAPI | ✔ | |
|
|
174
|
+
| Dify | ✔ | |
|
|
175
|
+
| 阿里云百炼应用 | ✔ | |
|
|
176
|
+
| Coze | ✔ | |
|
|
177
|
+
|
|
178
|
+
**语音转文本服务**
|
|
179
|
+
|
|
180
|
+
| 名称 | 支持性 | 备注 |
|
|
181
|
+
| -------- | ------- | ------- |
|
|
182
|
+
| Whisper | ✔ | 支持 API、本地部署 |
|
|
183
|
+
| SenseVoice | ✔ | 本地部署 |
|
|
184
|
+
|
|
185
|
+
**文本转语音服务**
|
|
186
|
+
|
|
187
|
+
| 名称 | 支持性 | 备注 |
|
|
188
|
+
| -------- | ------- | ------- |
|
|
189
|
+
| OpenAI TTS | ✔ | |
|
|
190
|
+
| Gemini TTS | ✔ | |
|
|
191
|
+
| GSVI | ✔ | GPT-Sovits-Inference |
|
|
192
|
+
| GPT-SoVITs | ✔ | GPT-Sovits |
|
|
193
|
+
| FishAudio | ✔ | |
|
|
194
|
+
| Edge TTS | ✔ | Edge 浏览器的免费 TTS |
|
|
195
|
+
| 阿里云百炼 TTS | ✔ | |
|
|
196
|
+
| Azure TTS | ✔ | |
|
|
197
|
+
| Minimax TTS | ✔ | |
|
|
198
|
+
| 火山引擎 TTS | ✔ | |
|
|
158
199
|
|
|
159
200
|
## ❤️ 贡献
|
|
160
201
|
|
|
@@ -169,7 +210,7 @@ uv run main.py
|
|
|
169
210
|
AstrBot 使用 `ruff` 进行代码格式化和检查。
|
|
170
211
|
|
|
171
212
|
```bash
|
|
172
|
-
git clone https://github.com/
|
|
213
|
+
git clone https://github.com/AstrBotDevs/AstrBot
|
|
173
214
|
pip install pre-commit
|
|
174
215
|
pre-commit install
|
|
175
216
|
```
|
|
@@ -186,23 +227,14 @@ pre-commit install
|
|
|
186
227
|
|
|
187
228
|
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
|
|
188
229
|
|
|
189
|
-
另外,一些同类型其他的活跃开源 Bot 项目:
|
|
190
|
-
|
|
191
|
-
- [nonebot/nonebot2](https://github.com/nonebot/nonebot2) - 扩展性极强的 Bot 框架
|
|
192
|
-
- [koishijs/koishi](https://github.com/koishijs/koishi) - 扩展性极强的 Bot 框架
|
|
193
|
-
- [MaiM-with-u/MaiBot](https://github.com/MaiM-with-u/MaiBot) - 注重拟人功能的 ChatBot
|
|
194
|
-
- [langbot-app/LangBot](https://github.com/langbot-app/LangBot) - 功能丰富的 Bot 平台
|
|
195
|
-
- [KroMiose/nekro-agent](https://github.com/KroMiose/nekro-agent) - 注重 Agent 的 ChatBot
|
|
196
|
-
- [zhenxun-org/zhenxun_bot](https://github.com/zhenxun-org/zhenxun_bot) - 功能完善的 ChatBot
|
|
197
|
-
|
|
198
230
|
## ⭐ Star History
|
|
199
231
|
|
|
200
232
|
> [!TIP]
|
|
201
|
-
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star
|
|
233
|
+
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
|
|
202
234
|
|
|
203
235
|
<div align="center">
|
|
204
236
|
|
|
205
|
-
[](https://star-history.com/#astrbotdevs/astrbot&Date)
|
|
206
238
|
|
|
207
239
|
</div>
|
|
208
240
|
|
|
@@ -10,16 +10,16 @@ _✨ Easy-to-use Multi-platform LLM Chatbot & Development Framework ✨_
|
|
|
10
10
|
|
|
11
11
|
<a href="https://trendshift.io/repositories/12875" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12875" alt="Soulter%2FAstrBot | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
12
12
|
|
|
13
|
-
[](https://img.shields.io/github/v/release/AstrBotDevs/AstrBot)](https://github.com/AstrBotDevs/AstrBot/releases/latest)
|
|
14
14
|
<img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
|
|
15
|
-
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot
|
|
15
|
+
<a href="https://hub.docker.com/r/soulter/astrbot"><img alt="Docker pull" src="https://img.shields.io/docker/pulls/soulter/astrbot"/></a>
|
|
16
16
|
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="Static Badge" src="https://img.shields.io/badge/QQ群-630166526-purple"></a>
|
|
17
17
|
[](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
|
|
18
18
|

|
|
19
|
-
[](https://codecov.io/gh/AstrBotDevs/AstrBot)
|
|
20
20
|
|
|
21
21
|
<a href="https://astrbot.app/">Documentation</a> |
|
|
22
|
-
<a href="https://github.com/
|
|
22
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/issues">Issue Tracking</a>
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
25
|
AstrBot is a loosely coupled, asynchronous chatbot and development framework that supports multi-platform deployment, featuring an easy-to-use plugin system and comprehensive Large Language Model (LLM) integration capabilities.
|
|
@@ -49,7 +49,7 @@ Requires Python (>3.10). See docs: [Windows Installer Guide](https://astrbot.app
|
|
|
49
49
|
|
|
50
50
|
#### Replit Deployment
|
|
51
51
|
|
|
52
|
-
[](https://repl.it/github/AstrBotDevs/AstrBot)
|
|
53
53
|
|
|
54
54
|
#### CasaOS Deployment
|
|
55
55
|
|
|
@@ -67,8 +67,8 @@ See docs: [Source Code Deployment](https://astrbot.app/deploy/astrbot/cli.html)
|
|
|
67
67
|
| QQ (Official Bot) | ✔ | Private/Group chats | Text, Images |
|
|
68
68
|
| QQ (OneBot) | ✔ | Private/Group chats | Text, Images, Voice |
|
|
69
69
|
| WeChat (Personal) | ✔ | Private/Group chats | Text, Images, Voice |
|
|
70
|
-
| [Telegram](https://github.com/
|
|
71
|
-
| [WeChat Work](https://github.com/
|
|
70
|
+
| [Telegram](https://github.com/AstrBotDevs/AstrBot_plugin_telegram) | ✔ | Private/Group chats | Text, Images |
|
|
71
|
+
| [WeChat Work](https://github.com/AstrBotDevs/AstrBot_plugin_wecom) | ✔ | Private chats | Text, Images, Voice |
|
|
72
72
|
| Feishu | ✔ | Group chats | Text, Images |
|
|
73
73
|
| WeChat Open Platform | 🚧 | Planned | - |
|
|
74
74
|
| Discord | 🚧 | Planned | - |
|
|
@@ -157,7 +157,7 @@ _✨ Built-in Web Chat Interface ✨_
|
|
|
157
157
|
|
|
158
158
|
<div align="center">
|
|
159
159
|
|
|
160
|
-
[](https://star-history.com/#AstrBotDevs/AstrBot&Date)
|
|
161
161
|
|
|
162
162
|
</div>
|
|
163
163
|
|
|
@@ -169,7 +169,7 @@ _✨ Built-in Web Chat Interface ✨_
|
|
|
169
169
|
|
|
170
170
|
<!-- ## ✨ ATRI [Beta]
|
|
171
171
|
|
|
172
|
-
Available as plugin: [astrbot_plugin_atri](https://github.com/
|
|
172
|
+
Available as plugin: [astrbot_plugin_atri](https://github.com/AstrBotDevs/AstrBot_plugin_atri)
|
|
173
173
|
|
|
174
174
|
1. Qwen1.5-7B-Chat Lora model fine-tuned with ATRI character data
|
|
175
175
|
2. Long-term memory
|