AstrBot 4.11.2__tar.gz → 4.11.4__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.11.4/EULA.md +245 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/PKG-INFO +2 -4
- {astrbot-4.11.2 → astrbot-4.11.4}/README.md +1 -3
- {astrbot-4.11.2 → astrbot-4.11.4}/README_en.md +0 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/README_fr.md +0 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/README_ja.md +1 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/README_ru.md +0 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/README_zh-TW.md +0 -2
- astrbot-4.11.4/astrbot/cli/__init__.py +1 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/tool_loop_agent_runner.py +3 -3
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/config/default.py +40 -26
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/kb_mgr.py +22 -15
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/log.py +14 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +142 -3
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/utils.py +12 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/manager.py +27 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/message_session.py +1 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/webchat/webchat_adapter.py +7 -4
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/anthropic_source.py +29 -15
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/metrics.py +2 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/chat.py +5 -1
- astrbot-4.11.4/changelogs/v4.11.3.md +19 -0
- astrbot-4.11.4/changelogs/v4.11.4.md +3 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/Chat.vue +18 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/ChatInput.vue +66 -7
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/MessageList.vue +167 -6
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/components/ToolTable.vue +1 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/platform/AddNewPlatform.vue +24 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ListConfigItem.vue +22 -4
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/PluginSetSelector.vue +5 -1
- astrbot-4.11.4/dashboard/src/components/shared/ReadmeDialog.vue +602 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useMessages.ts +6 -4
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useProviderSources.ts +1 -23
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/common.json +1 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/chat.json +2 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/config-metadata.json +21 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/extension.json +1 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/platform.json +3 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/common.json +1 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/chat.json +2 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +21 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/extension.json +1 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/platform.json +3 -2
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/utils/providerUtils.js +0 -1
- {astrbot-4.11.2 → astrbot-4.11.4}/pyproject.toml +1 -1
- astrbot-4.11.2/astrbot/cli/__init__.py +0 -1
- astrbot-4.11.2/dashboard/src/assets/images/provider_logos/modelstack.svg +0 -1
- astrbot-4.11.2/dashboard/src/components/shared/ReadmeDialog.vue +0 -390
- {astrbot-4.11.2 → astrbot-4.11.4}/.dockerignore +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/FUNDING.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/auto_assign.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/copilot-instructions.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/dependabot.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/smoke_test.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.github/workflows/stale.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.gitignore +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.pre-commit-config.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/.python-version +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/CONTRIBUTING.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/Dockerfile +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/LICENSE +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/all.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/message_components.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/astrbot/long_term_memory.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/astrbot/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/astrbot/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/astrbot/process_llm_request.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/admin.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/alter_cmd.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/conversation.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/help.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/llm.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/persona.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/plugin.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/provider.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/setunset.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/sid.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/t2i.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/tool.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/tts.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/builtin_commands/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/python_interpreter/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/python_interpreter/requirements.txt +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/python_interpreter/shared/api.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/reminder/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/reminder/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/session_controller/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/session_controller/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/web_searcher/engines/bing.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/web_searcher/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/builtin_stars/web_searcher/metadata.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/context/compressor.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/context/config.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/context/manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/context/token_counter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/context/truncator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/message.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/astr_agent_hooks.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/astr_agent_run_util.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/astr_agent_tool_exec.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/backup/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/backup/constants.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/backup/exporter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/backup/importer.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/config/astrbot_config.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/migra_token_usage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/po.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/chunking/recursive.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/kb_helper.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/parsers/util.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/message/components.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/result_decorate/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/waking_check/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/lark/lark_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/lark/server.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/satori/satori_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/slack/slack_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/entities.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/provider.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/gemini_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/minimax_tts_api_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/openai_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/xai_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/xinference_stt_provider.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/README.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/command_management.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/config.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/context.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/star.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/star_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/updator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/astrbot_path.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/file_extract.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/llm_metadata.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/pip_installer.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/plugin_kv_store.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/utils/webhook_utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/__init__.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/backup.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/command.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/config.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/knowledge_base.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/log.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/platform.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/server.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.0-alpha.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.0-alpha.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.10.6.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.11.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.11.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.11.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.7.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.7.3.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.7.4.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.8.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.9.0.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.9.1.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/changelogs/v4.9.2.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/compose.yml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/.gitignore +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/LICENSE +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/README.md +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/env.d.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/index.html +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/public/_redirects +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/App.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/loading-seio.webp +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/onebot.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/assets/images/xmas-hat.png +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/ConversationSidebar.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/ProviderConfigDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/ProviderModelMenu.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/chat/StandaloneChat.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/McpServersSection.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/components/CommandFilters.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/components/CommandTable.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/components/DetailsDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/components/RenameDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/composables/useCommandActions.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/composables/useCommandFilters.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/composables/useComponentData.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/index.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/extension/componentPanel/types.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/provider/ProviderModelsPanel.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/provider/ProviderSourcesPanel.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/AstrBotConfig.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/AstrBotConfigV4.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/BackupDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ChangelogDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ConfigItemRenderer.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ObjectEditor.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/StyledMenu.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/TemplateListEditor.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useMediaHandling.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useRecording.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/config.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/command.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/provider.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/settings.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/command.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/provider.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/main.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/stores/common.js +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/stores/routerLoading.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/PlatformPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/Settings.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/tsconfig.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/dashboard/vite.config.ts +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot/00-namespace.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot/01-pvc.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot/02-deployment.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot/03-service-nodeport.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot_with_napcat/00-namespace.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot_with_napcat/01-pvc.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot_with_napcat/02-deployment.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot_with_napcat/03-service-nodeport.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/requirements.txt +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/samples/stt_health_check.wav +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/agent/test_context_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/agent/test_truncator.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_backup.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_dashboard.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_kb_import.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_main.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_plugin_manager.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_security_fixes.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/tests/test_tool_loop_agent_runner.py +0 -0
- {astrbot-4.11.2 → astrbot-4.11.4}/typings/faiss/__init__.pyi +0 -0
astrbot-4.11.4/EULA.md
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
# 最终用户许可协议(EULA)
|
|
2
|
+
|
|
3
|
+
> 我们热爱开源软件,并始终致力于为所有用户提供健康、安全、可靠的使用体验。 ❤️
|
|
4
|
+
|
|
5
|
+
For Enlish edition, please refer to the section below the Chinese version.
|
|
6
|
+
|
|
7
|
+
**最后更新:** 2026-01-12
|
|
8
|
+
|
|
9
|
+
感谢您使用 **AstrBot**。
|
|
10
|
+
在使用本项目之前,请仔细阅读以下声明内容。
|
|
11
|
+
|
|
12
|
+
**您一旦安装、运行或使用本项目,即表示您已阅读、理解并同意本声明中的全部内容。**
|
|
13
|
+
|
|
14
|
+
## 1. 项目性质
|
|
15
|
+
|
|
16
|
+
AstrBot 是一个遵循 **GNU Affero General Public License v3(AGPLv3)** 协议发布的**免费开源软件项目**。
|
|
17
|
+
|
|
18
|
+
* AstrBot 项目不构成任何形式的商业服务;
|
|
19
|
+
* AstrBot 团队不通过本项目提供任何收费服务。
|
|
20
|
+
* AstrBot 的代码实现未对任何第三方系统进行逆向工程、破解、反编译或绕过安全机制等行为。AstrBot 仅使用并支持各即时通讯(IM)平台官方公开提供的机器人接入接口、开放平台能力或相关通信协议进行集成与通信。
|
|
21
|
+
|
|
22
|
+
## 2. 无担保声明
|
|
23
|
+
|
|
24
|
+
AstrBot 按“**现状(as is)**”提供,不附带任何形式的明示或暗示担保。
|
|
25
|
+
|
|
26
|
+
AstrBot 团队不对以下内容作出任何保证:
|
|
27
|
+
|
|
28
|
+
* 系统本身的安全性、可靠性或稳定性;
|
|
29
|
+
* 任何第三方插件的安全性、正确性或可信度;
|
|
30
|
+
* 任何第三方 AI 模型或外部服务 API 的可用性、质量、准确性或安全性;
|
|
31
|
+
* 本软件对任何特定用途的适用性。
|
|
32
|
+
|
|
33
|
+
**您使用本软件所产生的一切风险均由您自行承担。**
|
|
34
|
+
|
|
35
|
+
## 3. 第三方插件与服务
|
|
36
|
+
|
|
37
|
+
* AstrBot 支持第三方插件及外部 AI 服务接入;
|
|
38
|
+
* AstrBot 团队**不对任何第三方插件、扩展或服务进行审计、控制、背书或担保**;
|
|
39
|
+
* 因使用第三方插件或服务所产生的任何风险、损失、数据泄露或法律后果,均由用户自行承担。
|
|
40
|
+
* 第三方插件指代的是非 AstrBot 自带的插件,AstrBot 自带的插件指代的是插件实现代码已经包含在 AstrBotDevs/AstrBot 代码库中的插件。插件市场中的插件都是第三方插件。
|
|
41
|
+
|
|
42
|
+
## 4. 使用与内容限制
|
|
43
|
+
|
|
44
|
+
您同意不会将 AstrBot 用于以下行为:
|
|
45
|
+
|
|
46
|
+
* 输入、生成、传播或处理任何违法、极端、暴力、色情、仇恨、辱骂或其他有害内容;
|
|
47
|
+
* 从事违反您所在国家或地区法律法规,或任何适用国际法律的行为;
|
|
48
|
+
* 试图绕过、关闭、削弱或破坏本系统内置的安全机制或内容限制。
|
|
49
|
+
* 任何侵犯他人合法权益、损害他人和自己身心健康、涉及个人隐私、个人信息等敏感内容的内容。
|
|
50
|
+
|
|
51
|
+
## 5. 项目用途说明
|
|
52
|
+
|
|
53
|
+
AstrBot 是一个**工具型对话与 Agent 系统**,在**安全、健康、友善**的前提下提供有限的人性化交互能力。
|
|
54
|
+
|
|
55
|
+
项目的主要目标是:
|
|
56
|
+
|
|
57
|
+
* 提供 Agent 能力与自动化辅助;
|
|
58
|
+
* 帮助用户提升工作、学习和信息处理效率;
|
|
59
|
+
* 在合理范围内提供友好的人机交互体验。
|
|
60
|
+
* 辅助用户成长,提供有益于用户身心健康的内容。
|
|
61
|
+
|
|
62
|
+
## 6. 安全措施说明
|
|
63
|
+
|
|
64
|
+
AstrBot 团队**已尽合理努力在技术和策略层面设置安全与内容约束机制**,以引导系统输出健康、友善、安全的内容。
|
|
65
|
+
|
|
66
|
+
但请理解:
|
|
67
|
+
|
|
68
|
+
* 世界上任何的系统均无法保证完全无误、绝对安全或无法被滥用;
|
|
69
|
+
* 用户仍有责任自行合理配置、监督并正确使用本系统。
|
|
70
|
+
|
|
71
|
+
如果您要关闭 AstrBot 默认启用的“健康模式”,请在 cmd_config.json 中将 `provider_settings.llm_safety_mode` 设置为 `False`。但请注意,关闭健康模式不是推荐的使用方式,可能导致系统输出不安全或不适当的内容。关闭该功能所产生的任何风险与后果,均由用户自行承担,AstrBot 团队不对此承担任何责任。
|
|
72
|
+
|
|
73
|
+
## 7. 心理健康提示
|
|
74
|
+
|
|
75
|
+
如果您在使用本项目过程中因系统输出内容而感到心理不适、情绪困扰,
|
|
76
|
+
或您本身正处于心理压力较大、情绪不稳定、焦虑、抑郁等状态并因此使用本项目,
|
|
77
|
+
请优先考虑寻求来自专业人士的帮助,例如心理咨询师、心理医生或当地心理援助机构。
|
|
78
|
+
|
|
79
|
+
如遇紧急情况(例如存在自伤或他伤风险),请立即联系当地的紧急救助电话或专业机构。
|
|
80
|
+
|
|
81
|
+
## 8. 统计信息与隐私说明
|
|
82
|
+
|
|
83
|
+
AstrBot 可能会收集有限的匿名统计信息,用于了解系统使用情况、发现问题以及持续改进项目。
|
|
84
|
+
|
|
85
|
+
所收集的统计信息仅包括与系统运行和功能使用相关的基础技术指标,例如功能使用频率、错误信息等。
|
|
86
|
+
|
|
87
|
+
AstrBot **不会收集、上传或存储您的对话内容、消息正文、输入文本,或任何能够识别您个人身份的敏感信息**。
|
|
88
|
+
|
|
89
|
+
您可以手动关闭此项功能,通过在系统环境变量中设置 `ASTRBOT_DISABLE_METRICS=1` 来禁用匿名统计信息收集。
|
|
90
|
+
|
|
91
|
+
## 9. 责任限制
|
|
92
|
+
|
|
93
|
+
在法律允许的最大范围内,AstrBot 团队不对因以下原因导致的任何直接或间接损失承担责任,包括但不限于:
|
|
94
|
+
|
|
95
|
+
* 使用或无法使用本软件;
|
|
96
|
+
* 使用第三方插件或服务;
|
|
97
|
+
* 系统生成的内容或输出;
|
|
98
|
+
* 数据丢失、服务中断或安全事件。
|
|
99
|
+
|
|
100
|
+
## 10. 条款的接受
|
|
101
|
+
|
|
102
|
+
您一旦安装、运行、修改或使用 AstrBot,即确认:
|
|
103
|
+
|
|
104
|
+
* 您已阅读并理解本声明内容;
|
|
105
|
+
* 您同意并接受上述所有条款;
|
|
106
|
+
* 您对自身使用行为承担全部责任。
|
|
107
|
+
|
|
108
|
+
如您不同意本声明的任何内容,请勿使用本项目。
|
|
109
|
+
|
|
110
|
+
## 11. 许可与版权
|
|
111
|
+
|
|
112
|
+
AstrBot 的源代码、文档及相关内容受版权法及相关法律保护。
|
|
113
|
+
|
|
114
|
+
在遵守本声明及 AGPLv3 协议的前提下,AstrBot 授予您一项非独占、不可转让、不可再许可的许可,用于下载、安装、运行、修改和分发本软件。
|
|
115
|
+
|
|
116
|
+
除非法律另有规定或本声明另有明确说明,AstrBot 团队保留本项目的所有未明确授予的权利。
|
|
117
|
+
|
|
118
|
+
## 12. 适用法律
|
|
119
|
+
|
|
120
|
+
本声明的解释与适用应遵循您所在地或项目发布地适用的法律法规。
|
|
121
|
+
|
|
122
|
+
如本声明的任何条款被认定为无效或不可执行,其余条款仍然有效。
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
# EULA
|
|
127
|
+
|
|
128
|
+
> We love open-source software and are always committed to providing all users with a healthy, safe, and reliable experience. ❤️
|
|
129
|
+
|
|
130
|
+
**Last updated:** January 12, 2026
|
|
131
|
+
|
|
132
|
+
Thank you for using **AstrBot**.
|
|
133
|
+
Please read the following notice carefully before using this project.
|
|
134
|
+
|
|
135
|
+
**By installing, running, or using this project, you acknowledge that you have read, understood, and agreed to all the terms stated below.**
|
|
136
|
+
|
|
137
|
+
## 1. Nature of the Project
|
|
138
|
+
|
|
139
|
+
AstrBot is a **free and open-source software project** released under the **GNU Affero General Public License v3 (AGPLv3)**.
|
|
140
|
+
|
|
141
|
+
* AstrBot does not constitute any form of commercial service;
|
|
142
|
+
* The AstrBot Team does not provide any paid services through this project;
|
|
143
|
+
* AstrBot’s implementation does not involve reverse engineering, cracking, decompilation, or circumvention of security mechanisms of any third-party systems. AstrBot only uses and supports officially published bot integration interfaces, open platform capabilities, or related communication protocols provided by instant messaging (IM) platforms for integration and communication.
|
|
144
|
+
|
|
145
|
+
## 2. No Warranty
|
|
146
|
+
|
|
147
|
+
AstrBot is provided **“as is”**, without any express or implied warranties.
|
|
148
|
+
|
|
149
|
+
The AstrBot Team makes no guarantees regarding:
|
|
150
|
+
|
|
151
|
+
* The security, reliability, or stability of the system;
|
|
152
|
+
* The security, correctness, or trustworthiness of any third-party plugins;
|
|
153
|
+
* The availability, quality, accuracy, or safety of any third-party AI model APIs or external services;
|
|
154
|
+
* The fitness of the software for any particular purpose.
|
|
155
|
+
|
|
156
|
+
**All risks arising from the use of this software are borne solely by the user.**
|
|
157
|
+
|
|
158
|
+
## 3. Third-Party Plugins and Services
|
|
159
|
+
|
|
160
|
+
* AstrBot supports third-party plugins and external AI services;
|
|
161
|
+
* The AstrBot Team does **not audit, control, endorse, or guarantee** any third-party plugins, extensions, or services;
|
|
162
|
+
* Any risks, losses, data leaks, or legal consequences arising from the use of third-party plugins or services are solely the responsibility of the user;
|
|
163
|
+
* “Third-party plugins” refer to plugins that are not built into AstrBot. Built-in plugins are those whose implementation code is included in the AstrBotDevs/AstrBot repository. All plugins available in the plugin marketplace are third-party plugins.
|
|
164
|
+
|
|
165
|
+
## 4. Usage and Content Restrictions
|
|
166
|
+
|
|
167
|
+
You agree not to use AstrBot for any of the following activities:
|
|
168
|
+
|
|
169
|
+
* Inputting, generating, distributing, or processing any illegal, extremist, violent, pornographic, hateful, abusive, or otherwise harmful content;
|
|
170
|
+
* Engaging in activities that violate the laws or regulations of your country or region, or any applicable international laws;
|
|
171
|
+
* Attempting to bypass, disable, weaken, or undermine the built-in safety mechanisms or content restrictions of the system;
|
|
172
|
+
* Any activities that infringe upon the legitimate rights and interests of others, harm the physical or mental well-being of yourself or others, or involve personal privacy or sensitive personal information.
|
|
173
|
+
|
|
174
|
+
## 5. Intended Use
|
|
175
|
+
|
|
176
|
+
AstrBot is a **tool-oriented conversational and agent system** that provides limited human-like interaction capabilities under the principles of **safety, health, and friendliness**.
|
|
177
|
+
|
|
178
|
+
The primary goals of the project are to:
|
|
179
|
+
|
|
180
|
+
* Provide agent capabilities and automation assistance;
|
|
181
|
+
* Help users improve efficiency in work, study, and information processing;
|
|
182
|
+
* Offer a friendly human–computer interaction experience within reasonable boundaries;
|
|
183
|
+
* Support user growth and provide content beneficial to users’ physical and mental well-being.
|
|
184
|
+
|
|
185
|
+
## 6. Safety Measures
|
|
186
|
+
|
|
187
|
+
The AstrBot Team has made **reasonable efforts** at both technical and policy levels to implement safety and content restriction mechanisms, guiding the system to produce healthy, friendly, and safe outputs.
|
|
188
|
+
|
|
189
|
+
However, please understand that:
|
|
190
|
+
|
|
191
|
+
* No system in the world can be guaranteed to be completely error-free, absolutely secure, or immune to misuse;
|
|
192
|
+
* Users remain responsible for properly configuring, supervising, and using the system.
|
|
193
|
+
|
|
194
|
+
If you wish to disable AstrBot’s default “Safety Mode,” please set `provider_settings.llm_safety_mode` to `False` in `cmd_config.json`. However, please note that disabling Safety Mode is not recommended and may lead to unsafe or inappropriate outputs. Any risks or consequences arising from disabling this feature are solely borne by the user, and the AstrBot Team assumes no responsibility.
|
|
195
|
+
|
|
196
|
+
## 7. Mental Health Notice
|
|
197
|
+
|
|
198
|
+
If you experience psychological discomfort or emotional distress due to system outputs during use,
|
|
199
|
+
or if you are experiencing significant psychological stress, emotional instability, anxiety, or depression and are using this project for such reasons,
|
|
200
|
+
please prioritize seeking help from qualified professionals, such as psychologists, psychiatrists, or local mental health support services.
|
|
201
|
+
|
|
202
|
+
In case of emergency (for example, if there is a risk of self-harm or harm to others), please immediately contact your local emergency number or professional crisis support services.
|
|
203
|
+
|
|
204
|
+
## 8. Metrics and Privacy
|
|
205
|
+
|
|
206
|
+
AstrBot may collect a limited amount of anonymous usage statistics to understand system usage, identify issues, and continuously improve the project.
|
|
207
|
+
|
|
208
|
+
Collected metrics are limited to basic technical indicators related to system operation and feature usage, such as feature usage frequency and error information.
|
|
209
|
+
|
|
210
|
+
AstrBot **does not collect, upload, or store your conversation content, message bodies, input text, or any personally identifiable or sensitive information**.
|
|
211
|
+
|
|
212
|
+
You may manually disable this feature by setting the environment variable `ASTRBOT_DISABLE_METRICS=1` to turn off anonymous metrics collection.
|
|
213
|
+
|
|
214
|
+
## 9. Limitation of Liability
|
|
215
|
+
|
|
216
|
+
To the maximum extent permitted by law, the AstrBot Team shall not be liable for any direct or indirect losses arising from, including but not limited to:
|
|
217
|
+
|
|
218
|
+
* The use or inability to use this software;
|
|
219
|
+
* The use of third-party plugins or services;
|
|
220
|
+
* Generated content or system outputs;
|
|
221
|
+
* Data loss, service interruptions, or security incidents.
|
|
222
|
+
|
|
223
|
+
## 10. Acceptance of Terms
|
|
224
|
+
|
|
225
|
+
By installing, running, modifying, or using AstrBot, you confirm that:
|
|
226
|
+
|
|
227
|
+
* You have read and understood this Notice;
|
|
228
|
+
* You agree to and accept all the terms stated above;
|
|
229
|
+
* You assume full responsibility for your use of the software.
|
|
230
|
+
|
|
231
|
+
If you do not agree with any part of this Notice, please do not use this project.
|
|
232
|
+
|
|
233
|
+
## 11. License and Copyright
|
|
234
|
+
|
|
235
|
+
The source code, documentation, and related materials of AstrBot are protected by copyright laws and applicable regulations.
|
|
236
|
+
|
|
237
|
+
Subject to compliance with this Notice and the AGPLv3 license, AstrBot grants you a non-exclusive, non-transferable, non-sublicensable license to download, install, run, modify, and distribute this software.
|
|
238
|
+
|
|
239
|
+
Unless otherwise required by law or expressly stated in this Notice, the AstrBot Team reserves all rights not expressly granted.
|
|
240
|
+
|
|
241
|
+
## 12. Governing Law
|
|
242
|
+
|
|
243
|
+
The interpretation and application of this Notice shall be governed by the laws and regulations applicable in your jurisdiction or the jurisdiction where the project is released.
|
|
244
|
+
|
|
245
|
+
If any provision of this Notice is held to be invalid or unenforceable, the remaining provisions shall remain in full force and effect.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AstrBot
|
|
3
|
-
Version: 4.11.
|
|
3
|
+
Version: 4.11.4
|
|
4
4
|
Summary: Easy-to-use multi-platform LLM chatbot and development framework
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Keywords: Astrbot,Astrbot Module,Astrbot Plugin
|
|
@@ -97,7 +97,7 @@ Description-Content-Type: text/markdown
|
|
|
97
97
|
|
|
98
98
|
AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可接入主流即时通讯软件,为个人、开发者和团队打造可靠、可扩展的对话式智能基础设施。无论是个人 AI 伙伴、智能客服、自动化助手,还是企业知识库,AstrBot 都能在你的即时通讯软件平台的工作流中快速构建生产可用的 AI 应用。
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+

