AstrBot 4.7.4__tar.gz → 4.9.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.9.0/.github/workflows/smoke_test.yml +58 -0
- astrbot-4.9.0/CONTRIBUTING.md +65 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/PKG-INFO +50 -37
- {astrbot-4.7.4 → astrbot-4.9.0}/README.md +49 -36
- {astrbot-4.7.4 → astrbot-4.9.0}/README_en.md +40 -26
- astrbot-4.9.0/README_fr.md +248 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/README_ja.md +40 -26
- astrbot-4.9.0/README_ru.md +248 -0
- astrbot-4.9.0/README_zh-TW.md +248 -0
- astrbot-4.9.0/astrbot/cli/__init__.py +1 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/tool.py +7 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/astr_agent_run_util.py +15 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/astr_agent_tool_exec.py +5 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/config/astrbot_config.py +4 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/config/default.py +116 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/core_lifecycle.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/__init__.py +32 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/migra_3_to_4.py +2 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/sqlite_v3.py +6 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/po.py +16 -15
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/sqlite.py +56 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +2 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/event_bus.py +6 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/retrieval/manager.py +5 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/log.py +2 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/message/components.py +9 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/persona_mgr.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/content_safety_check/stage.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/context_utils.py +2 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/method/star_request.py +1 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/stage.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/respond/stage.py +4 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/result_decorate/stage.py +68 -21
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/scheduler.py +5 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/waking_check/stage.py +10 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/astr_message_event.py +5 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/astrbot_message.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/manager.py +71 -9
- astrbot-4.9.0/astrbot/core/platform/platform.py +156 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/platform_metadata.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/register.py +1 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +8 -6
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +13 -8
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +28 -22
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +5 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/discord/client.py +16 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/discord/components.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +53 -26
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/discord/discord_platform_event.py +29 -8
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/lark/lark_adapter.py +178 -22
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/lark/lark_event.py +39 -4
- astrbot-4.9.0/astrbot/core/platform/sources/lark/server.py +206 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/misskey/misskey_adapter.py +3 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +64 -18
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +14 -10
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +36 -11
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +15 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/satori/satori_adapter.py +1 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/slack/client.py +58 -40
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/slack/slack_adapter.py +36 -16
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/slack/slack_event.py +11 -10
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/telegram/tg_adapter.py +2 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/telegram/tg_event.py +23 -27
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/webchat/webchat_adapter.py +97 -31
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/webchat/webchat_event.py +35 -35
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +27 -11
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom/wecom_adapter.py +75 -36
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom/wecom_event.py +3 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +26 -9
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +3 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +27 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +81 -35
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +11 -8
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform_message_history_mgr.py +3 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/func_tool_manager.py +3 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/manager.py +130 -74
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/provider.py +12 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/azure_tts_source.py +31 -9
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/bailian_rerank_source.py +4 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/dashscope_tts.py +3 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/edge_tts_source.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +5 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/gemini_embedding_source.py +15 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/gemini_source.py +12 -10
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/minimax_tts_api_source.py +4 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/openai_embedding_source.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/openai_source.py +4 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +5 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/vllm_rerank_source.py +1 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/whisper_api_source.py +44 -12
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/whisper_selfhosted_source.py +6 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/xinference_rerank_source.py +10 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/context.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/register/star_handler.py +22 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/star_handler.py +85 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/updator.py +3 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/io.py +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/session_waiter.py +17 -10
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/shared_preferences.py +32 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/__init__.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/local_strategy.py +25 -31
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/tencent_record_helper.py +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/version_comparator.py +6 -3
- astrbot-4.9.0/astrbot/core/utils/webhook_utils.py +66 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/__init__.py +2 -0
- astrbot-4.9.0/astrbot/dashboard/routes/chat.py +649 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/config.py +14 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/knowledge_base.py +254 -79
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/log.py +13 -8
- astrbot-4.9.0/astrbot/dashboard/routes/platform.py +100 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/plugin.py +108 -51
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/route.py +2 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/server.py +9 -4
- astrbot-4.9.0/changelogs/v4.8.0.md +15 -0
- astrbot-4.9.0/changelogs/v4.9.0.md +19 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/compose.yml +2 -3
- astrbot-4.9.0/dashboard/src/assets/images/loading-seio.webp +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/Chat.vue +76 -8
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/ChatInput.vue +92 -7
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/MessageList.vue +283 -7
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/StandaloneChat.vue +9 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/AstrBotConfigV4.vue +2 -2
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ConsoleDisplayer.vue +87 -41
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ListConfigItem.vue +116 -39
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ProxySelector.vue +33 -31
- astrbot-4.9.0/dashboard/src/composables/useMediaHandling.ts +184 -0
- astrbot-4.9.0/dashboard/src/composables/useMessages.ts +483 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/composables.ts +19 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/common.json +12 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/header.json +1 -12
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/chat.json +10 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/config-metadata.json +12 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/extension.json +27 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/platform.json +25 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/common.json +12 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/header.json +1 -12
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/chat.json +10 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +15 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/console.json +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +1 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/extension.json +28 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/platform.json +25 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +4 -88
- astrbot-4.9.0/dashboard/src/stores/common.js +168 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ConfigPage.vue +14 -6
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ConsolePage.vue +6 -5
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ConversationPage.vue +17 -3
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ExtensionPage.vue +422 -25
- astrbot-4.9.0/dashboard/src/views/PlatformPage.vue +501 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ProviderPage.vue +34 -1
- astrbot-4.9.0/k8s/astrbot/00-namespace.yaml +4 -0
- astrbot-4.9.0/k8s/astrbot/01-pvc.yaml +14 -0
- astrbot-4.9.0/k8s/astrbot/02-deployment.yaml +49 -0
- astrbot-4.9.0/k8s/astrbot/03-service-nodeport.yaml +28 -0
- astrbot-4.9.0/k8s/astrbot/04-service-loadbalancer.yaml +24 -0
- astrbot-4.9.0/k8s/astrbot_with_napcat/00-namespace.yaml +4 -0
- astrbot-4.9.0/k8s/astrbot_with_napcat/01-pvc.yaml +46 -0
- astrbot-4.9.0/k8s/astrbot_with_napcat/02-deployment.yaml +64 -0
- astrbot-4.9.0/k8s/astrbot_with_napcat/03-service-nodeport.yaml +20 -0
- astrbot-4.9.0/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +18 -0
- astrbot-4.9.0/packages/astrbot/main.py +128 -0
- astrbot-4.9.0/packages/astrbot/metadata.yaml +4 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/astrbot/process_llm_request.py +5 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/conversation.py +10 -25
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/main.py +1 -109
- astrbot-4.9.0/packages/builtin_commands/metadata.yaml +4 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/python_interpreter/main.py +8 -1
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/reminder/main.py +11 -8
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/web_searcher/engines/__init__.py +16 -9
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/web_searcher/engines/bing.py +1 -9
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/web_searcher/engines/sogo.py +10 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/pyproject.toml +1 -1
- astrbot-4.9.0/tests/test_kb_import.py +209 -0
- astrbot-4.9.0/typings/faiss/__init__.pyi +90 -0
- astrbot-4.7.4/astrbot/cli/__init__.py +0 -1
- astrbot-4.7.4/astrbot/core/platform/platform.py +0 -51
- astrbot-4.7.4/astrbot/dashboard/routes/chat.py +0 -414
- astrbot-4.7.4/dashboard/src/composables/useMediaHandling.ts +0 -104
- astrbot-4.7.4/dashboard/src/composables/useMessages.ts +0 -304
- astrbot-4.7.4/dashboard/src/stores/common.js +0 -194
- astrbot-4.7.4/dashboard/src/views/PlatformPage.vue +0 -238
- astrbot-4.7.4/packages/astrbot/metadata.yaml +0 -4
- {astrbot-4.7.4 → astrbot-4.9.0}/.dockerignore +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/FUNDING.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/auto_assign.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/copilot-instructions.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/dependabot.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.github/workflows/stale.yml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.gitignore +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.pre-commit-config.yaml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/.python-version +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/Dockerfile +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/LICENSE +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/all.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/message_components.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/message.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/astr_agent_hooks.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/kb_helper.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/parsers/util.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/process_stage/utils.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/anthropic_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/README.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/config.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/star.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/file_extract.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.7.1.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.7.3.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/changelogs/v4.7.4.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/.gitignore +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/LICENSE +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/README.md +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/env.d.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/index.html +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/public/_redirects +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/App.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/ConversationSidebar.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/composables/useRecording.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/config.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/main.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/ToolUsePage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/tsconfig.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/dashboard/vite.config.ts +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/main.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/astrbot/long_term_memory.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/__init__.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/admin.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/alter_cmd.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/help.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/llm.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/persona.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/plugin.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/provider.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/setunset.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/sid.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/t2i.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/tool.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/tts.py +0 -0
- {astrbot-4.7.4/packages/astrbot → astrbot-4.9.0/packages/builtin_commands}/commands/utils/rst_scene.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/python_interpreter/requirements.txt +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/python_interpreter/shared/api.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/reminder/metadata.yaml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/session_controller/main.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/session_controller/metadata.yaml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/web_searcher/main.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/packages/web_searcher/metadata.yaml +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/requirements.txt +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/samples/stt_health_check.wav +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/tests/test_dashboard.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/tests/test_main.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/tests/test_plugin_manager.py +0 -0
- {astrbot-4.7.4 → astrbot-4.9.0}/tests/test_security_fixes.py +0 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
name: Smoke Test
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
paths-ignore:
|
|
8
|
+
- 'README*.md'
|
|
9
|
+
- 'changelogs/**'
|
|
10
|
+
- 'dashboard/**'
|
|
11
|
+
pull_request:
|
|
12
|
+
workflow_dispatch:
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
smoke-test:
|
|
16
|
+
name: Run smoke tests
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
timeout-minutes: 10
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout
|
|
22
|
+
uses: actions/checkout@v6
|
|
23
|
+
with:
|
|
24
|
+
fetch-depth: 0
|
|
25
|
+
|
|
26
|
+
- name: Set up Python
|
|
27
|
+
uses: actions/setup-python@v6
|
|
28
|
+
with:
|
|
29
|
+
python-version: '3.12'
|
|
30
|
+
|
|
31
|
+
- name: Install UV package manager
|
|
32
|
+
run: |
|
|
33
|
+
pip install uv
|
|
34
|
+
|
|
35
|
+
- name: Install dependencies
|
|
36
|
+
run: |
|
|
37
|
+
uv sync
|
|
38
|
+
timeout-minutes: 15
|
|
39
|
+
|
|
40
|
+
- name: Run smoke tests
|
|
41
|
+
run: |
|
|
42
|
+
uv run main.py &
|
|
43
|
+
APP_PID=$!
|
|
44
|
+
|
|
45
|
+
echo "Waiting for application to start..."
|
|
46
|
+
for i in {1..60}; do
|
|
47
|
+
if curl -f http://localhost:6185 > /dev/null 2>&1; then
|
|
48
|
+
echo "Application started successfully!"
|
|
49
|
+
kill $APP_PID
|
|
50
|
+
exit 0
|
|
51
|
+
fi
|
|
52
|
+
sleep 1
|
|
53
|
+
done
|
|
54
|
+
|
|
55
|
+
echo "Application failed to start within 30 seconds"
|
|
56
|
+
kill $APP_PID 2>/dev/null || true
|
|
57
|
+
exit 1
|
|
58
|
+
timeout-minutes: 2
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# CONTRIBUTING
|
|
2
|
+
|
|
3
|
+
## 贡献指南
|
|
4
|
+
|
|
5
|
+
首先,感谢您花时间做出贡献!❤️
|
|
6
|
+
|
|
7
|
+
所有类型的贡献都受到鼓励和重视。有关不同的帮助方式和处理方式的详细信息,请参阅[目录](#目录)。在做出贡献之前,请确保阅读相关部分。这将使我们维护人员的工作变得更加容易,并为所有参与者带来顺畅的体验。社区期待您的贡献。🎉
|
|
8
|
+
|
|
9
|
+
### 目录
|
|
10
|
+
|
|
11
|
+
- [报告问题](#报告问题)
|
|
12
|
+
- [提交代码更改](#提交代码更改)
|
|
13
|
+
|
|
14
|
+
### 报告问题
|
|
15
|
+
|
|
16
|
+
如果您在使用 AstrBot 时遇到任何问题,请按照以下步骤报告:
|
|
17
|
+
|
|
18
|
+
1. **检查现有问题**:在提交新问题之前,请先检查 [Issues](https://github.com/AstrBotDevs/AstrBot/issues) 中是否已经存在类似的问题。
|
|
19
|
+
2. **创建新问题**:如果没有类似的问题,请创建一个新问题。请确保提供以下信息:
|
|
20
|
+
- 问题的简要描述
|
|
21
|
+
- 重现问题的步骤
|
|
22
|
+
- 预期结果和实际结果
|
|
23
|
+
- 相关日志或错误消息
|
|
24
|
+
|
|
25
|
+
### 提交代码更改
|
|
26
|
+
|
|
27
|
+
#### 分支命名
|
|
28
|
+
|
|
29
|
+
我们使用 `fix/` 前缀来修复错误,使用 `feat/` 前缀来添加新功能。对于 `fix/` 分支,请使用简短的描述,或者直接使用 Issue 编号。例如:`fix/1234` 或者 `fix/1234-login-typo`。对于 `feat/` 分支,请使用简短的描述,例如:`feat/add-user-profile`。
|
|
30
|
+
|
|
31
|
+
#### PR 描述
|
|
32
|
+
|
|
33
|
+
- 请使用英文描述您的 PR。
|
|
34
|
+
- 标题请使用 `fix: `, `feat: `, `docs: `, `style: `, `refactor: `, `test: `, `chore: ` 等语义化前缀,并简要描述更改内容。如:`fix: correct login page typo`。
|
|
35
|
+
|
|
36
|
+
## Contributing Guide
|
|
37
|
+
|
|
38
|
+
First off, thanks for taking the time to contribute! ❤️
|
|
39
|
+
|
|
40
|
+
All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
|
|
41
|
+
|
|
42
|
+
### Table of Contents
|
|
43
|
+
|
|
44
|
+
- [Reporting Issues](#reporting-issues)
|
|
45
|
+
- [Pull Requests](#pull-requests)
|
|
46
|
+
|
|
47
|
+
### Reporting Issues
|
|
48
|
+
|
|
49
|
+
If you encounter any issues while using AstrBot, please follow these steps to report them:
|
|
50
|
+
1. **Check Existing Issues**: Before submitting a new issue, please check if a similar issue already exists in the [Issues](https://github.com/AstrBotDevs/AstrBot/issues) section of the repository.
|
|
51
|
+
2. **Create a New Issue**: If no similar issue exists, please create a new issue. Make sure to provide the following information:
|
|
52
|
+
- A brief description of the issue
|
|
53
|
+
- Steps to reproduce the issue
|
|
54
|
+
- Expected and actual results
|
|
55
|
+
- Relevant logs or error messages
|
|
56
|
+
|
|
57
|
+
### Pull Requests
|
|
58
|
+
|
|
59
|
+
#### Branch Naming
|
|
60
|
+
|
|
61
|
+
We use the `fix/` prefix for bug fixes and the `feat/` prefix for new features. For `fix/` branches, please use a short description or directly use the Issue number, e.g., `fix/1234` or `fix/1234-login-typo`. For `feat/` branches, please use a short description, e.g., `feat/add-user-profile`.
|
|
62
|
+
|
|
63
|
+
#### PR Description
|
|
64
|
+
- Please use English to describe your PR.
|
|
65
|
+
- Use semantic prefixes like `fix: `, `feat: `, `docs: `, `style: `, `refactor: `, `test: `, `chore: ` in the title, followed by a brief description of the changes, e.g., `fix: correct login page typo`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AstrBot
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.9.0
|
|
4
4
|
Summary: Easy-to-use multi-platform LLM chatbot and development framework
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Keywords: Astrbot,Astrbot Module,Astrbot Plugin
|
|
@@ -61,11 +61,14 @@ Description-Content-Type: text/markdown
|
|
|
61
61
|
|
|
62
62
|

|
|
63
63
|
|
|
64
|
-
</p>
|
|
65
|
-
|
|
66
64
|
<div align="center">
|
|
67
65
|
|
|
68
|
-
|
|
66
|
+
|
|
67
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
|
|
68
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
69
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_zh-TW.md">繁體中文</a> |
|
|
70
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_fr.md">Français</a> |
|
|
71
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ru.md">Русский</a>
|
|
69
72
|
|
|
70
73
|
<div>
|
|
71
74
|
<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>
|
|
@@ -75,35 +78,38 @@ Description-Content-Type: text/markdown
|
|
|
75
78
|
<br>
|
|
76
79
|
|
|
77
80
|
<div>
|
|
78
|
-
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?
|
|
79
|
-
<img src="https://img.shields.io/badge/python-3.10+-blue.svg
|
|
80
|
-
<
|
|
81
|
-
<a href="https://
|
|
82
|
-
<a href="https://
|
|
83
|
-
<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&
|
|
81
|
+
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
|
|
82
|
+
<img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
|
|
83
|
+
<img src="https://deepwiki.com/badge.svg" href="https://deepwiki.com/AstrBotDevs/AstrBot">
|
|
84
|
+
<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>
|
|
85
|
+
<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>
|
|
86
|
+
<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&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
|
|
87
|
+
<img src="https://gitcode.com/Soulter/AstrBot/star/badge.svg" href="https://gitcode.com/Soulter/AstrBot">
|
|
84
88
|
</div>
|
|
85
89
|
|
|
86
90
|
<br>
|
|
87
91
|
|
|
88
|
-
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
|
|
89
|
-
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
90
92
|
<a href="https://astrbot.app/">文档</a> |
|
|
91
93
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
92
94
|
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
93
95
|
<a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
|
|
94
96
|
</div>
|
|
95
97
|
|
|
96
|
-
AstrBot 是一个开源的一站式 Agent
|
|
98
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可接入主流即时通讯软件,为个人、开发者和团队打造可靠、可扩展的对话式智能基础设施。无论是个人 AI 伙伴、智能客服、自动化助手,还是企业知识库,AstrBot 都能在你的即时通讯软件平台的工作流中快速构建生产可用的 AI 应用。
|
|
99
|
+
|
|
100
|
+
<img width="1776" height="1080" alt="image" src="https://github.com/user-attachments/assets/00782c4c-4437-4d97-aabc-605e3738da5c" />
|
|
97
101
|
|
|
98
102
|
## 主要功能
|
|
99
103
|
|
|
100
|
-
1.
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
1. 💯 免费 & 开源。
|
|
105
|
+
1. ✨ AI 大模型对话,多模态,Agent,MCP,知识库,人格设定。
|
|
106
|
+
2. 🤖 支持接入 Dify、阿里云百炼、Coze 等智能体平台。
|
|
107
|
+
2. 🌐 多平台,支持 QQ、企业微信、飞书、钉钉、微信公众号、Telegram、Slack 以及[更多](#支持的消息平台)。
|
|
108
|
+
3. 📦 插件扩展,已有近 800 个插件可一键安装。
|
|
109
|
+
5. 💻 WebUI 支持。
|
|
110
|
+
6. 🌐 国际化(i18n)支持。
|
|
105
111
|
|
|
106
|
-
##
|
|
112
|
+
## 快速开始
|
|
107
113
|
|
|
108
114
|
#### Docker 部署(推荐 🥳)
|
|
109
115
|
|
|
@@ -111,6 +117,12 @@ AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可无缝接
|
|
|
111
117
|
|
|
112
118
|
请参阅官方文档 [使用 Docker 部署 AstrBot](https://astrbot.app/deploy/astrbot/docker.html#%E4%BD%BF%E7%94%A8-docker-%E9%83%A8%E7%BD%B2-astrbot) 。
|
|
113
119
|
|
|
120
|
+
#### uv 部署
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
uvx astrbot
|
|
124
|
+
```
|
|
125
|
+
|
|
114
126
|
#### 宝塔面板部署
|
|
115
127
|
|
|
116
128
|
AstrBot 与宝塔面板合作,已上架至宝塔面板。
|
|
@@ -162,24 +174,6 @@ uv run main.py
|
|
|
162
174
|
|
|
163
175
|
或者请参阅官方文档 [通过源码部署 AstrBot](https://astrbot.app/deploy/astrbot/cli.html) 。
|
|
164
176
|
|
|
165
|
-
## 🌍 社区
|
|
166
|
-
|
|
167
|
-
### QQ 群组
|
|
168
|
-
|
|
169
|
-
- 1 群:322154837
|
|
170
|
-
- 3 群:630166526
|
|
171
|
-
- 5 群:822130018
|
|
172
|
-
- 6 群:753075035
|
|
173
|
-
- 开发者群:975206796
|
|
174
|
-
|
|
175
|
-
### Telegram 群组
|
|
176
|
-
|
|
177
|
-
<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>
|
|
178
|
-
|
|
179
|
-
### Discord 群组
|
|
180
|
-
|
|
181
|
-
<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>
|
|
182
|
-
|
|
183
177
|
## 支持的消息平台
|
|
184
178
|
|
|
185
179
|
**官方维护**
|
|
@@ -266,6 +260,25 @@ pip install pre-commit
|
|
|
266
260
|
pre-commit install
|
|
267
261
|
```
|
|
268
262
|
|
|
263
|
+
## 🌍 社区
|
|
264
|
+
|
|
265
|
+
### QQ 群组
|
|
266
|
+
|
|
267
|
+
- 1 群:322154837
|
|
268
|
+
- 3 群:630166526
|
|
269
|
+
- 5 群:822130018
|
|
270
|
+
- 6 群:753075035
|
|
271
|
+
- 7 群:743746109
|
|
272
|
+
- 开发者群:975206796
|
|
273
|
+
|
|
274
|
+
### Telegram 群组
|
|
275
|
+
|
|
276
|
+
<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>
|
|
277
|
+
|
|
278
|
+
### Discord 群组
|
|
279
|
+
|
|
280
|
+
<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>
|
|
281
|
+
|
|
269
282
|
## ❤️ Special Thanks
|
|
270
283
|
|
|
271
284
|
特别感谢所有 Contributors 和插件开发者对 AstrBot 的贡献 ❤️
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
3
|
<div align="center">
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
|
|
6
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_en.md">English</a> |
|
|
7
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
8
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_zh-TW.md">繁體中文</a> |
|
|
9
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_fr.md">Français</a> |
|
|
10
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ru.md">Русский</a>
|
|
8
11
|
|
|
9
12
|
<div>
|
|
10
13
|
<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>
|
|
@@ -14,35 +17,38 @@
|
|
|
14
17
|
<br>
|
|
15
18
|
|
|
16
19
|
<div>
|
|
17
|
-
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?
|
|
18
|
-
<img src="https://img.shields.io/badge/python-3.10+-blue.svg
|
|
19
|
-
<
|
|
20
|
-
<a href="https://
|
|
21
|
-
<a href="https://
|
|
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&
|
|
20
|
+
<img src="https://img.shields.io/github/v/release/AstrBotDevs/AstrBot?color=76bad9" href="https://github.com/AstrBotDevs/AstrBot/releases/latest">
|
|
21
|
+
<img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="python">
|
|
22
|
+
<img src="https://deepwiki.com/badge.svg" href="https://deepwiki.com/AstrBotDevs/AstrBot">
|
|
23
|
+
<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>
|
|
24
|
+
<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>
|
|
25
|
+
<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&label=%E6%8F%92%E4%BB%B6%E5%B8%82%E5%9C%BA&cacheSeconds=3600">
|
|
26
|
+
<img src="https://gitcode.com/Soulter/AstrBot/star/badge.svg" href="https://gitcode.com/Soulter/AstrBot">
|
|
23
27
|
</div>
|
|
24
28
|
|
|
25
29
|
<br>
|
|
26
30
|
|
|
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> |
|
|
29
31
|
<a href="https://astrbot.app/">文档</a> |
|
|
30
32
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
31
33
|
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
32
34
|
<a href="https://github.com/AstrBotDevs/AstrBot/issues">问题提交</a>
|
|
33
35
|
</div>
|
|
34
36
|
|
|
35
|
-
AstrBot 是一个开源的一站式 Agent
|
|
37
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可接入主流即时通讯软件,为个人、开发者和团队打造可靠、可扩展的对话式智能基础设施。无论是个人 AI 伙伴、智能客服、自动化助手,还是企业知识库,AstrBot 都能在你的即时通讯软件平台的工作流中快速构建生产可用的 AI 应用。
|
|
38
|
+
|
|
39
|
+
<img width="1776" height="1080" alt="image" src="https://github.com/user-attachments/assets/00782c4c-4437-4d97-aabc-605e3738da5c" />
|
|
36
40
|
|
|
37
41
|
## 主要功能
|
|
38
42
|
|
|
39
|
-
1.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
1. 💯 免费 & 开源。
|
|
44
|
+
1. ✨ AI 大模型对话,多模态,Agent,MCP,知识库,人格设定。
|
|
45
|
+
2. 🤖 支持接入 Dify、阿里云百炼、Coze 等智能体平台。
|
|
46
|
+
2. 🌐 多平台,支持 QQ、企业微信、飞书、钉钉、微信公众号、Telegram、Slack 以及[更多](#支持的消息平台)。
|
|
47
|
+
3. 📦 插件扩展,已有近 800 个插件可一键安装。
|
|
48
|
+
5. 💻 WebUI 支持。
|
|
49
|
+
6. 🌐 国际化(i18n)支持。
|
|
44
50
|
|
|
45
|
-
##
|
|
51
|
+
## 快速开始
|
|
46
52
|
|
|
47
53
|
#### Docker 部署(推荐 🥳)
|
|
48
54
|
|
|
@@ -50,6 +56,12 @@ AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可无缝接
|
|
|
50
56
|
|
|
51
57
|
请参阅官方文档 [使用 Docker 部署 AstrBot](https://astrbot.app/deploy/astrbot/docker.html#%E4%BD%BF%E7%94%A8-docker-%E9%83%A8%E7%BD%B2-astrbot) 。
|
|
52
58
|
|
|
59
|
+
#### uv 部署
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
uvx astrbot
|
|
63
|
+
```
|
|
64
|
+
|
|
53
65
|
#### 宝塔面板部署
|
|
54
66
|
|
|
55
67
|
AstrBot 与宝塔面板合作,已上架至宝塔面板。
|
|
@@ -101,24 +113,6 @@ uv run main.py
|
|
|
101
113
|
|
|
102
114
|
或者请参阅官方文档 [通过源码部署 AstrBot](https://astrbot.app/deploy/astrbot/cli.html) 。
|
|
103
115
|
|
|
104
|
-
## 🌍 社区
|
|
105
|
-
|
|
106
|
-
### QQ 群组
|
|
107
|
-
|
|
108
|
-
- 1 群:322154837
|
|
109
|
-
- 3 群:630166526
|
|
110
|
-
- 5 群:822130018
|
|
111
|
-
- 6 群:753075035
|
|
112
|
-
- 开发者群:975206796
|
|
113
|
-
|
|
114
|
-
### Telegram 群组
|
|
115
|
-
|
|
116
|
-
<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>
|
|
117
|
-
|
|
118
|
-
### Discord 群组
|
|
119
|
-
|
|
120
|
-
<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>
|
|
121
|
-
|
|
122
116
|
## 支持的消息平台
|
|
123
117
|
|
|
124
118
|
**官方维护**
|
|
@@ -205,6 +199,25 @@ pip install pre-commit
|
|
|
205
199
|
pre-commit install
|
|
206
200
|
```
|
|
207
201
|
|
|
202
|
+
## 🌍 社区
|
|
203
|
+
|
|
204
|
+
### QQ 群组
|
|
205
|
+
|
|
206
|
+
- 1 群:322154837
|
|
207
|
+
- 3 群:630166526
|
|
208
|
+
- 5 群:822130018
|
|
209
|
+
- 6 群:753075035
|
|
210
|
+
- 7 群:743746109
|
|
211
|
+
- 开发者群:975206796
|
|
212
|
+
|
|
213
|
+
### Telegram 群组
|
|
214
|
+
|
|
215
|
+
<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>
|
|
216
|
+
|
|
217
|
+
### Discord 群组
|
|
218
|
+
|
|
219
|
+
<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>
|
|
220
|
+
|
|
208
221
|
## ❤️ Special Thanks
|
|
209
222
|
|
|
210
223
|
特别感谢所有 Contributors 和插件开发者对 AstrBot 的贡献 ❤️
|
|
@@ -19,30 +19,38 @@
|
|
|
19
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>
|
|
20
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
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=%
|
|
22
|
+
<img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.soulter.top%2Fastrbot%2Fplugin-num&query=%24.result&suffix=%20plugins&style=for-the-badge&label=Marketplace&cacheSeconds=3600">
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
25
|
<br>
|
|
26
26
|
|
|
27
27
|
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README.md">中文</a> |
|
|
28
28
|
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
29
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_zh-TW.md">繁體中文</a> |
|
|
30
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_fr.md">Français</a> |
|
|
31
|
+
<a href="https://github.com/AstrBotDevs/AstrBot/blob/master/README_ru.md">Русский</a>
|
|
32
|
+
|
|
29
33
|
<a href="https://astrbot.app/">Documentation</a> |
|
|
30
34
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
31
35
|
<a href="https://astrbot.featurebase.app/roadmap">Roadmap</a> |
|
|
32
36
|
<a href="https://github.com/AstrBotDevs/AstrBot/issues">Issue Tracker</a>
|
|
33
37
|
</div>
|
|
34
38
|
|
|
35
|
-
AstrBot is an open-source all-in-one Agent chatbot platform and
|
|
39
|
+
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.
|
|
40
|
+
|
|
41
|
+
<img width="1776" height="1080" alt="image" src="https://github.com/user-attachments/assets/00782c4c-4437-4d97-aabc-605e3738da5c" />
|
|
36
42
|
|
|
37
43
|
## Key Features
|
|
38
44
|
|
|
39
|
-
1.
|
|
40
|
-
2.
|
|
41
|
-
3.
|
|
42
|
-
4.
|
|
43
|
-
5.
|
|
45
|
+
1. 💯 Free & Open Source.
|
|
46
|
+
2. ✨ AI LLM Conversations, Multimodal, Agent, MCP, Knowledge Base, Persona Settings.
|
|
47
|
+
3. 🤖 Supports integration with Dify, Alibaba Cloud Bailian, Coze and other agent platforms.
|
|
48
|
+
4. 🌐 Multi-Platform: QQ, WeChat Work, Feishu, DingTalk, WeChat Official Accounts, Telegram, Slack, and [more](#supported-messaging-platforms).
|
|
49
|
+
5. 📦 Plugin Extensions with nearly 800 plugins available for one-click installation.
|
|
50
|
+
6. 💻 WebUI Support.
|
|
51
|
+
7. 🌐 Internationalization (i18n) Support.
|
|
44
52
|
|
|
45
|
-
##
|
|
53
|
+
## Quick Start
|
|
46
54
|
|
|
47
55
|
#### Docker Deployment (Recommended 🥳)
|
|
48
56
|
|
|
@@ -50,6 +58,12 @@ We recommend deploying AstrBot using Docker or Docker Compose.
|
|
|
50
58
|
|
|
51
59
|
Please refer to the official documentation: [Deploy AstrBot with Docker](https://astrbot.app/deploy/astrbot/docker.html#%E4%BD%BF%E7%94%A8-docker-%E9%83%A8%E7%BD%B2-astrbot).
|
|
52
60
|
|
|
61
|
+
#### uv Deployment
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
uvx astrbot
|
|
65
|
+
```
|
|
66
|
+
|
|
53
67
|
#### BT-Panel Deployment
|
|
54
68
|
|
|
55
69
|
AstrBot has partnered with BT-Panel and is now available in their marketplace.
|
|
@@ -101,24 +115,6 @@ uv run main.py
|
|
|
101
115
|
|
|
102
116
|
Or refer to the official documentation: [Deploy AstrBot from Source](https://astrbot.app/deploy/astrbot/cli.html).
|
|
103
117
|
|
|
104
|
-
## 🌍 Community
|
|
105
|
-
|
|
106
|
-
### QQ Groups
|
|
107
|
-
|
|
108
|
-
- Group 1: 322154837
|
|
109
|
-
- Group 3: 630166526
|
|
110
|
-
- Group 5: 822130018
|
|
111
|
-
- Group 6: 753075035
|
|
112
|
-
- Developer Group: 975206796
|
|
113
|
-
|
|
114
|
-
### Telegram Group
|
|
115
|
-
|
|
116
|
-
<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>
|
|
117
|
-
|
|
118
|
-
### Discord Server
|
|
119
|
-
|
|
120
|
-
<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>
|
|
121
|
-
|
|
122
118
|
## Supported Messaging Platforms
|
|
123
119
|
|
|
124
120
|
**Officially Maintained**
|
|
@@ -205,6 +201,24 @@ pip install pre-commit
|
|
|
205
201
|
pre-commit install
|
|
206
202
|
```
|
|
207
203
|
|
|
204
|
+
## 🌍 Community
|
|
205
|
+
|
|
206
|
+
### QQ Groups
|
|
207
|
+
|
|
208
|
+
- Group 1: 322154837
|
|
209
|
+
- Group 3: 630166526
|
|
210
|
+
- Group 5: 822130018
|
|
211
|
+
- Group 6: 753075035
|
|
212
|
+
- Developer Group: 975206796
|
|
213
|
+
|
|
214
|
+
### Telegram Group
|
|
215
|
+
|
|
216
|
+
<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>
|
|
217
|
+
|
|
218
|
+
### Discord Server
|
|
219
|
+
|
|
220
|
+
<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>
|
|
221
|
+
|
|
208
222
|
## ❤️ Special Thanks
|
|
209
223
|
|
|
210
224
|
Special thanks to all Contributors and plugin developers for their contributions to AstrBot ❤️
|