AstrBot 4.3.3__tar.gz → 4.3.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/auto_assign.yml +2 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/codeql.yml +2 -2
- {astrbot-4.3.3 → astrbot-4.3.5}/PKG-INFO +64 -44
- {astrbot-4.3.3 → astrbot-4.3.5}/README.md +63 -43
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/mcp_client.py +18 -4
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/astr_agent_context.py +1 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/config/default.py +48 -3
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/process_stage/method/llm_request.py +32 -14
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/scheduler.py +1 -1
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/manager.py +4 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/satori/satori_event.py +23 -1
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -1
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +289 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +17 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +20 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +445 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +378 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +149 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +148 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +166 -0
- astrbot-4.3.5/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +199 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/tools.py +14 -0
- astrbot-4.3.5/changelogs/v4.3.5.md +8 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ItemCard.vue +7 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/provider.json +4 -2
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/tool-use.json +3 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/provider.json +4 -2
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +3 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/utils/platformUtils.js +2 -1
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ProviderPage.vue +100 -45
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ToolUsePage.vue +6 -2
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/vite.config.ts +1 -1
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/alter_cmd.py +6 -22
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/conversation.py +1 -26
- astrbot-4.3.5/packages/astrbot/commands/utils/rst_scene.py +26 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/main.py +41 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/pyproject.toml +1 -1
- {astrbot-4.3.3 → astrbot-4.3.5}/.dockerignore +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/FUNDING.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/copilot-instructions.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/dependabot.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.github/workflows/stale.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.gitignore +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.pre-commit-config.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/.python-version +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/Dockerfile +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/Dockerfile_with_node +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/LICENSE +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/README_en.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/README_ja.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/all.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/message_components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/po.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/log.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/message/components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/provider.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/anthropic_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/coze_api_client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/coze_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/dashscope_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/dify_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/openai_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/README.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/config.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/context.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/star.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/updator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/dify_api_client.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/astrbot/dashboard/server.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/compose.yml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/.gitignore +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/LICENSE +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/README.md +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/env.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/index.html +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/public/_redirects +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/App.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/chat/Chat.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/chat/MessageList.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/config.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/main.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/tsconfig.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/admin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/help.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/llm.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/persona.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/plugin.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/provider.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/setunset.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/sid.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/t2i.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/tool.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/commands/tts.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/long_term_memory.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/astrbot/process_llm_request.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/python_interpreter/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/python_interpreter/requirements.txt +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/python_interpreter/shared/api.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/reminder/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/reminder/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/session_controller/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/session_controller/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/thinking_filter/main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/thinking_filter/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/engines/bing.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/engines/google.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/packages/web_searcher/metadata.yaml +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/requirements.txt +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/samples/stt_health_check.wav +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/tests/test_dashboard.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/tests/test_main.py +0 -0
- {astrbot-4.3.3 → astrbot-4.3.5}/tests/test_plugin_manager.py +0 -0
|
@@ -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}}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AstrBot
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.5
|
|
4
4
|
Summary: 易上手的多平台 LLM 聊天机器人及开发框架
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -52,8 +52,6 @@ Requires-Dist: websockets>=15.0.1
|
|
|
52
52
|
Requires-Dist: wechatpy>=1.8.18
|
|
53
53
|
Description-Content-Type: text/markdown
|
|
54
54
|
|
|
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
55
|

