AstrBot 4.7.0__tar.gz → 4.7.1__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.7.0 → astrbot-4.7.1}/PKG-INFO +1 -1
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/config/default.py +1 -1
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/session_llm_manager.py +0 -107
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/session_plugin_manager.py +0 -81
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/knowledge_base.py +0 -156
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/session_management.py +40 -1
- astrbot-4.7.1/changelogs/v4.7.1.md +22 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/session-management.json +11 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +11 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/SessionManagementPage.vue +212 -2
- {astrbot-4.7.0 → astrbot-4.7.1}/pyproject.toml +1 -1
- {astrbot-4.7.0 → astrbot-4.7.1}/.dockerignore +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/FUNDING.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/auto_assign.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/copilot-instructions.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/dependabot.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.github/workflows/stale.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.gitignore +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.pre-commit-config.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/.python-version +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/Dockerfile +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/LICENSE +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/README.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/README_en.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/README_ja.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/all.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/message_components.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/message.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/astr_agent_hooks.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/astr_agent_run_util.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/astr_agent_tool_exec.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/po.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/kb_helper.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/parsers/util.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/log.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/message/components.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/process_stage/utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/provider.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/anthropic_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/openai_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/README.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/config.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/context.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/star.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/updator.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/server.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/compose.yml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/.gitignore +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/LICENSE +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/README.md +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/env.d.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/index.html +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/public/_redirects +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/App.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/Chat.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/ChatInput.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/ConversationSidebar.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/MessageList.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/ProviderModelSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/chat/StandaloneChat.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ListConfigItem.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/composables/useMediaHandling.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/composables/useMessages.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/composables/useRecording.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/config.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/common.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/config-metadata.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/common.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/main.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/ToolUsePage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/tsconfig.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/dashboard/vite.config.ts +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/admin.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/alter_cmd.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/conversation.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/help.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/llm.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/persona.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/plugin.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/provider.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/setunset.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/sid.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/t2i.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/tool.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/tts.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/commands/utils/rst_scene.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/long_term_memory.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/metadata.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/astrbot/process_llm_request.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/python_interpreter/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/python_interpreter/requirements.txt +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/python_interpreter/shared/api.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/reminder/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/reminder/metadata.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/session_controller/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/session_controller/metadata.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/web_searcher/engines/bing.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/web_searcher/main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/packages/web_searcher/metadata.yaml +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/requirements.txt +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/samples/stt_health_check.wav +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/tests/test_dashboard.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/tests/test_main.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/tests/test_plugin_manager.py +0 -0
- {astrbot-4.7.0 → astrbot-4.7.1}/tests/test_security_fixes.py +0 -0
|
@@ -171,110 +171,3 @@ class SessionServiceManager:
|
|
|
171
171
|
|
|
172
172
|
# 如果没有配置,默认为启用(兼容性考虑)
|
|
173
173
|
return True
|
|
174
|
-
|
|
175
|
-
@staticmethod
|
|
176
|
-
def set_session_status(session_id: str, enabled: bool) -> None:
|
|
177
|
-
"""设置会话的整体启停状态
|
|
178
|
-
|
|
179
|
-
Args:
|
|
180
|
-
session_id: 会话ID (unified_msg_origin)
|
|
181
|
-
enabled: True表示启用,False表示禁用
|
|
182
|
-
|
|
183
|
-
"""
|
|
184
|
-
session_config = (
|
|
185
|
-
sp.get("session_service_config", {}, scope="umo", scope_id=session_id) or {}
|
|
186
|
-
)
|
|
187
|
-
session_config["session_enabled"] = enabled
|
|
188
|
-
sp.put(
|
|
189
|
-
"session_service_config",
|
|
190
|
-
session_config,
|
|
191
|
-
scope="umo",
|
|
192
|
-
scope_id=session_id,
|
|
193
|
-
)
|
|
194
|
-
|
|
195
|
-
logger.info(
|
|
196
|
-
f"会话 {session_id} 的整体状态已更新为: {'启用' if enabled else '禁用'}",
|
|
197
|
-
)
|
|
198
|
-
|
|
199
|
-
@staticmethod
|
|
200
|
-
def should_process_session_request(event: AstrMessageEvent) -> bool:
|
|
201
|
-
"""检查是否应该处理会话请求(会话整体启停检查)
|
|
202
|
-
|
|
203
|
-
Args:
|
|
204
|
-
event: 消息事件
|
|
205
|
-
|
|
206
|
-
Returns:
|
|
207
|
-
bool: True表示应该处理,False表示跳过
|
|
208
|
-
|
|
209
|
-
"""
|
|
210
|
-
session_id = event.unified_msg_origin
|
|
211
|
-
return SessionServiceManager.is_session_enabled(session_id)
|
|
212
|
-
|
|
213
|
-
# =============================================================================
|
|
214
|
-
# 会话命名相关方法
|
|
215
|
-
# =============================================================================
|
|
216
|
-
|
|
217
|
-
@staticmethod
|
|
218
|
-
def get_session_custom_name(session_id: str) -> str | None:
|
|
219
|
-
"""获取会话的自定义名称
|
|
220
|
-
|
|
221
|
-
Args:
|
|
222
|
-
session_id: 会话ID (unified_msg_origin)
|
|
223
|
-
|
|
224
|
-
Returns:
|
|
225
|
-
str: 自定义名称,如果没有设置则返回None
|
|
226
|
-
|
|
227
|
-
"""
|
|
228
|
-
session_services = sp.get(
|
|
229
|
-
"session_service_config",
|
|
230
|
-
{},
|
|
231
|
-
scope="umo",
|
|
232
|
-
scope_id=session_id,
|
|
233
|
-
)
|
|
234
|
-
return session_services.get("custom_name")
|
|
235
|
-
|
|
236
|
-
@staticmethod
|
|
237
|
-
def set_session_custom_name(session_id: str, custom_name: str) -> None:
|
|
238
|
-
"""设置会话的自定义名称
|
|
239
|
-
|
|
240
|
-
Args:
|
|
241
|
-
session_id: 会话ID (unified_msg_origin)
|
|
242
|
-
custom_name: 自定义名称,可以为空字符串来清除名称
|
|
243
|
-
|
|
244
|
-
"""
|
|
245
|
-
session_config = (
|
|
246
|
-
sp.get("session_service_config", {}, scope="umo", scope_id=session_id) or {}
|
|
247
|
-
)
|
|
248
|
-
if custom_name and custom_name.strip():
|
|
249
|
-
session_config["custom_name"] = custom_name.strip()
|
|
250
|
-
else:
|
|
251
|
-
# 如果传入空名称,则删除自定义名称
|
|
252
|
-
session_config.pop("custom_name", None)
|
|
253
|
-
sp.put(
|
|
254
|
-
"session_service_config",
|
|
255
|
-
session_config,
|
|
256
|
-
scope="umo",
|
|
257
|
-
scope_id=session_id,
|
|
258
|
-
)
|
|
259
|
-
|
|
260
|
-
logger.info(
|
|
261
|
-
f"会话 {session_id} 的自定义名称已更新为: {custom_name.strip() if custom_name and custom_name.strip() else '已清除'}",
|
|
262
|
-
)
|
|
263
|
-
|
|
264
|
-
@staticmethod
|
|
265
|
-
def get_session_display_name(session_id: str) -> str:
|
|
266
|
-
"""获取会话的显示名称(优先显示自定义名称,否则显示原始session_id的最后一段)
|
|
267
|
-
|
|
268
|
-
Args:
|
|
269
|
-
session_id: 会话ID (unified_msg_origin)
|
|
270
|
-
|
|
271
|
-
Returns:
|
|
272
|
-
str: 显示名称
|
|
273
|
-
|
|
274
|
-
"""
|
|
275
|
-
custom_name = SessionServiceManager.get_session_custom_name(session_id)
|
|
276
|
-
if custom_name:
|
|
277
|
-
return custom_name
|
|
278
|
-
|
|
279
|
-
# 如果没有自定义名称,返回session_id的最后一段
|
|
280
|
-
return session_id.split(":")[2] if session_id.count(":") >= 2 else session_id
|
|
@@ -42,87 +42,6 @@ class SessionPluginManager:
|
|
|
42
42
|
# 如果都没有配置,默认为启用(兼容性考虑)
|
|
43
43
|
return True
|
|
44
44
|
|
|
45
|
-
@staticmethod
|
|
46
|
-
def set_plugin_status_for_session(
|
|
47
|
-
session_id: str,
|
|
48
|
-
plugin_name: str,
|
|
49
|
-
enabled: bool,
|
|
50
|
-
) -> None:
|
|
51
|
-
"""设置插件在指定会话中的启停状态
|
|
52
|
-
|
|
53
|
-
Args:
|
|
54
|
-
session_id: 会话ID (unified_msg_origin)
|
|
55
|
-
plugin_name: 插件名称
|
|
56
|
-
enabled: True表示启用,False表示禁用
|
|
57
|
-
|
|
58
|
-
"""
|
|
59
|
-
# 获取当前配置
|
|
60
|
-
session_plugin_config = sp.get(
|
|
61
|
-
"session_plugin_config",
|
|
62
|
-
{},
|
|
63
|
-
scope="umo",
|
|
64
|
-
scope_id=session_id,
|
|
65
|
-
)
|
|
66
|
-
if session_id not in session_plugin_config:
|
|
67
|
-
session_plugin_config[session_id] = {
|
|
68
|
-
"enabled_plugins": [],
|
|
69
|
-
"disabled_plugins": [],
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
session_config = session_plugin_config[session_id]
|
|
73
|
-
enabled_plugins = session_config.get("enabled_plugins", [])
|
|
74
|
-
disabled_plugins = session_config.get("disabled_plugins", [])
|
|
75
|
-
|
|
76
|
-
if enabled:
|
|
77
|
-
# 启用插件
|
|
78
|
-
if plugin_name in disabled_plugins:
|
|
79
|
-
disabled_plugins.remove(plugin_name)
|
|
80
|
-
if plugin_name not in enabled_plugins:
|
|
81
|
-
enabled_plugins.append(plugin_name)
|
|
82
|
-
else:
|
|
83
|
-
# 禁用插件
|
|
84
|
-
if plugin_name in enabled_plugins:
|
|
85
|
-
enabled_plugins.remove(plugin_name)
|
|
86
|
-
if plugin_name not in disabled_plugins:
|
|
87
|
-
disabled_plugins.append(plugin_name)
|
|
88
|
-
|
|
89
|
-
# 保存配置
|
|
90
|
-
session_config["enabled_plugins"] = enabled_plugins
|
|
91
|
-
session_config["disabled_plugins"] = disabled_plugins
|
|
92
|
-
session_plugin_config[session_id] = session_config
|
|
93
|
-
sp.put(
|
|
94
|
-
"session_plugin_config",
|
|
95
|
-
session_plugin_config,
|
|
96
|
-
scope="umo",
|
|
97
|
-
scope_id=session_id,
|
|
98
|
-
)
|
|
99
|
-
|
|
100
|
-
logger.info(
|
|
101
|
-
f"会话 {session_id} 的插件 {plugin_name} 状态已更新为: {'启用' if enabled else '禁用'}",
|
|
102
|
-
)
|
|
103
|
-
|
|
104
|
-
@staticmethod
|
|
105
|
-
def get_session_plugin_config(session_id: str) -> dict[str, list[str]]:
|
|
106
|
-
"""获取指定会话的插件配置
|
|
107
|
-
|
|
108
|
-
Args:
|
|
109
|
-
session_id: 会话ID (unified_msg_origin)
|
|
110
|
-
|
|
111
|
-
Returns:
|
|
112
|
-
Dict[str, List[str]]: 包含enabled_plugins和disabled_plugins的字典
|
|
113
|
-
|
|
114
|
-
"""
|
|
115
|
-
session_plugin_config = sp.get(
|
|
116
|
-
"session_plugin_config",
|
|
117
|
-
{},
|
|
118
|
-
scope="umo",
|
|
119
|
-
scope_id=session_id,
|
|
120
|
-
)
|
|
121
|
-
return session_plugin_config.get(
|
|
122
|
-
session_id,
|
|
123
|
-
{"enabled_plugins": [], "disabled_plugins": []},
|
|
124
|
-
)
|
|
125
|
-
|
|
126
45
|
@staticmethod
|
|
127
46
|
def filter_handlers_by_session(event: AstrMessageEvent, handlers: list) -> list:
|
|
128
47
|
"""根据会话配置过滤处理器列表
|
|
@@ -60,10 +60,6 @@ class KnowledgeBaseRoute(Route):
|
|
|
60
60
|
# "/kb/media/delete": ("POST", self.delete_media),
|
|
61
61
|
# 检索
|
|
62
62
|
"/kb/retrieve": ("POST", self.retrieve),
|
|
63
|
-
# 会话知识库配置
|
|
64
|
-
"/kb/session/config/get": ("GET", self.get_session_kb_config),
|
|
65
|
-
"/kb/session/config/set": ("POST", self.set_session_kb_config),
|
|
66
|
-
"/kb/session/config/delete": ("POST", self.delete_session_kb_config),
|
|
67
63
|
}
|
|
68
64
|
self.register_routes()
|
|
69
65
|
|
|
@@ -920,158 +916,6 @@ class KnowledgeBaseRoute(Route):
|
|
|
920
916
|
logger.error(traceback.format_exc())
|
|
921
917
|
return Response().error(f"检索失败: {e!s}").__dict__
|
|
922
918
|
|
|
923
|
-
# ===== 会话知识库配置 API =====
|
|
924
|
-
|
|
925
|
-
async def get_session_kb_config(self):
|
|
926
|
-
"""获取会话的知识库配置
|
|
927
|
-
|
|
928
|
-
Query 参数:
|
|
929
|
-
- session_id: 会话 ID (必填)
|
|
930
|
-
|
|
931
|
-
返回:
|
|
932
|
-
- kb_ids: 知识库 ID 列表
|
|
933
|
-
- top_k: 返回结果数量
|
|
934
|
-
- enable_rerank: 是否启用重排序
|
|
935
|
-
"""
|
|
936
|
-
try:
|
|
937
|
-
from astrbot.core import sp
|
|
938
|
-
|
|
939
|
-
session_id = request.args.get("session_id")
|
|
940
|
-
|
|
941
|
-
if not session_id:
|
|
942
|
-
return Response().error("缺少参数 session_id").__dict__
|
|
943
|
-
|
|
944
|
-
# 从 SharedPreferences 获取配置
|
|
945
|
-
config = await sp.session_get(session_id, "kb_config", default={})
|
|
946
|
-
|
|
947
|
-
logger.debug(f"[KB配置] 读取到配置: session_id={session_id}")
|
|
948
|
-
|
|
949
|
-
# 如果没有配置,返回默认值
|
|
950
|
-
if not config:
|
|
951
|
-
config = {"kb_ids": [], "top_k": 5, "enable_rerank": True}
|
|
952
|
-
|
|
953
|
-
return Response().ok(config).__dict__
|
|
954
|
-
|
|
955
|
-
except Exception as e:
|
|
956
|
-
logger.error(f"[KB配置] 获取配置时出错: {e}", exc_info=True)
|
|
957
|
-
return Response().error(f"获取会话知识库配置失败: {e!s}").__dict__
|
|
958
|
-
|
|
959
|
-
async def set_session_kb_config(self):
|
|
960
|
-
"""设置会话的知识库配置
|
|
961
|
-
|
|
962
|
-
Body:
|
|
963
|
-
- scope: 配置范围 (目前只支持 "session")
|
|
964
|
-
- scope_id: 会话 ID (必填)
|
|
965
|
-
- kb_ids: 知识库 ID 列表 (必填)
|
|
966
|
-
- top_k: 返回结果数量 (可选, 默认 5)
|
|
967
|
-
- enable_rerank: 是否启用重排序 (可选, 默认 true)
|
|
968
|
-
"""
|
|
969
|
-
try:
|
|
970
|
-
from astrbot.core import sp
|
|
971
|
-
|
|
972
|
-
data = await request.json
|
|
973
|
-
|
|
974
|
-
scope = data.get("scope")
|
|
975
|
-
scope_id = data.get("scope_id")
|
|
976
|
-
kb_ids = data.get("kb_ids", [])
|
|
977
|
-
top_k = data.get("top_k", 5)
|
|
978
|
-
enable_rerank = data.get("enable_rerank", True)
|
|
979
|
-
|
|
980
|
-
# 验证参数
|
|
981
|
-
if scope != "session":
|
|
982
|
-
return Response().error("目前仅支持 session 范围的配置").__dict__
|
|
983
|
-
|
|
984
|
-
if not scope_id:
|
|
985
|
-
return Response().error("缺少参数 scope_id").__dict__
|
|
986
|
-
|
|
987
|
-
if not isinstance(kb_ids, list):
|
|
988
|
-
return Response().error("kb_ids 必须是列表").__dict__
|
|
989
|
-
|
|
990
|
-
# 验证知识库是否存在
|
|
991
|
-
kb_mgr = self._get_kb_manager()
|
|
992
|
-
invalid_ids = []
|
|
993
|
-
valid_ids = []
|
|
994
|
-
for kb_id in kb_ids:
|
|
995
|
-
kb_helper = await kb_mgr.get_kb(kb_id)
|
|
996
|
-
if kb_helper:
|
|
997
|
-
valid_ids.append(kb_id)
|
|
998
|
-
else:
|
|
999
|
-
invalid_ids.append(kb_id)
|
|
1000
|
-
logger.warning(f"[KB配置] 知识库不存在: {kb_id}")
|
|
1001
|
-
|
|
1002
|
-
if invalid_ids:
|
|
1003
|
-
logger.warning(f"[KB配置] 以下知识库ID无效: {invalid_ids}")
|
|
1004
|
-
|
|
1005
|
-
# 允许保存空列表,表示明确不使用任何知识库
|
|
1006
|
-
if kb_ids and not valid_ids:
|
|
1007
|
-
# 只有当用户提供了 kb_ids 但全部无效时才报错
|
|
1008
|
-
return Response().error(f"所有提供的知识库ID都无效: {kb_ids}").__dict__
|
|
1009
|
-
|
|
1010
|
-
# 如果 kb_ids 为空列表,表示用户想清空配置
|
|
1011
|
-
if not kb_ids:
|
|
1012
|
-
valid_ids = []
|
|
1013
|
-
|
|
1014
|
-
# 构建配置对象(只保存有效的ID)
|
|
1015
|
-
config = {
|
|
1016
|
-
"kb_ids": valid_ids,
|
|
1017
|
-
"top_k": top_k,
|
|
1018
|
-
"enable_rerank": enable_rerank,
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
# 保存到 SharedPreferences
|
|
1022
|
-
await sp.session_put(scope_id, "kb_config", config)
|
|
1023
|
-
|
|
1024
|
-
# 立即验证是否保存成功
|
|
1025
|
-
verify_config = await sp.session_get(scope_id, "kb_config", default={})
|
|
1026
|
-
|
|
1027
|
-
if verify_config == config:
|
|
1028
|
-
return (
|
|
1029
|
-
Response()
|
|
1030
|
-
.ok(
|
|
1031
|
-
{"valid_ids": valid_ids, "invalid_ids": invalid_ids},
|
|
1032
|
-
"保存知识库配置成功",
|
|
1033
|
-
)
|
|
1034
|
-
.__dict__
|
|
1035
|
-
)
|
|
1036
|
-
logger.error("[KB配置] 配置保存失败,验证不匹配")
|
|
1037
|
-
return Response().error("配置保存失败").__dict__
|
|
1038
|
-
|
|
1039
|
-
except Exception as e:
|
|
1040
|
-
logger.error(f"[KB配置] 设置配置时出错: {e}", exc_info=True)
|
|
1041
|
-
return Response().error(f"设置会话知识库配置失败: {e!s}").__dict__
|
|
1042
|
-
|
|
1043
|
-
async def delete_session_kb_config(self):
|
|
1044
|
-
"""删除会话的知识库配置
|
|
1045
|
-
|
|
1046
|
-
Body:
|
|
1047
|
-
- scope: 配置范围 (目前只支持 "session")
|
|
1048
|
-
- scope_id: 会话 ID (必填)
|
|
1049
|
-
"""
|
|
1050
|
-
try:
|
|
1051
|
-
from astrbot.core import sp
|
|
1052
|
-
|
|
1053
|
-
data = await request.json
|
|
1054
|
-
|
|
1055
|
-
scope = data.get("scope")
|
|
1056
|
-
scope_id = data.get("scope_id")
|
|
1057
|
-
|
|
1058
|
-
# 验证参数
|
|
1059
|
-
if scope != "session":
|
|
1060
|
-
return Response().error("目前仅支持 session 范围的配置").__dict__
|
|
1061
|
-
|
|
1062
|
-
if not scope_id:
|
|
1063
|
-
return Response().error("缺少参数 scope_id").__dict__
|
|
1064
|
-
|
|
1065
|
-
# 从 SharedPreferences 删除配置
|
|
1066
|
-
await sp.session_remove(scope_id, "kb_config")
|
|
1067
|
-
|
|
1068
|
-
return Response().ok(message="删除知识库配置成功").__dict__
|
|
1069
|
-
|
|
1070
|
-
except Exception as e:
|
|
1071
|
-
logger.error(f"删除会话知识库配置失败: {e}")
|
|
1072
|
-
logger.error(traceback.format_exc())
|
|
1073
|
-
return Response().error(f"删除会话知识库配置失败: {e!s}").__dict__
|
|
1074
|
-
|
|
1075
919
|
async def upload_document_from_url(self):
|
|
1076
920
|
"""从 URL 上传文档
|
|
1077
921
|
|
|
@@ -74,7 +74,10 @@ class SessionManagementRoute(Route):
|
|
|
74
74
|
umo_id = pref.scope_id
|
|
75
75
|
if umo_id not in umo_rules:
|
|
76
76
|
umo_rules[umo_id] = {}
|
|
77
|
-
|
|
77
|
+
if pref.key == "session_plugin_config" and umo_id in pref.value["val"]:
|
|
78
|
+
umo_rules[umo_id][pref.key] = pref.value["val"][umo_id]
|
|
79
|
+
else:
|
|
80
|
+
umo_rules[umo_id][pref.key] = pref.value["val"]
|
|
78
81
|
|
|
79
82
|
# 搜索过滤
|
|
80
83
|
if search:
|
|
@@ -185,6 +188,35 @@ class SessionManagementRoute(Route):
|
|
|
185
188
|
for p in provider_manager.tts_provider_insts
|
|
186
189
|
]
|
|
187
190
|
|
|
191
|
+
# 获取可用的插件列表(排除 reserved 的系统插件)
|
|
192
|
+
plugin_manager = self.core_lifecycle.plugin_manager
|
|
193
|
+
available_plugins = [
|
|
194
|
+
{
|
|
195
|
+
"name": p.name,
|
|
196
|
+
"display_name": p.display_name or p.name,
|
|
197
|
+
"desc": p.desc,
|
|
198
|
+
}
|
|
199
|
+
for p in plugin_manager.context.get_all_stars()
|
|
200
|
+
if not p.reserved and p.name
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
# 获取可用的知识库列表
|
|
204
|
+
available_kbs = []
|
|
205
|
+
kb_manager = self.core_lifecycle.kb_manager
|
|
206
|
+
if kb_manager:
|
|
207
|
+
try:
|
|
208
|
+
kbs = await kb_manager.list_kbs()
|
|
209
|
+
available_kbs = [
|
|
210
|
+
{
|
|
211
|
+
"kb_id": kb.kb_id,
|
|
212
|
+
"kb_name": kb.kb_name,
|
|
213
|
+
"emoji": kb.emoji,
|
|
214
|
+
}
|
|
215
|
+
for kb in kbs
|
|
216
|
+
]
|
|
217
|
+
except Exception as e:
|
|
218
|
+
logger.warning(f"获取知识库列表失败: {e!s}")
|
|
219
|
+
|
|
188
220
|
return (
|
|
189
221
|
Response()
|
|
190
222
|
.ok(
|
|
@@ -197,6 +229,8 @@ class SessionManagementRoute(Route):
|
|
|
197
229
|
"available_chat_providers": available_chat_providers,
|
|
198
230
|
"available_stt_providers": available_stt_providers,
|
|
199
231
|
"available_tts_providers": available_tts_providers,
|
|
232
|
+
"available_plugins": available_plugins,
|
|
233
|
+
"available_kbs": available_kbs,
|
|
200
234
|
"available_rule_keys": AVAILABLE_SESSION_RULE_KEYS,
|
|
201
235
|
}
|
|
202
236
|
)
|
|
@@ -229,6 +263,11 @@ class SessionManagementRoute(Route):
|
|
|
229
263
|
if rule_key not in AVAILABLE_SESSION_RULE_KEYS:
|
|
230
264
|
return Response().error(f"不支持的规则键: {rule_key}").__dict__
|
|
231
265
|
|
|
266
|
+
if rule_key == "session_plugin_config":
|
|
267
|
+
rule_value = {
|
|
268
|
+
umo: rule_value,
|
|
269
|
+
}
|
|
270
|
+
|
|
232
271
|
# 使用 shared preferences 更新规则
|
|
233
272
|
await sp.session_put(umo, rule_key, rule_value)
|
|
234
273
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
## What's Changed
|
|
2
|
+
|
|
3
|
+
### 修复了自定义规则页面无法设置插件和知识库的规则的问题
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
重构:
|
|
8
|
+
- 将 Dify、Coze、阿里云百炼应用等 LLMOps 提供商迁移到 Agent 执行器层,理清和本地 Agent 执行器的边界。详见:[Agent 执行器](https://docs.astrbot.app/use/agent-runner.html)
|
|
9
|
+
- 将「会话管理」功能重构为「自定义规则」功能,理清和多配置文件功能的边界。详见:[自定义规则](https://docs.astrbot.app/use/custom-rules.html)
|
|
10
|
+
|
|
11
|
+
优化:
|
|
12
|
+
- Dify、阿里云百炼应用支持流式输出
|
|
13
|
+
- 防止分段回复正则表达式解析错误导致消息不发送
|
|
14
|
+
- 群聊上下文感知记录 At 信息
|
|
15
|
+
- 优化模型提供商页面的测试提供商功能
|
|
16
|
+
|
|
17
|
+
新增:
|
|
18
|
+
- 支持在配置文件页面快速测试对话
|
|
19
|
+
- 为配置文件配置项内容添加国际化支持
|
|
20
|
+
|
|
21
|
+
修复:
|
|
22
|
+
- 在更新 MCP Server 配置后,MCP 无法正常重启的问题
|
{astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/en-US/features/session-management.json
RENAMED
|
@@ -73,6 +73,17 @@
|
|
|
73
73
|
"title": "Persona Configuration",
|
|
74
74
|
"selectPersona": "Select Persona",
|
|
75
75
|
"hint": "Persona settings affect the conversation style and behavior of the LLM"
|
|
76
|
+
},
|
|
77
|
+
"pluginConfig": {
|
|
78
|
+
"title": "Plugin Configuration",
|
|
79
|
+
"disabledPlugins": "Disabled Plugins",
|
|
80
|
+
"hint": "Select plugins to disable for this session. Unselected plugins will remain enabled."
|
|
81
|
+
},
|
|
82
|
+
"kbConfig": {
|
|
83
|
+
"title": "Knowledge Base Configuration",
|
|
84
|
+
"selectKbs": "Select Knowledge Bases",
|
|
85
|
+
"topK": "Top K Results",
|
|
86
|
+
"enableRerank": "Enable Reranking"
|
|
76
87
|
}
|
|
77
88
|
},
|
|
78
89
|
"deleteConfirm": {
|
{astrbot-4.7.0 → astrbot-4.7.1}/dashboard/src/i18n/locales/zh-CN/features/session-management.json
RENAMED
|
@@ -73,6 +73,17 @@
|
|
|
73
73
|
"title": "人格配置",
|
|
74
74
|
"selectPersona": "选择人格",
|
|
75
75
|
"hint": "应用人格配置后,将会强制该来源的所有对话使用该人格。"
|
|
76
|
+
},
|
|
77
|
+
"pluginConfig": {
|
|
78
|
+
"title": "插件配置",
|
|
79
|
+
"disabledPlugins": "禁用的插件",
|
|
80
|
+
"hint": "选择要在此会话中禁用的插件。未选择的插件将保持启用状态。"
|
|
81
|
+
},
|
|
82
|
+
"kbConfig": {
|
|
83
|
+
"title": "知识库配置",
|
|
84
|
+
"selectKbs": "选择知识库",
|
|
85
|
+
"topK": "返回结果数量 (Top K)",
|
|
86
|
+
"enableRerank": "启用重排序"
|
|
76
87
|
}
|
|
77
88
|
},
|
|
78
89
|
"deleteConfirm": {
|