|
|
101
101
|
|
|
102
102
|
## 主要功能
|
|
103
103
|
|
|
@@ -196,8 +196,6 @@ uv run main.py
|
|
|
196
196
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
197
197
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
198
198
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
199
|
-
- [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
200
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
201
199
|
|
|
202
200
|
## 支持的模型服务
|
|
203
201
|
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
AstrBot 是一个开源的一站式 Agent 聊天机器人平台,可接入主流即时通讯软件,为个人、开发者和团队打造可靠、可扩展的对话式智能基础设施。无论是个人 AI 伙伴、智能客服、自动化助手,还是企业知识库,AstrBot 都能在你的即时通讯软件平台的工作流中快速构建生产可用的 AI 应用。
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+

|
|
40
40
|
|
|
41
41
|
## 主要功能
|
|
42
42
|
|
|
@@ -135,8 +135,6 @@ uv run main.py
|
|
|
135
135
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
136
136
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
137
137
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
138
|
-
- [Bilibili 私信](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
139
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
140
138
|
|
|
141
139
|
## 支持的模型服务
|
|
142
140
|
|
|
@@ -137,8 +137,6 @@ Or refer to the official documentation: [Deploy AstrBot from Source](https://ast
|
|
|
137
137
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
138
138
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
139
139
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
140
|
-
- [Bilibili Direct Messages](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
141
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
142
140
|
|
|
143
141
|
## Supported Model Services
|
|
144
142
|
|
|
@@ -137,8 +137,6 @@ Ou consultez la documentation officielle : [Déployer AstrBot depuis les sources
|
|
|
137
137
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
138
138
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
139
139
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
140
|
-
- [Messages directs Bilibili](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
141
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
142
140
|
|
|
143
141
|
## Services de modèles pris en charge
|
|
144
142
|
|
|
@@ -137,8 +137,7 @@ uv run main.py
|
|
|
137
137
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
138
138
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
139
139
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
140
|
-
|
|
141
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
140
|
+
|
|
142
141
|
|
|
143
142
|
## サポートされているモデルサービス
|
|
144
143
|
|
|
@@ -137,8 +137,6 @@ uv run main.py
|
|
|
137
137
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
138
138
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
139
139
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
140
|
-
- [Личные сообщения Bilibili](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
141
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
142
140
|
|
|
143
141
|
## Поддерживаемые сервисы моделей
|
|
144
142
|
|
|
@@ -137,8 +137,6 @@ uv run main.py
|
|
|
137
137
|
- [Matrix](https://github.com/stevessr/astrbot_plugin_matrix_adapter)
|
|
138
138
|
- [KOOK](https://github.com/wuyan1003/astrbot_plugin_kook_adapter)
|
|
139
139
|
- [VoceChat](https://github.com/HikariFroya/astrbot_plugin_vocechat)
|
|
140
|
-
- [Bilibili 私訊](https://github.com/Hina-Chat/astrbot_plugin_bilibili_adapter)
|
|
141
|
-
- [wxauto](https://github.com/luosheng520qaq/wxauto-repost-onebotv11)
|
|
142
140
|
|
|
143
141
|
## 支援的模型服務
|
|
144
142
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "4.11.4"
|
|
@@ -469,10 +469,10 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
469
469
|
|
|
470
470
|
elif resp is None:
|
|
471
471
|
# Tool 直接请求发送消息给用户
|
|
472
|
-
# 这里我们将直接结束 Agent Loop
|
|
473
|
-
# 发送消息逻辑在 ToolExecutor
|
|
472
|
+
# 这里我们将直接结束 Agent Loop
|
|
473
|
+
# 发送消息逻辑在 ToolExecutor 中处理了
|
|
474
474
|
logger.warning(
|
|
475
|
-
f"{func_tool_name}
|
|
475
|
+
f"{func_tool_name} 没有返回值,或者已将结果直接发送给用户。"
|
|
476
476
|
)
|
|
477
477
|
self._transition_state(AgentState.DONE)
|
|
478
478
|
self.stats.end_time = time.time()
|
|
@@ -5,7 +5,7 @@ from typing import Any, TypedDict
|
|
|
5
5
|
|
|
6
6
|
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
|
|
7
7
|
|
|
8
|
-
VERSION = "4.11.
|
|
8
|
+
VERSION = "4.11.4"
|
|
9
9
|
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
|
|
10
10
|
|
|
11
11
|
WEBHOOK_SUPPORTED_PLATFORMS = [
|
|
@@ -97,6 +97,7 @@ DEFAULT_CONFIG = {
|
|
|
97
97
|
"dequeue_context_length": 1,
|
|
98
98
|
"streaming_response": False,
|
|
99
99
|
"show_tool_use_status": False,
|
|
100
|
+
"sanitize_context_by_modalities": False,
|
|
100
101
|
"agent_runner_type": "local",
|
|
101
102
|
"dify_agent_runner_provider_id": "",
|
|
102
103
|
"coze_agent_runner_provider_id": "",
|
|
@@ -105,6 +106,8 @@ DEFAULT_CONFIG = {
|
|
|
105
106
|
"reachability_check": False,
|
|
106
107
|
"max_agent_step": 30,
|
|
107
108
|
"tool_call_timeout": 60,
|
|
109
|
+
"llm_safety_mode": True,
|
|
110
|
+
"safety_mode_strategy": "system_prompt", # TODO: llm judge
|
|
108
111
|
"file_extract": {
|
|
109
112
|
"enable": False,
|
|
110
113
|
"provider": "moonshotai",
|
|
@@ -986,17 +989,6 @@ CONFIG_METADATA_2 = {
|
|
|
986
989
|
"api_base": "http://127.0.0.1:1234/v1",
|
|
987
990
|
"custom_headers": {},
|
|
988
991
|
},
|
|
989
|
-
"ModelStack": {
|
|
990
|
-
"id": "modelstack",
|
|
991
|
-
"provider": "modelstack",
|
|
992
|
-
"type": "openai_chat_completion",
|
|
993
|
-
"provider_type": "chat_completion",
|
|
994
|
-
"enable": True,
|
|
995
|
-
"key": [],
|
|
996
|
-
"api_base": "https://modelstack.app/v1",
|
|
997
|
-
"timeout": 120,
|
|
998
|
-
"custom_headers": {},
|
|
999
|
-
},
|
|
1000
992
|
"Gemini_OpenAI_API": {
|
|
1001
993
|
"id": "google_gemini_openai",
|
|
1002
994
|
"provider": "google",
|
|
@@ -2618,6 +2610,34 @@ CONFIG_METADATA_3 = {
|
|
|
2618
2610
|
"provider_settings.agent_runner_type": "local",
|
|
2619
2611
|
},
|
|
2620
2612
|
},
|
|
2613
|
+
"provider_settings.streaming_response": {
|
|
2614
|
+
"description": "流式输出",
|
|
2615
|
+
"type": "bool",
|
|
2616
|
+
},
|
|
2617
|
+
"provider_settings.unsupported_streaming_strategy": {
|
|
2618
|
+
"description": "不支持流式回复的平台",
|
|
2619
|
+
"type": "string",
|
|
2620
|
+
"options": ["realtime_segmenting", "turn_off"],
|
|
2621
|
+
"hint": "选择在不支持流式回复的平台上的处理方式。实时分段回复会在系统接收流式响应检测到诸如标点符号等分段点时,立即发送当前已接收的内容",
|
|
2622
|
+
"labels": ["实时分段回复", "关闭流式回复"],
|
|
2623
|
+
"condition": {
|
|
2624
|
+
"provider_settings.streaming_response": True,
|
|
2625
|
+
},
|
|
2626
|
+
},
|
|
2627
|
+
"provider_settings.llm_safety_mode": {
|
|
2628
|
+
"description": "健康模式",
|
|
2629
|
+
"type": "bool",
|
|
2630
|
+
"hint": "引导模型输出健康、安全的内容,避免有害或敏感话题。",
|
|
2631
|
+
},
|
|
2632
|
+
"provider_settings.safety_mode_strategy": {
|
|
2633
|
+
"description": "健康模式策略",
|
|
2634
|
+
"type": "string",
|
|
2635
|
+
"options": ["system_prompt"],
|
|
2636
|
+
"hint": "选择健康模式的实现策略。",
|
|
2637
|
+
"condition": {
|
|
2638
|
+
"provider_settings.llm_safety_mode": True,
|
|
2639
|
+
},
|
|
2640
|
+
},
|
|
2621
2641
|
"provider_settings.identifier": {
|
|
2622
2642
|
"description": "用户识别",
|
|
2623
2643
|
"type": "bool",
|
|
@@ -2643,6 +2663,14 @@ CONFIG_METADATA_3 = {
|
|
|
2643
2663
|
"provider_settings.agent_runner_type": "local",
|
|
2644
2664
|
},
|
|
2645
2665
|
},
|
|
2666
|
+
"provider_settings.sanitize_context_by_modalities": {
|
|
2667
|
+
"description": "按模型能力清理历史上下文",
|
|
2668
|
+
"type": "bool",
|
|
2669
|
+
"hint": "开启后,在每次请求 LLM 前会按当前模型提供商中所选择的模型能力删除对话中不支持的图片/工具调用结构(会改变模型看到的历史)",
|
|
2670
|
+
"condition": {
|
|
2671
|
+
"provider_settings.agent_runner_type": "local",
|
|
2672
|
+
},
|
|
2673
|
+
},
|
|
2646
2674
|
"provider_settings.max_agent_step": {
|
|
2647
2675
|
"description": "工具调用轮数上限",
|
|
2648
2676
|
"type": "int",
|
|
@@ -2657,20 +2685,6 @@ CONFIG_METADATA_3 = {
|
|
|
2657
2685
|
"provider_settings.agent_runner_type": "local",
|
|
2658
2686
|
},
|
|
2659
2687
|
},
|
|
2660
|
-
"provider_settings.streaming_response": {
|
|
2661
|
-
"description": "流式输出",
|
|
2662
|
-
"type": "bool",
|
|
2663
|
-
},
|
|
2664
|
-
"provider_settings.unsupported_streaming_strategy": {
|
|
2665
|
-
"description": "不支持流式回复的平台",
|
|
2666
|
-
"type": "string",
|
|
2667
|
-
"options": ["realtime_segmenting", "turn_off"],
|
|
2668
|
-
"hint": "选择在不支持流式回复的平台上的处理方式。实时分段回复会在系统接收流式响应检测到诸如标点符号等分段点时,立即发送当前已接收的内容",
|
|
2669
|
-
"labels": ["实时分段回复", "关闭流式回复"],
|
|
2670
|
-
"condition": {
|
|
2671
|
-
"provider_settings.streaming_response": True,
|
|
2672
|
-
},
|
|
2673
|
-
},
|
|
2674
2688
|
"provider_settings.wake_prefix": {
|
|
2675
2689
|
"description": "LLM 聊天额外唤醒前缀 ",
|
|
2676
2690
|
"type": "string",
|
|
@@ -92,6 +92,8 @@ class KnowledgeBaseManager:
|
|
|
92
92
|
top_m_final: int | None = None,
|
|
93
93
|
) -> KBHelper:
|
|
94
94
|
"""创建新的知识库实例"""
|
|
95
|
+
if embedding_provider_id is None:
|
|
96
|
+
raise ValueError("创建知识库时必须提供embedding_provider_id")
|
|
95
97
|
kb = KnowledgeBase(
|
|
96
98
|
kb_name=kb_name,
|
|
97
99
|
description=description,
|
|
@@ -104,21 +106,26 @@ class KnowledgeBaseManager:
|
|
|
104
106
|
top_k_sparse=top_k_sparse if top_k_sparse is not None else 50,
|
|
105
107
|
top_m_final=top_m_final if top_m_final is not None else 5,
|
|
106
108
|
)
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
109
|
+
try:
|
|
110
|
+
async with self.kb_db.get_db() as session:
|
|
111
|
+
session.add(kb)
|
|
112
|
+
await session.flush()
|
|
113
|
+
|
|
114
|
+
kb_helper = KBHelper(
|
|
115
|
+
kb_db=self.kb_db,
|
|
116
|
+
kb=kb,
|
|
117
|
+
provider_manager=self.provider_manager,
|
|
118
|
+
kb_root_dir=FILES_PATH,
|
|
119
|
+
chunker=CHUNKER,
|
|
120
|
+
)
|
|
121
|
+
await kb_helper.initialize()
|
|
122
|
+
await session.commit()
|
|
123
|
+
self.kb_insts[kb.kb_id] = kb_helper
|
|
124
|
+
return kb_helper
|
|
125
|
+
except Exception as e:
|
|
126
|
+
if "kb_name" in str(e):
|
|
127
|
+
raise ValueError(f"知识库名称 '{kb_name}' 已存在")
|
|
128
|
+
raise
|
|
122
129
|
|
|
123
130
|
async def get_kb(self, kb_id: str) -> KBHelper | None:
|
|
124
131
|
"""获取知识库实例"""
|
|
@@ -30,6 +30,8 @@ from collections import deque
|
|
|
30
30
|
|
|
31
31
|
import colorlog
|
|
32
32
|
|
|
33
|
+
from astrbot.core.config.default import VERSION
|
|
34
|
+
|
|
33
35
|
# 日志缓存大小
|
|
34
36
|
CACHED_SIZE = 200
|
|
35
37
|
# 日志颜色配置
|
|
@@ -186,7 +188,7 @@ class LogManager:
|
|
|
186
188
|
|
|
187
189
|
# 创建彩色日志格式化器, 输出日志格式为: [时间] [插件标签] [日志级别] [文件名:行号]: 日志消息
|
|
188
190
|
console_formatter = colorlog.ColoredFormatter(
|
|
189
|
-
fmt="%(log_color)s [%(asctime)s] %(plugin_tag)s [%(short_levelname)-4s] [%(filename)s:%(lineno)d]: %(message)s %(reset)s",
|
|
191
|
+
fmt="%(log_color)s [%(asctime)s] %(plugin_tag)s [%(short_levelname)-4s]%(astrbot_version_tag)s [%(filename)s:%(lineno)d]: %(message)s %(reset)s",
|
|
190
192
|
datefmt="%H:%M:%S",
|
|
191
193
|
log_colors=log_color_config,
|
|
192
194
|
)
|
|
@@ -223,10 +225,21 @@ class LogManager:
|
|
|
223
225
|
record.short_levelname = get_short_level_name(record.levelname)
|
|
224
226
|
return True
|
|
225
227
|
|
|
228
|
+
class AstrBotVersionTagFilter(logging.Filter):
|
|
229
|
+
"""在 WARNING 及以上级别日志后追加当前 AstrBot 版本号。"""
|
|
230
|
+
|
|
231
|
+
def filter(self, record):
|
|
232
|
+
if record.levelno >= logging.WARNING:
|
|
233
|
+
record.astrbot_version_tag = f" [v{VERSION}]"
|
|
234
|
+
else:
|
|
235
|
+
record.astrbot_version_tag = ""
|
|
236
|
+
return True
|
|
237
|
+
|
|
226
238
|
console_handler.setFormatter(console_formatter) # 设置处理器的格式化器
|
|
227
239
|
logger.addFilter(PluginFilter()) # 添加插件过滤器
|
|
228
240
|
logger.addFilter(FileNameFilter()) # 添加文件名过滤器
|
|
229
241
|
logger.addFilter(LevelNameFilter()) # 添加级别名称过滤器
|
|
242
|
+
logger.addFilter(AstrBotVersionTagFilter()) # 追加版本号(WARNING 及以上)
|
|
230
243
|
logger.setLevel(logging.DEBUG) # 设置日志级别为DEBUG
|
|
231
244
|
logger.addHandler(console_handler) # 添加处理器到logger
|
|
232
245
|
|