|
|
58
56
|
|
|
59
57
|
</p>
|
|
@@ -67,17 +65,17 @@ Description-Content-Type: text/markdown
|
|
|
67
65
|
<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
66
|
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
|
|
69
67
|
<a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
70
|
-
[](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
|
|
71
68
|

|
|
72
69
|
|
|
73
70
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
|
|
74
71
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
75
72
|
<a href="https://astrbot.app/">文档</a> |
|
|
76
73
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
74
|
+
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
77
75
|
<a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
|
|
78
76
|
</div>
|
|
79
77
|
|
|
80
|
-
AstrBot 是一个开源的一站式
|
|
78
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
|
|
81
79
|
|
|
82
80
|
## 主要功能
|
|
83
81
|
|
|
@@ -89,7 +87,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
|
|
|
89
87
|
|
|
90
88
|
## 部署方式
|
|
91
89
|
|
|
92
|
-
#### Docker 部署
|
|
90
|
+
#### Docker 部署(推荐 🥳)
|
|
93
91
|
|
|
94
92
|
推荐使用 Docker / Docker Compose 方式部署 AstrBot。
|
|
95
93
|
|
|
@@ -155,7 +153,6 @@ uv run main.py
|
|
|
155
153
|
- 5 群:822130018
|
|
156
154
|
- 6 群:753075035
|
|
157
155
|
- 开发者群:975206796
|
|
158
|
-
- 开发者群(备份):295657329
|
|
159
156
|
|
|
160
157
|
### Telegram 群组
|
|
161
158
|
|
|
@@ -167,48 +164,80 @@ uv run main.py
|
|
|
167
164
|
|
|
168
165
|
## ⚡ 消息平台支持情况
|
|
169
166
|
|
|
167
|
+
**官方维护**
|
|
168
|
+
|
|
170
169
|
| 平台 | 支持性 |
|
|
171
170
|
| -------- | ------- |
|
|
172
|
-
| QQ(
|
|
171
|
+
| QQ(官方平台) | ✔ |
|
|
173
172
|
| QQ(OneBot) | ✔ |
|
|
174
173
|
| Telegram | ✔ |
|
|
175
|
-
|
|
|
174
|
+
| 企微应用 | ✔ |
|
|
176
175
|
| 微信客服 | ✔ |
|
|
177
176
|
| 微信公众号 | ✔ |
|
|
178
177
|
| 飞书 | ✔ |
|
|
179
178
|
| 钉钉 | ✔ |
|
|
180
179
|
| Slack | ✔ |
|
|
181
180
|
| Discord | ✔ |
|
|
182
|
-
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
183
|
-
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
184
181
|
| Satori | ✔ |
|
|
185
182
|
| Misskey | ✔ |
|
|
183
|
+
| 企微智能机器人 | 将支持 |
|
|
184
|
+
| Whatsapp | 将支持 |
|
|
185
|
+
| LINE | 将支持 |
|
|
186
|
+
|
|
187
|
+
**社区维护**
|
|
188
|
+
|
|
189
|
+
| 平台 | 支持性 |
|
|
190
|
+
| -------- | ------- |
|
|
191
|
+
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
192
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
193
|
+
| [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
|
|
186
194
|
|
|
187
195
|
## ⚡ 提供商支持情况
|
|
188
196
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
|
192
|
-
|
|
|
193
|
-
|
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
|
|
|
208
|
-
|
|
|
209
|
-
|
|
|
210
|
-
|
|
|
211
|
-
|
|
197
|
+
**大模型服务**
|
|
198
|
+
|
|
199
|
+
| 名称 | 支持性 | 备注 |
|
|
200
|
+
| -------- | ------- | ------- |
|
|
201
|
+
| OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
|
|
202
|
+
| Anthropic | ✔ | |
|
|
203
|
+
| Google Gemini | ✔ | |
|
|
204
|
+
| Moonshot AI | ✔ | |
|
|
205
|
+
| 智谱 AI | ✔ | |
|
|
206
|
+
| DeepSeek | ✔ | |
|
|
207
|
+
| Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
208
|
+
| LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
209
|
+
| [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
|
|
210
|
+
| [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
|
|
211
|
+
| [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
|
|
212
|
+
| 硅基流动 | ✔ | |
|
|
213
|
+
| PPIO 派欧云 | ✔ | |
|
|
214
|
+
| ModelScope | ✔ | |
|
|
215
|
+
| OneAPI | ✔ | |
|
|
216
|
+
| Dify | ✔ | |
|
|
217
|
+
| 阿里云百炼应用 | ✔ | |
|
|
218
|
+
| Coze | ✔ | |
|
|
219
|
+
|
|
220
|
+
**语音转文本服务**
|
|
221
|
+
|
|
222
|
+
| 名称 | 支持性 | 备注 |
|
|
223
|
+
| -------- | ------- | ------- |
|
|
224
|
+
| Whisper | ✔ | 支持 API、本地部署 |
|
|
225
|
+
| SenseVoice | ✔ | 本地部署 |
|
|
226
|
+
|
|
227
|
+
**文本转语音服务**
|
|
228
|
+
|
|
229
|
+
| 名称 | 支持性 | 备注 |
|
|
230
|
+
| -------- | ------- | ------- |
|
|
231
|
+
| OpenAI TTS | ✔ | |
|
|
232
|
+
| Gemini TTS | ✔ | |
|
|
233
|
+
| GSVI | ✔ | GPT-Sovits-Inference |
|
|
234
|
+
| GPT-SoVITs | ✔ | GPT-Sovits |
|
|
235
|
+
| FishAudio | ✔ | |
|
|
236
|
+
| Edge TTS | ✔ | Edge 浏览器的免费 TTS |
|
|
237
|
+
| 阿里云百炼 TTS | ✔ | |
|
|
238
|
+
| Azure TTS | ✔ | |
|
|
239
|
+
| Minimax TTS | ✔ | |
|
|
240
|
+
| 火山引擎 TTS | ✔ | |
|
|
212
241
|
|
|
213
242
|
## ❤️ 贡献
|
|
214
243
|
|
|
@@ -240,19 +269,10 @@ pre-commit install
|
|
|
240
269
|
|
|
241
270
|
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
|
|
242
271
|
|
|
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
272
|
## ⭐ Star History
|
|
253
273
|
|
|
254
274
|
> [!TIP]
|
|
255
|
-
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star
|
|
275
|
+
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
|
|
256
276
|
|
|
257
277
|
<div align="center">
|
|
258
278
|
|
|
@@ -1,5 +1,3 @@
|
|
|
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>
|
|
@@ -13,17 +11,17 @@
|
|
|
13
11
|
<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
12
|
<a href="https://qm.qq.com/cgi-bin/qm/qr?k=wtbaNx7EioxeaqS9z7RQWVXPIxg2zYr7&jump_from=webapi&authKey=vlqnv/AV2DbJEvGIcxdlNSpfxVy+8vVqijgreRdnVKOaydpc+YSw4MctmEbr0k5"><img alt="QQ_community" src="https://img.shields.io/badge/QQ群-775869627-purple?style=for-the-badge&color=76bad9"></a>
|
|
15
13
|
<a href="https://t.me/+hAsD2Ebl5as3NmY1"><img alt="Telegram_community" src="https://img.shields.io/badge/Telegram-AstrBot-purple?style=for-the-badge&color=76bad9"></a>
|
|
16
|
-
[](https://wakatime.com/badge/user/915e5316-99c6-4563-a483-ef186cf000c9/project/018e705a-a1a7-409a-a849-3013485e6c8e)
|
|
17
14
|

|
|
18
15
|
|
|
19
16
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_en.md">English</a> |
|
|
20
17
|
<a href="https://github.com/Soulter/AstrBot/blob/master/README_ja.md">日本語</a> |
|
|
21
18
|
<a href="https://astrbot.app/">文档</a> |
|
|
22
19
|
<a href="https://blog.astrbot.app/">Blog</a> |
|
|
20
|
+
<a href="https://astrbot.featurebase.app/roadmap">路线图</a> |
|
|
23
21
|
<a href="https://github.com/Soulter/AstrBot/issues">问题提交</a>
|
|
24
22
|
</div>
|
|
25
23
|
|
|
26
|
-
AstrBot 是一个开源的一站式
|
|
24
|
+
AstrBot 是一个开源的一站式 Agent 聊天机器人平台及开发框架。
|
|
27
25
|
|
|
28
26
|
## 主要功能
|
|
29
27
|
|
|
@@ -35,7 +33,7 @@ AstrBot 是一个开源的一站式 Agentic 聊天机器人平台及开发框架
|
|
|
35
33
|
|
|
36
34
|
## 部署方式
|
|
37
35
|
|
|
38
|
-
#### Docker 部署
|
|
36
|
+
#### Docker 部署(推荐 🥳)
|
|
39
37
|
|
|
40
38
|
推荐使用 Docker / Docker Compose 方式部署 AstrBot。
|
|
41
39
|
|
|
@@ -101,7 +99,6 @@ uv run main.py
|
|
|
101
99
|
- 5 群:822130018
|
|
102
100
|
- 6 群:753075035
|
|
103
101
|
- 开发者群:975206796
|
|
104
|
-
- 开发者群(备份):295657329
|
|
105
102
|
|
|
106
103
|
### Telegram 群组
|
|
107
104
|
|
|
@@ -113,48 +110,80 @@ uv run main.py
|
|
|
113
110
|
|
|
114
111
|
## ⚡ 消息平台支持情况
|
|
115
112
|
|
|
113
|
+
**官方维护**
|
|
114
|
+
|
|
116
115
|
| 平台 | 支持性 |
|
|
117
116
|
| -------- | ------- |
|
|
118
|
-
| QQ(
|
|
117
|
+
| QQ(官方平台) | ✔ |
|
|
119
118
|
| QQ(OneBot) | ✔ |
|
|
120
119
|
| Telegram | ✔ |
|
|
121
|
-
|
|
|
120
|
+
| 企微应用 | ✔ |
|
|
122
121
|
| 微信客服 | ✔ |
|
|
123
122
|
| 微信公众号 | ✔ |
|
|
124
123
|
| 飞书 | ✔ |
|
|
125
124
|
| 钉钉 | ✔ |
|
|
126
125
|
| Slack | ✔ |
|
|
127
126
|
| Discord | ✔ |
|
|
128
|
-
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
129
|
-
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
130
127
|
| Satori | ✔ |
|
|
131
128
|
| Misskey | ✔ |
|
|
129
|
+
| 企微智能机器人 | 将支持 |
|
|
130
|
+
| Whatsapp | 将支持 |
|
|
131
|
+
| LINE | 将支持 |
|
|
132
|
+
|
|
133
|
+
**社区维护**
|
|
134
|
+
|
|
135
|
+
| 平台 | 支持性 |
|
|
136
|
+
| -------- | ------- |
|
|
137
|
+
| [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter) | ✔ |
|
|
138
|
+
| [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat) | ✔ |
|
|
139
|
+
| [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter) | ✔ |
|
|
132
140
|
|
|
133
141
|
## ⚡ 提供商支持情况
|
|
134
142
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
|
|
|
145
|
-
|
|
|
146
|
-
|
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
143
|
+
**大模型服务**
|
|
144
|
+
|
|
145
|
+
| 名称 | 支持性 | 备注 |
|
|
146
|
+
| -------- | ------- | ------- |
|
|
147
|
+
| OpenAI | ✔ | 支持任何兼容 OpenAI API 的服务 |
|
|
148
|
+
| Anthropic | ✔ | |
|
|
149
|
+
| Google Gemini | ✔ | |
|
|
150
|
+
| Moonshot AI | ✔ | |
|
|
151
|
+
| 智谱 AI | ✔ | |
|
|
152
|
+
| DeepSeek | ✔ | |
|
|
153
|
+
| Ollama | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
154
|
+
| LM Studio | ✔ | 本地部署 DeepSeek 等开源语言模型 |
|
|
155
|
+
| [优云智算](https://www.compshare.cn/?ytag=GPU_YY-gh_astrbot&referral_code=FV7DcGowN4hB5UuXKgpE74) | ✔ | |
|
|
156
|
+
| [302.AI](https://share.302.ai/rr1M3l) | ✔ | |
|
|
157
|
+
| [小马算力](https://www.tokenpony.cn/3YPyf) | ✔ | |
|
|
158
|
+
| 硅基流动 | ✔ | |
|
|
159
|
+
| PPIO 派欧云 | ✔ | |
|
|
160
|
+
| ModelScope | ✔ | |
|
|
161
|
+
| OneAPI | ✔ | |
|
|
162
|
+
| Dify | ✔ | |
|
|
163
|
+
| 阿里云百炼应用 | ✔ | |
|
|
164
|
+
| Coze | ✔ | |
|
|
165
|
+
|
|
166
|
+
**语音转文本服务**
|
|
167
|
+
|
|
168
|
+
| 名称 | 支持性 | 备注 |
|
|
169
|
+
| -------- | ------- | ------- |
|
|
170
|
+
| Whisper | ✔ | 支持 API、本地部署 |
|
|
171
|
+
| SenseVoice | ✔ | 本地部署 |
|
|
172
|
+
|
|
173
|
+
**文本转语音服务**
|
|
174
|
+
|
|
175
|
+
| 名称 | 支持性 | 备注 |
|
|
176
|
+
| -------- | ------- | ------- |
|
|
177
|
+
| OpenAI TTS | ✔ | |
|
|
178
|
+
| Gemini TTS | ✔ | |
|
|
179
|
+
| GSVI | ✔ | GPT-Sovits-Inference |
|
|
180
|
+
| GPT-SoVITs | ✔ | GPT-Sovits |
|
|
181
|
+
| FishAudio | ✔ | |
|
|
182
|
+
| Edge TTS | ✔ | Edge 浏览器的免费 TTS |
|
|
183
|
+
| 阿里云百炼 TTS | ✔ | |
|
|
184
|
+
| Azure TTS | ✔ | |
|
|
185
|
+
| Minimax TTS | ✔ | |
|
|
186
|
+
| 火山引擎 TTS | ✔ | |
|
|
158
187
|
|
|
159
188
|
## ❤️ 贡献
|
|
160
189
|
|
|
@@ -186,19 +215,10 @@ pre-commit install
|
|
|
186
215
|
|
|
187
216
|
- [NapNeko/NapCatQQ](https://github.com/NapNeko/NapCatQQ) - 伟大的猫猫框架
|
|
188
217
|
|
|
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
218
|
## ⭐ Star History
|
|
199
219
|
|
|
200
220
|
> [!TIP]
|
|
201
|
-
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star
|
|
221
|
+
> 如果本项目对您的生活 / 工作产生了帮助,或者您关注本项目的未来发展,请给项目 Star,这是我们维护这个开源项目的动力 <3
|
|
202
222
|
|
|
203
223
|
<div align="center">
|
|
204
224
|
|
|
@@ -40,8 +40,15 @@ async def _quick_test_mcp_connection(config: dict) -> tuple[bool, str]:
|
|
|
40
40
|
timeout = cfg.get("timeout", 10)
|
|
41
41
|
|
|
42
42
|
try:
|
|
43
|
+
if "transport" in cfg:
|
|
44
|
+
transport_type = cfg["transport"]
|
|
45
|
+
elif "type" in cfg:
|
|
46
|
+
transport_type = cfg["type"]
|
|
47
|
+
else:
|
|
48
|
+
raise Exception("MCP 连接配置缺少 transport 或 type 字段")
|
|
49
|
+
|
|
43
50
|
async with aiohttp.ClientSession() as session:
|
|
44
|
-
if
|
|
51
|
+
if transport_type == "streamable_http":
|
|
45
52
|
test_payload = {
|
|
46
53
|
"jsonrpc": "2.0",
|
|
47
54
|
"method": "initialize",
|
|
@@ -121,7 +128,14 @@ class MCPClient:
|
|
|
121
128
|
if not success:
|
|
122
129
|
raise Exception(error_msg)
|
|
123
130
|
|
|
124
|
-
if
|
|
131
|
+
if "transport" in cfg:
|
|
132
|
+
transport_type = cfg["transport"]
|
|
133
|
+
elif "type" in cfg:
|
|
134
|
+
transport_type = cfg["type"]
|
|
135
|
+
else:
|
|
136
|
+
raise Exception("MCP 连接配置缺少 transport 或 type 字段")
|
|
137
|
+
|
|
138
|
+
if transport_type != "streamable_http":
|
|
125
139
|
# SSE transport method
|
|
126
140
|
self._streams_context = sse_client(
|
|
127
141
|
url=cfg["url"],
|
|
@@ -134,7 +148,7 @@ class MCPClient:
|
|
|
134
148
|
)
|
|
135
149
|
|
|
136
150
|
# Create a new client session
|
|
137
|
-
read_timeout = timedelta(seconds=cfg.get("session_read_timeout",
|
|
151
|
+
read_timeout = timedelta(seconds=cfg.get("session_read_timeout", 60))
|
|
138
152
|
self.session = await self.exit_stack.enter_async_context(
|
|
139
153
|
mcp.ClientSession(
|
|
140
154
|
*streams,
|
|
@@ -159,7 +173,7 @@ class MCPClient:
|
|
|
159
173
|
)
|
|
160
174
|
|
|
161
175
|
# Create a new client session
|
|
162
|
-
read_timeout = timedelta(seconds=cfg.get("session_read_timeout",
|
|
176
|
+
read_timeout = timedelta(seconds=cfg.get("session_read_timeout", 60))
|
|
163
177
|
self.session = await self.exit_stack.enter_async_context(
|
|
164
178
|
mcp.ClientSession(
|
|
165
179
|
read_stream=read_s,
|
|
@@ -6,7 +6,7 @@ import os
|
|
|
6
6
|
|
|
7
7
|
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
|
|
8
8
|
|
|
9
|
-
VERSION = "4.3.
|
|
9
|
+
VERSION = "4.3.5"
|
|
10
10
|
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
|
|
11
11
|
|
|
12
12
|
# 默认配置
|
|
@@ -57,6 +57,7 @@ DEFAULT_CONFIG = {
|
|
|
57
57
|
"web_search": False,
|
|
58
58
|
"websearch_provider": "default",
|
|
59
59
|
"websearch_tavily_key": [],
|
|
60
|
+
"websearch_baidu_app_builder_key": "",
|
|
60
61
|
"web_search_link": False,
|
|
61
62
|
"display_reasoning_text": False,
|
|
62
63
|
"identifier": False,
|
|
@@ -71,6 +72,7 @@ DEFAULT_CONFIG = {
|
|
|
71
72
|
"show_tool_use_status": False,
|
|
72
73
|
"streaming_segmented": False,
|
|
73
74
|
"max_agent_step": 30,
|
|
75
|
+
"tool_call_timeout": 60,
|
|
74
76
|
},
|
|
75
77
|
"provider_stt_settings": {
|
|
76
78
|
"enable": False,
|
|
@@ -207,6 +209,18 @@ CONFIG_METADATA_2 = {
|
|
|
207
209
|
"callback_server_host": "0.0.0.0",
|
|
208
210
|
"port": 6195,
|
|
209
211
|
},
|
|
212
|
+
"企业微信智能机器人": {
|
|
213
|
+
"id": "wecom_ai_bot",
|
|
214
|
+
"type": "wecom_ai_bot",
|
|
215
|
+
"enable": True,
|
|
216
|
+
"wecomaibot_init_respond_text": "💭 思考中...",
|
|
217
|
+
"wecomaibot_friend_message_welcome_text": "",
|
|
218
|
+
"wecom_ai_bot_name": "",
|
|
219
|
+
"token": "",
|
|
220
|
+
"encoding_aes_key": "",
|
|
221
|
+
"callback_server_host": "0.0.0.0",
|
|
222
|
+
"port": 6198,
|
|
223
|
+
},
|
|
210
224
|
"飞书(Lark)": {
|
|
211
225
|
"id": "lark",
|
|
212
226
|
"type": "lark",
|
|
@@ -447,10 +461,25 @@ CONFIG_METADATA_2 = {
|
|
|
447
461
|
"type": "string",
|
|
448
462
|
"hint": "aiocqhttp 适配器的反向 Websocket Token。未设置则不启用 Token 验证。",
|
|
449
463
|
},
|
|
464
|
+
"wecom_ai_bot_name": {
|
|
465
|
+
"description": "企业微信智能机器人的名字",
|
|
466
|
+
"type": "string",
|
|
467
|
+
"hint": "请务必填写正确,否则无法使用一些指令。",
|
|
468
|
+
},
|
|
469
|
+
"wecomaibot_init_respond_text": {
|
|
470
|
+
"description": "企业微信智能机器人初始响应文本",
|
|
471
|
+
"type": "string",
|
|
472
|
+
"hint": "当机器人收到消息时,首先回复的文本内容。留空则使用默认值。",
|
|
473
|
+
},
|
|
474
|
+
"wecomaibot_friend_message_welcome_text": {
|
|
475
|
+
"description": "企业微信智能机器人私聊欢迎语",
|
|
476
|
+
"type": "string",
|
|
477
|
+
"hint": "当用户当天进入智能机器人单聊会话,回复欢迎语,留空则不回复。",
|
|
478
|
+
},
|
|
450
479
|
"lark_bot_name": {
|
|
451
480
|
"description": "飞书机器人的名字",
|
|
452
481
|
"type": "string",
|
|
453
|
-
"hint": "
|
|
482
|
+
"hint": "请务必填写正确,否则 @ 机器人将无法唤醒,只能通过前缀唤醒。",
|
|
454
483
|
},
|
|
455
484
|
"discord_token": {
|
|
456
485
|
"description": "Discord Bot Token",
|
|
@@ -1845,6 +1874,10 @@ CONFIG_METADATA_2 = {
|
|
|
1845
1874
|
"description": "工具调用轮数上限",
|
|
1846
1875
|
"type": "int",
|
|
1847
1876
|
},
|
|
1877
|
+
"tool_call_timeout": {
|
|
1878
|
+
"description": "工具调用超时时间(秒)",
|
|
1879
|
+
"type": "int",
|
|
1880
|
+
},
|
|
1848
1881
|
},
|
|
1849
1882
|
},
|
|
1850
1883
|
"provider_stt_settings": {
|
|
@@ -2063,7 +2096,7 @@ CONFIG_METADATA_3 = {
|
|
|
2063
2096
|
"provider_settings.websearch_provider": {
|
|
2064
2097
|
"description": "网页搜索提供商",
|
|
2065
2098
|
"type": "string",
|
|
2066
|
-
"options": ["default", "tavily"],
|
|
2099
|
+
"options": ["default", "tavily", "baidu_ai_search"],
|
|
2067
2100
|
},
|
|
2068
2101
|
"provider_settings.websearch_tavily_key": {
|
|
2069
2102
|
"description": "Tavily API Key",
|
|
@@ -2074,6 +2107,14 @@ CONFIG_METADATA_3 = {
|
|
|
2074
2107
|
"provider_settings.websearch_provider": "tavily",
|
|
2075
2108
|
},
|
|
2076
2109
|
},
|
|
2110
|
+
"provider_settings.websearch_baidu_app_builder_key": {
|
|
2111
|
+
"description": "百度千帆智能云 APP Builder API Key",
|
|
2112
|
+
"type": "string",
|
|
2113
|
+
"hint": "参考:https://console.bce.baidu.com/iam/#/iam/apikey/list",
|
|
2114
|
+
"condition": {
|
|
2115
|
+
"provider_settings.websearch_provider": "baidu_ai_search",
|
|
2116
|
+
},
|
|
2117
|
+
},
|
|
2077
2118
|
"provider_settings.web_search_link": {
|
|
2078
2119
|
"description": "显示来源引用",
|
|
2079
2120
|
"type": "bool",
|
|
@@ -2109,6 +2150,10 @@ CONFIG_METADATA_3 = {
|
|
|
2109
2150
|
"description": "工具调用轮数上限",
|
|
2110
2151
|
"type": "int",
|
|
2111
2152
|
},
|
|
2153
|
+
"provider_settings.tool_call_timeout": {
|
|
2154
|
+
"description": "工具调用超时时间(秒)",
|
|
2155
|
+
"type": "int",
|
|
2156
|
+
},
|
|
2112
2157
|
"provider_settings.streaming_response": {
|
|
2113
2158
|
"description": "流式回复",
|
|
2114
2159
|
"type": "bool",
|
|
@@ -6,6 +6,7 @@ import asyncio
|
|
|
6
6
|
import copy
|
|
7
7
|
import json
|
|
8
8
|
import traceback
|
|
9
|
+
from datetime import timedelta
|
|
9
10
|
from typing import AsyncGenerator, Union
|
|
10
11
|
from astrbot.core.conversation_mgr import Conversation
|
|
11
12
|
from astrbot.core import logger
|
|
@@ -185,21 +186,33 @@ class FunctionToolExecutor(BaseFunctionToolExecutor[AstrAgentContext]):
|
|
|
185
186
|
handler=awaitable,
|
|
186
187
|
**tool_args,
|
|
187
188
|
)
|
|
188
|
-
async for resp in wrapper:
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
189
|
+
# async for resp in wrapper:
|
|
190
|
+
while True:
|
|
191
|
+
try:
|
|
192
|
+
resp = await asyncio.wait_for(
|
|
193
|
+
anext(wrapper),
|
|
194
|
+
timeout=run_context.context.tool_call_timeout,
|
|
195
|
+
)
|
|
196
|
+
if resp is not None:
|
|
197
|
+
if isinstance(resp, mcp.types.CallToolResult):
|
|
198
|
+
yield resp
|
|
199
|
+
else:
|
|
200
|
+
text_content = mcp.types.TextContent(
|
|
201
|
+
type="text",
|
|
202
|
+
text=str(resp),
|
|
203
|
+
)
|
|
204
|
+
yield mcp.types.CallToolResult(content=[text_content])
|
|
192
205
|
else:
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
206
|
+
# NOTE: Tool 在这里直接请求发送消息给用户
|
|
207
|
+
# TODO: 是否需要判断 event.get_result() 是否为空?
|
|
208
|
+
# 如果为空,则说明没有发送消息给用户,并且返回值为空,将返回一个特殊的 TextContent,其内容如"工具没有返回内容"
|
|
209
|
+
yield None
|
|
210
|
+
except asyncio.TimeoutError:
|
|
211
|
+
raise Exception(
|
|
212
|
+
f"tool {tool.name} execution timeout after {run_context.context.tool_call_timeout} seconds."
|
|
213
|
+
)
|
|
214
|
+
except StopAsyncIteration:
|
|
215
|
+
break
|
|
203
216
|
|
|
204
217
|
@classmethod
|
|
205
218
|
async def _execute_mcp(
|
|
@@ -217,6 +230,9 @@ class FunctionToolExecutor(BaseFunctionToolExecutor[AstrAgentContext]):
|
|
|
217
230
|
res = await session.call_tool(
|
|
218
231
|
name=tool.name,
|
|
219
232
|
arguments=tool_args,
|
|
233
|
+
read_timeout_seconds=timedelta(
|
|
234
|
+
seconds=run_context.context.tool_call_timeout
|
|
235
|
+
),
|
|
220
236
|
)
|
|
221
237
|
if not res:
|
|
222
238
|
return
|
|
@@ -307,6 +323,7 @@ class LLMRequestSubStage(Stage):
|
|
|
307
323
|
)
|
|
308
324
|
self.streaming_response: bool = settings["streaming_response"]
|
|
309
325
|
self.max_step: int = settings.get("max_agent_step", 30)
|
|
326
|
+
self.tool_call_timeout: int = settings.get("tool_call_timeout", 60)
|
|
310
327
|
if isinstance(self.max_step, bool): # workaround: #2622
|
|
311
328
|
self.max_step = 30
|
|
312
329
|
self.show_tool_use: bool = settings.get("show_tool_use_status", True)
|
|
@@ -473,6 +490,7 @@ class LLMRequestSubStage(Stage):
|
|
|
473
490
|
first_provider_request=req,
|
|
474
491
|
curr_provider_request=req,
|
|
475
492
|
streaming=self.streaming_response,
|
|
493
|
+
tool_call_timeout=self.tool_call_timeout,
|
|
476
494
|
)
|
|
477
495
|
await agent_runner.reset(
|
|
478
496
|
provider=provider,
|
|
@@ -74,7 +74,7 @@ class PipelineScheduler:
|
|
|
74
74
|
await self._process_stages(event)
|
|
75
75
|
|
|
76
76
|
# 如果没有发送操作, 则发送一个空消息, 以便于后续的处理
|
|
77
|
-
if event.get_platform_name()
|
|
77
|
+
if event.get_platform_name() in ["webchat", "wecom_ai_bot"]:
|
|
78
78
|
await event.send(None)
|
|
79
79
|
|
|
80
80
|
logger.debug("pipeline 执行完毕。")
|
|
@@ -82,6 +82,10 @@ class PlatformManager:
|
|
|
82
82
|
from .sources.wecom.wecom_adapter import (
|
|
83
83
|
WecomPlatformAdapter, # noqa: F401
|
|
84
84
|
)
|
|
85
|
+
case "wecom_ai_bot":
|
|
86
|
+
from .sources.wecom_ai_bot.wecomai_adapter import (
|
|
87
|
+
WecomAIBotAdapter, # noqa: F401
|
|
88
|
+
)
|
|
85
89
|
case "weixin_official_account":
|
|
86
90
|
from .sources.weixin_official_account.weixin_offacc_adapter import (
|
|
87
91
|
WeixinOfficialAccountPlatformAdapter, # noqa: F401
|