AstrBot 4.3.1__tar.gz → 4.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {astrbot-4.3.1 → astrbot-4.3.2}/PKG-INFO +1 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/runners/tool_loop_agent_runner.py +17 -2
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/config/default.py +1 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/respond/stage.py +10 -0
- astrbot-4.3.2/changelogs/v4.3.2.md +7 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ExtensionPage.vue +28 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/conversation.py +2 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/main.py +1 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/engines/google.py +3 -3
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/main.py +10 -5
- {astrbot-4.3.1 → astrbot-4.3.2}/pyproject.toml +1 -1
- {astrbot-4.3.1 → astrbot-4.3.2}/.dockerignore +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/FUNDING.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/auto_assign.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/copilot-instructions.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/dependabot.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.github/workflows/stale.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.gitignore +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.pre-commit-config.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/.python-version +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/Dockerfile +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/Dockerfile_with_node +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/LICENSE +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/README.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/README_en.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/README_ja.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/all.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/message_components.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/po.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/log.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/message/components.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/process_stage/method/llm_request.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/provider.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/anthropic_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/coze_api_client.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/coze_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/dashscope_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/dify_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/openai_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/README.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/config.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/context.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/star.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/updator.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/dify_api_client.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/astrbot/dashboard/server.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/compose.yml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/.gitignore +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/LICENSE +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/README.md +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/env.d.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/index.html +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/public/_redirects +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/App.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/chat/Chat.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/chat/MessageList.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/config.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/main.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/ToolUsePage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/tsconfig.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/dashboard/vite.config.ts +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/admin.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/alter_cmd.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/help.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/llm.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/persona.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/plugin.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/provider.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/setunset.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/sid.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/t2i.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/tool.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/commands/tts.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/long_term_memory.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/astrbot/process_llm_request.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/python_interpreter/main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/python_interpreter/requirements.txt +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/python_interpreter/shared/api.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/reminder/main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/reminder/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/session_controller/main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/session_controller/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/thinking_filter/main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/thinking_filter/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/engines/bing.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/packages/web_searcher/metadata.yaml +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/requirements.txt +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/samples/stt_health_check.wav +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/tests/test_dashboard.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/tests/test_main.py +0 -0
- {astrbot-4.3.1 → astrbot-4.3.2}/tests/test_plugin_manager.py +0 -0
|
@@ -198,6 +198,17 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
198
198
|
func_tool = req.func_tool.get_func(func_tool_name)
|
|
199
199
|
logger.info(f"使用工具:{func_tool_name},参数:{func_tool_args}")
|
|
200
200
|
|
|
201
|
+
if not func_tool:
|
|
202
|
+
logger.warning(f"未找到指定的工具: {func_tool_name},将跳过。")
|
|
203
|
+
tool_call_result_blocks.append(
|
|
204
|
+
ToolCallMessageSegment(
|
|
205
|
+
role="tool",
|
|
206
|
+
tool_call_id=func_tool_id,
|
|
207
|
+
content=f"error: 未找到工具 {func_tool_name}",
|
|
208
|
+
)
|
|
209
|
+
)
|
|
210
|
+
continue
|
|
211
|
+
|
|
201
212
|
try:
|
|
202
213
|
await self.agent_hooks.on_tool_start(
|
|
203
214
|
self.run_context, func_tool, func_tool_args
|
|
@@ -210,9 +221,12 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
210
221
|
run_context=self.run_context,
|
|
211
222
|
**func_tool_args,
|
|
212
223
|
)
|
|
213
|
-
|
|
224
|
+
|
|
225
|
+
_final_resp: CallToolResult | None = None
|
|
226
|
+
async for resp in executor: # type: ignore
|
|
214
227
|
if isinstance(resp, CallToolResult):
|
|
215
228
|
res = resp
|
|
229
|
+
_final_resp = resp
|
|
216
230
|
if isinstance(res.content[0], TextContent):
|
|
217
231
|
tool_call_result_blocks.append(
|
|
218
232
|
ToolCallMessageSegment(
|
|
@@ -279,13 +293,14 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
279
293
|
chain=res.chain, type="tool_direct_result"
|
|
280
294
|
)
|
|
281
295
|
else:
|
|
296
|
+
# 不应该出现其他类型
|
|
282
297
|
logger.warning(
|
|
283
298
|
f"Tool 返回了不支持的类型: {type(resp)},将忽略。"
|
|
284
299
|
)
|
|
285
300
|
|
|
286
301
|
try:
|
|
287
302
|
await self.agent_hooks.on_tool_end(
|
|
288
|
-
self.run_context, func_tool, func_tool_args,
|
|
303
|
+
self.run_context, func_tool, func_tool_args, _final_resp
|
|
289
304
|
)
|
|
290
305
|
except Exception as e:
|
|
291
306
|
logger.error(f"Error in on_tool_end hook: {e}", exc_info=True)
|
|
@@ -190,6 +190,16 @@ class RespondStage(Stage):
|
|
|
190
190
|
except Exception as e:
|
|
191
191
|
logger.warning(f"空内容检查异常: {e}")
|
|
192
192
|
|
|
193
|
+
# 将 Plain 为空的消息段移除
|
|
194
|
+
result.chain = [
|
|
195
|
+
comp
|
|
196
|
+
for comp in result.chain
|
|
197
|
+
if not (
|
|
198
|
+
isinstance(comp, Comp.Plain)
|
|
199
|
+
and (not comp.text or not comp.text.strip())
|
|
200
|
+
)
|
|
201
|
+
]
|
|
202
|
+
|
|
193
203
|
# 发送消息链
|
|
194
204
|
# Record 需要强制单独发送
|
|
195
205
|
need_separately = {ComponentType.Record}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# What's Changed
|
|
2
|
+
|
|
3
|
+
1. fix: 修复 /reset 指令没有清除群聊上下文感知数据的问题 ([#2954](https://github.com/AstrBotDevs/AstrBot/issues/2954))
|
|
4
|
+
2. fix: 修复自带的 WebSearch 插件可能在部分场景下无法使用的问题
|
|
5
|
+
3. fix: 发送阶段强行将 Plain 为空的消息段移除
|
|
6
|
+
4. fix: on_tool_end无法获得工具返回的结果 ([#2956](https://github.com/AstrBotDevs/AstrBot/issues/2956))
|
|
7
|
+
5. feat: 为插件市场的搜索增加拼音与首字母搜索功能 ([#2936](https://github.com/AstrBotDevs/AstrBot/issues/2936))
|
|
@@ -5,6 +5,7 @@ import ConsoleDisplayer from '@/components/shared/ConsoleDisplayer.vue';
|
|
|
5
5
|
import ReadmeDialog from '@/components/shared/ReadmeDialog.vue';
|
|
6
6
|
import ProxySelector from '@/components/shared/ProxySelector.vue';
|
|
7
7
|
import axios from 'axios';
|
|
8
|
+
import { pinyin } from 'pinyin-pro';
|
|
8
9
|
import { useCommonStore } from '@/stores/common';
|
|
9
10
|
import { useI18n, useModuleI18n } from '@/i18n/composables';
|
|
10
11
|
|
|
@@ -65,6 +66,32 @@ const marketSearch = ref("");
|
|
|
65
66
|
const filterKeys = ['name', 'desc', 'author'];
|
|
66
67
|
const refreshingMarket = ref(false);
|
|
67
68
|
|
|
69
|
+
// 插件市场拼音搜索
|
|
70
|
+
const normalizeStr = (s) => (s ?? '').toString().toLowerCase().trim();
|
|
71
|
+
const toPinyinText = (s) => pinyin(s ?? '', { toneType: 'none' }).toLowerCase().replace(/\s+/g, '');
|
|
72
|
+
const toInitials = (s) => pinyin(s ?? '', { pattern: 'first', toneType: 'none' }).toLowerCase().replace(/\s+/g, '');
|
|
73
|
+
const marketCustomFilter = (value, query, item) => {
|
|
74
|
+
const q = normalizeStr(query);
|
|
75
|
+
if (!q) return true;
|
|
76
|
+
|
|
77
|
+
const candidates = new Set();
|
|
78
|
+
if (value != null) candidates.add(String(value));
|
|
79
|
+
if (item?.name) candidates.add(String(item.name));
|
|
80
|
+
if (item?.trimmedName) candidates.add(String(item.trimmedName));
|
|
81
|
+
if (item?.desc) candidates.add(String(item.desc));
|
|
82
|
+
if (item?.author) candidates.add(String(item.author));
|
|
83
|
+
|
|
84
|
+
for (const v of candidates) {
|
|
85
|
+
const nv = normalizeStr(v);
|
|
86
|
+
if (nv.includes(q)) return true;
|
|
87
|
+
const pv = toPinyinText(v);
|
|
88
|
+
if (pv.includes(q)) return true;
|
|
89
|
+
const iv = toInitials(v);
|
|
90
|
+
if (iv.includes(q)) return true;
|
|
91
|
+
}
|
|
92
|
+
return false;
|
|
93
|
+
};
|
|
94
|
+
|
|
68
95
|
const plugin_handler_info_headers = computed(() => [
|
|
69
96
|
{ title: tm('table.headers.eventType'), key: 'event_type_h' },
|
|
70
97
|
{ title: tm('table.headers.description'), key: 'desc', maxWidth: '250px' },
|
|
@@ -772,7 +799,7 @@ onMounted(async () => {
|
|
|
772
799
|
|
|
773
800
|
<v-col cols="12" md="12" style="padding: 0px;">
|
|
774
801
|
<v-data-table :headers="pluginMarketHeaders" :items="pluginMarketData" item-key="name"
|
|
775
|
-
:loading="loading_" v-model:search="marketSearch" :filter-keys="filterKeys">
|
|
802
|
+
:loading="loading_" v-model:search="marketSearch" :filter-keys="filterKeys" :custom-filter="marketCustomFilter">
|
|
776
803
|
<template v-slot:item.name="{ item }">
|
|
777
804
|
<div class="d-flex align-center"
|
|
778
805
|
style="overflow-x: auto; scrollbar-width: thin; scrollbar-track-color: transparent;">
|
|
@@ -6,6 +6,7 @@ from astrbot.core.platform.message_type import MessageType
|
|
|
6
6
|
from astrbot.core.provider.sources.dify_source import ProviderDify
|
|
7
7
|
from astrbot.core.provider.sources.coze_source import ProviderCoze
|
|
8
8
|
from astrbot.api import sp, logger
|
|
9
|
+
from ..long_term_memory import LongTermMemory
|
|
9
10
|
from typing import Union
|
|
10
11
|
from enum import Enum
|
|
11
12
|
|
|
@@ -36,7 +37,7 @@ class RstScene(Enum):
|
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
class ConversationCommands:
|
|
39
|
-
def __init__(self, context: star.Context, ltm=None):
|
|
40
|
+
def __init__(self, context: star.Context, ltm: LongTermMemory | None = None):
|
|
40
41
|
self.context = context
|
|
41
42
|
self.ltm = ltm
|
|
42
43
|
|
|
@@ -41,7 +41,7 @@ class Main(star.Star):
|
|
|
41
41
|
self.tool_c = ToolCommands(self.context)
|
|
42
42
|
self.plugin_c = PluginCommands(self.context)
|
|
43
43
|
self.admin_c = AdminCommands(self.context)
|
|
44
|
-
self.conversation_c = ConversationCommands(self.context)
|
|
44
|
+
self.conversation_c = ConversationCommands(self.context, self.ltm)
|
|
45
45
|
self.provider_c = ProviderCommands(self.context)
|
|
46
46
|
self.persona_c = PersonaCommands(self.context)
|
|
47
47
|
self.alter_cmd_c = AlterCmdCommands(self.context)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import os
|
|
2
|
-
from googlesearch import
|
|
2
|
+
from googlesearch.asearch import asearch
|
|
3
3
|
|
|
4
4
|
from . import SearchEngine, SearchResult
|
|
5
5
|
|
|
@@ -14,14 +14,14 @@ class Google(SearchEngine):
|
|
|
14
14
|
async def search(self, query: str, num_results: int) -> List[SearchResult]:
|
|
15
15
|
results = []
|
|
16
16
|
try:
|
|
17
|
-
ls =
|
|
17
|
+
ls = asearch(
|
|
18
18
|
query,
|
|
19
19
|
advanced=True,
|
|
20
20
|
num_results=num_results,
|
|
21
21
|
timeout=3,
|
|
22
22
|
proxy=self.proxy,
|
|
23
23
|
)
|
|
24
|
-
for i in ls:
|
|
24
|
+
async for i in ls:
|
|
25
25
|
results.append(
|
|
26
26
|
SearchResult(title=i.title, url=i.url, snippet=i.description)
|
|
27
27
|
)
|
|
@@ -46,7 +46,11 @@ class Main(star.Star):
|
|
|
46
46
|
|
|
47
47
|
self.bing_search = Bing()
|
|
48
48
|
self.sogo_search = Sogo()
|
|
49
|
-
self.google =
|
|
49
|
+
self.google = None
|
|
50
|
+
try:
|
|
51
|
+
self.google = Google()
|
|
52
|
+
except Exception as e:
|
|
53
|
+
logger.error(f"google search init error: {e}, disable google search")
|
|
50
54
|
|
|
51
55
|
async def _tidy_text(self, text: str) -> str:
|
|
52
56
|
"""清理文本,去除空格、换行符等"""
|
|
@@ -89,10 +93,11 @@ class Main(star.Star):
|
|
|
89
93
|
self, query, num_results: int = 5
|
|
90
94
|
) -> list[SearchResult]:
|
|
91
95
|
results = []
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
+
if self.google:
|
|
97
|
+
try:
|
|
98
|
+
results = await self.google.search(query, num_results)
|
|
99
|
+
except Exception as e:
|
|
100
|
+
logger.error(f"google search error: {e}, try the next one...")
|
|
96
101
|
if len(results) == 0:
|
|
97
102
|
logger.debug("search google failed")
|
|
98
103
|
try:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py
RENAMED
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py
RENAMED
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py
RENAMED
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/discord_platform_adapter.py
RENAMED
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/discord/discord_platform_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{astrbot-4.3.1 → astrbot-4.3.2}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|