AstrBot 4.10.2__tar.gz → 4.10.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.10.2 → astrbot-4.10.4}/.github/copilot-instructions.md +1 -2
- astrbot-4.10.4/.github/workflows/stale.yml +63 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.gitignore +2 -2
- {astrbot-4.10.2 → astrbot-4.10.4}/PKG-INFO +1 -1
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/astrbot/main.py +2 -10
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/astrbot/process_llm_request.py +19 -8
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/provider.py +6 -4
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/python_interpreter/main.py +130 -131
- astrbot-4.10.4/astrbot/cli/__init__.py +1 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/message.py +32 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/tool_loop_agent_runner.py +26 -8
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/astr_agent_hooks.py +6 -0
- astrbot-4.10.4/astrbot/core/backup/__init__.py +26 -0
- astrbot-4.10.4/astrbot/core/backup/constants.py +77 -0
- astrbot-4.10.4/astrbot/core/backup/exporter.py +477 -0
- astrbot-4.10.4/astrbot/core/backup/importer.py +761 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/config/astrbot_config.py +2 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/config/default.py +47 -6
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/chunking/recursive.py +10 -2
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/log.py +1 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +184 -174
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/result_decorate/stage.py +65 -57
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/waking_check/stage.py +31 -3
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +15 -29
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +1 -6
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/dingtalk/dingtalk_event.py +15 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/lark/lark_adapter.py +2 -10
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/misskey/misskey_adapter.py +0 -5
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/misskey/misskey_utils.py +0 -3
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +4 -9
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +4 -9
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/satori/satori_adapter.py +6 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/slack/slack_adapter.py +3 -6
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/webchat/webchat_adapter.py +0 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +3 -5
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/entities.py +41 -10
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/provider.py +3 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/anthropic_source.py +140 -30
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/fishaudio_tts_api_source.py +14 -6
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/gemini_source.py +112 -29
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/minimax_tts_api_source.py +4 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/openai_source.py +93 -56
- astrbot-4.10.4/astrbot/core/provider/sources/xai_source.py +29 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/xinference_stt_provider.py +24 -12
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/context.py +1 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/star_manager.py +52 -13
- astrbot-4.10.4/astrbot/core/utils/astrbot_path.py +73 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/pip_installer.py +20 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/__init__.py +2 -0
- astrbot-4.10.4/astrbot/dashboard/routes/backup.py +1093 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/config.py +45 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/log.py +44 -10
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/server.py +9 -1
- astrbot-4.10.4/changelogs/v4.10.3.md +18 -0
- astrbot-4.10.4/changelogs/v4.10.4.md +25 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/provider/ProviderModelsPanel.vue +14 -1
- astrbot-4.10.4/dashboard/src/components/shared/AstrBotConfig.vue +416 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/AstrBotConfigV4.vue +15 -119
- astrbot-4.10.4/dashboard/src/components/shared/BackupDialog.vue +995 -0
- astrbot-4.10.4/dashboard/src/components/shared/ConfigItemRenderer.vue +328 -0
- astrbot-4.10.4/dashboard/src/components/shared/ConsoleDisplayer.vue +306 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ListConfigItem.vue +10 -2
- astrbot-4.10.4/dashboard/src/components/shared/ObjectEditor.vue +518 -0
- astrbot-4.10.4/dashboard/src/components/shared/TemplateListEditor.vue +450 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useProviderSources.ts +13 -6
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/common.json +7 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/provider.json +2 -1
- astrbot-4.10.4/dashboard/src/i18n/locales/en-US/features/settings.json +113 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/common.json +8 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/provider.json +2 -1
- astrbot-4.10.4/dashboard/src/i18n/locales/zh-CN/features/settings.json +113 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue +6 -2
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/stores/common.js +23 -3
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/PlatformPage.vue +5 -1
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/Settings.vue +16 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/vite.config.ts +1 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/pyproject.toml +2 -2
- astrbot-4.10.4/tests/test_backup.py +770 -0
- astrbot-4.10.2/.github/workflows/stale.yml +0 -27
- astrbot-4.10.2/astrbot/cli/__init__.py +0 -1
- astrbot-4.10.2/astrbot/core/utils/astrbot_path.py +0 -39
- astrbot-4.10.2/dashboard/src/components/shared/AstrBotConfig.vue +0 -649
- astrbot-4.10.2/dashboard/src/components/shared/ConsoleDisplayer.vue +0 -233
- astrbot-4.10.2/dashboard/src/components/shared/ObjectEditor.vue +0 -282
- astrbot-4.10.2/dashboard/src/i18n/locales/en-US/features/settings.json +0 -33
- astrbot-4.10.2/dashboard/src/i18n/locales/zh-CN/features/settings.json +0 -33
- {astrbot-4.10.2 → astrbot-4.10.4}/.dockerignore +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/FUNDING.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/auto_assign.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/dependabot.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/auto_release.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/code-format.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/codeql.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/coverage_test.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/dashboard_ci.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/docker-image.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.github/workflows/smoke_test.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.pre-commit-config.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/.python-version +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/CODE_OF_CONDUCT.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/CONTRIBUTING.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/Dockerfile +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/LICENSE +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README_en.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README_fr.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README_ja.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README_ru.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/README_zh-TW.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/all.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/event/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/event/filter/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/message_components.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/platform/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/provider/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/star/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/api/util/__init__.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/astrbot/long_term_memory.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/astrbot/metadata.yaml +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/__init__.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/admin.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/alter_cmd.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/conversation.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/help.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/llm.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/persona.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/plugin.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/setunset.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/sid.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/t2i.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/tool.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/tts.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/commands/utils/rst_scene.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/main.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/builtin_commands/metadata.yaml +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/python_interpreter/metadata.yaml +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/python_interpreter/requirements.txt +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/python_interpreter/shared/api.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/reminder/main.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/reminder/metadata.yaml +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/session_controller/main.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/session_controller/metadata.yaml +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/web_searcher/engines/__init__.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/web_searcher/engines/bing.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/web_searcher/engines/sogo.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/web_searcher/main.py +0 -0
- {astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/web_searcher/metadata.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/__main__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/commands/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/commands/cmd_conf.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/commands/cmd_init.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/commands/cmd_plug.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/commands/cmd_run.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/utils/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/utils/basic.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/utils/plugin.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/cli/utils/version_comparator.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/agent.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/handoff.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/hooks.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/mcp_client.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/response.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/run_context.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/base.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/coze/coze_agent_runner.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/coze/coze_api_client.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/dify/dify_agent_runner.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/runners/dify/dify_api_client.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/tool.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/agent/tool_executor.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/astr_agent_context.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/astr_agent_run_util.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/astr_agent_tool_exec.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/astrbot_config_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/config/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/config/i18n_utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/conversation_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/core_lifecycle.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/helper.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/migra_3_to_4.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/migra_45_to_46.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/migra_webchat_session.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/shared_preferences_v3.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/migration/sqlite_v3.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/po.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/sqlite.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/base.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/faiss_impl/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/faiss_impl/document_storage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/db/vec_db/faiss_impl/vec_db.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/event_bus.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/exceptions.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/file_token_service.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/initial_loader.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/chunking/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/chunking/base.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/chunking/fixed_size.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/kb_db_sqlite.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/kb_helper.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/kb_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/models.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/base.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/markitdown_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/pdf_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/text_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/url_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/parsers/util.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/prompts.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/retrieval/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/retrieval/manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/retrieval/rank_fusion.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/knowledge_base/retrieval/sparse_retriever.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/message/components.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/message/message_event_result.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/persona_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/content_safety_check/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/content_safety_check/strategies/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/content_safety_check/strategies/keywords.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/content_safety_check/strategies/strategy.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/context.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/context_utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/preprocess_stage/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/method/agent_request.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/method/star_request.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/process_stage/utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/rate_limit_check/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/respond/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/scheduler.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/session_status_check/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/pipeline/whitelist_check/stage.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/astr_message_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/astrbot_message.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/message_session.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/message_type.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/platform.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/platform_metadata.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/register.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/discord/client.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/discord/components.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/discord/discord_platform_adapter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/discord/discord_platform_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/lark/lark_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/lark/server.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/misskey/misskey_api.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/misskey/misskey_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/satori/satori_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/slack/client.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/slack/slack_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/telegram/tg_adapter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/telegram/tg_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/webchat/webchat_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom/wecom_adapter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom/wecom_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom/wecom_kf.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom/wecom_kf_message.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/ierror.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/platform_message_history_mgr.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/entites.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/func_tool_manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/register.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/azure_tts_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/bailian_rerank_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/dashscope_tts.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/edge_tts_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/gemini_embedding_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/gemini_tts_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/groq_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/gsv_selfhosted_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/gsvi_tts_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/openai_embedding_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/openai_tts_api_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/sensevoice_selfhosted_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/vllm_rerank_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/volcengine_tts.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/whisper_api_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/whisper_selfhosted_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/xinference_rerank_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/provider/sources/zhipu_source.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/README.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/command_management.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/config.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/command.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/command_group.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/custom_filter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/event_message_type.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/permission.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/platform_adapter_type.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/filter/regex.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/register/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/register/star.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/register/star_handler.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/session_llm_manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/session_plugin_manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/star.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/star_handler.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/star_tools.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/star/updator.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/umop_config_router.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/updator.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/command_parser.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/file_extract.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/io.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/llm_metadata.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/log_pipe.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/metrics.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/migra_helper.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/path_util.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/plugin_kv_store.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/session_lock.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/session_waiter.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/shared_preferences.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/__init__.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/local_strategy.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/network_strategy.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/renderer.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/template/astrbot_powershell.html +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/template/base.html +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/t2i/template_manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/tencent_record_helper.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/version_comparator.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/utils/webhook_utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/core/zip_updator.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/auth.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/chat.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/command.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/conversation.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/file.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/knowledge_base.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/persona.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/platform.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/plugin.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/route.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/session_management.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/stat.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/static_file.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/t2i.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/tools.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/routes/update.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/astrbot/dashboard/utils.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.10.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.11.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.12.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.13.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.14.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.15.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.16.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.17.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.18.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.19.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.20.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.21.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.22.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.23.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.24.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.25.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.26.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.27.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.28.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.29.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.30.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.31.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.32.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.33.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.35.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.36.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.37.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.38.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.39.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.6.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.7.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.8.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.4.9.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.10.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.11.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.12.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.13.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.14.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.15.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.16.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.17.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.18.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.19.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.20.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.21.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.22.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.23.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.24.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.25.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.26.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.27.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.3.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.3.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.6.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.7.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.8.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v3.5.9.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.0.0-beta.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.0.0-beta.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.0.0-beta.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.0.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.6.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.1.7.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.10.0-alpha.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.10.0-alpha.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.10.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.10.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.10.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.2.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.2.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.3.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.3.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.3.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.3.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.3.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.5.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.6.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.7.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.5.8.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.6.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.6.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.7.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.7.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.7.3.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.7.4.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.8.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.9.0.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.9.1.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/changelogs/v4.9.2.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/compose.yml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/.gitignore +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/LICENSE +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/README.md +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/env.d.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/index.html +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/public/_redirects +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/public/favicon.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/App.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/astrbot_banner.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/astrbot_logo_mini.webp +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/icon-no-shadow.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/loading-seio.webp +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/dingtalk.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/discord.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/kook.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/lark.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/misskey.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/onebot.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/qq.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/satori.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/slack.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/telegram.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/vocechat.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/wechat.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/platform_logos/wecom.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/plugin_icon.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/provider_logos/modelstack.svg +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/assets/images/xmas-hat.png +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/ConfirmDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/Chat.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/ChatInput.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/ConfigSelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/ConversationSidebar.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/MessageList.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/ProviderConfigDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/ProviderModelMenu.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/chat/StandaloneChat.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/McpServersSection.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/components/CommandFilters.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/components/CommandTable.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/components/DetailsDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/components/RenameDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/components/ToolTable.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/composables/useCommandActions.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/composables/useCommandFilters.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/composables/useComponentData.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/index.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/extension/componentPanel/types.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/platform/AddNewPlatform.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/provider/AddNewProvider.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/provider/ProviderSourcesPanel.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ChangelogDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ExtensionCard.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ItemCard.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ItemCardGrid.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/KnowledgeBaseSelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/LanguageSwitcher.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/Logo.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/MigrationDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/PersonaForm.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/PersonaSelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/PluginSetSelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ProviderSelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ProxySelector.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/ReadmeDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/SidebarCustomizer.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/StyledMenu.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/T2ITemplateEditor.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/UninstallConfirmDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/components/shared/WaitingForRestart.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useConversations.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useMediaHandling.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useMessages.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useRecording.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/composables/useSessions.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/config.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/composables.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/loader.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/actions.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/header.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/navigation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/shared.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/core/status.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/about.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/alkaid/index.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/auth.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/chart.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/chat.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/command.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/config-metadata.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/config.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/console.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/conversation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/dashboard.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/extension.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/migration.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/persona.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/platform.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/session-management.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/features/tool-use.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/messages/errors.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/messages/success.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/en-US/messages/validation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/actions.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/header.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/navigation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/shared.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/core/status.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/about.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/auth.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/chart.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/chat.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/command.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/config.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/console.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/conversation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/dashboard.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/extension.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/migration.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/persona.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/platform.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/session-management.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/features/tool-use.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/messages/errors.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/messages/success.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/locales/zh-CN/messages/validation.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/tools/index.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/translations.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/types.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/i18n/validator.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/blank/BlankLayout.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/full/FullLayout.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/main.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/plugins/confirmPlugin.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/plugins/vuetify.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/router/AuthRoutes.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/router/ChatBoxRoutes.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/router/MainRoutes.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/router/index.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/_override.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/_variables.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VButtons.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VCard.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VField.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VInput.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VNavigationDrawer.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VScrollbar.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VShadow.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VTabs.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/components/_VTextField.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/layout/_container.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/layout/_sidebar.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/pages/_dashboards.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/scss/style.scss +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/stores/auth.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/stores/customizer.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/stores/routerLoading.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/stores/toast.js +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/theme/DarkTheme.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/theme/LightTheme.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/types/themeTypes/ThemeType.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/types/vue3-print-nb.d.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/types/vue_tabler_icon.d.ts +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/utils/platformUtils.js +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/utils/providerUtils.js +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/utils/sidebarCustomization.js +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/utils/toast.js +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/AboutPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/AlkaidPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ChatBoxPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ChatPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ConfigPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ConsolePage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ConversationPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ExtensionPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/PersonaPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/ProviderPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/SessionManagementPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/alkaid/KnowledgeBase.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/alkaid/LongTermMemory.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/alkaid/Other.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/authentication/auth/LoginPage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/authentication/authForms/AuthLogin.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/DefaultDashboard.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/MemoryUsage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/MessageStat.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/OnlineTime.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/PlatformStat.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/RunningTime.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/dashboards/default/components/TotalMessage.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/DocumentDetail.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/KBDetail.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/KBList.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/components/DocumentsTab.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/components/RetrievalTab.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/components/SettingsTab.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/src/views/knowledge-base/index.vue +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/tsconfig.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/dashboard/tsconfig.vite-config.json +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot/00-namespace.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot/01-pvc.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot/02-deployment.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot/03-service-nodeport.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot_with_napcat/00-namespace.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot_with_napcat/01-pvc.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot_with_napcat/02-deployment.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot_with_napcat/03-service-nodeport.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/main.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/requirements.txt +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/samples/stt_health_check.wav +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_dashboard.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_kb_import.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_main.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_plugin_manager.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_security_fixes.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/tests/test_tool_loop_agent_runner.py +0 -0
- {astrbot-4.10.2 → astrbot-4.10.4}/typings/faiss/__init__.pyi +0 -0
|
@@ -15,7 +15,6 @@ Always reference these instructions first and fallback to search or bash command
|
|
|
15
15
|
### Running the Application
|
|
16
16
|
- Run main application: `uv run main.py` -- starts in ~3 seconds
|
|
17
17
|
- Application creates WebUI on http://localhost:6185 (default credentials: `astrbot`/`astrbot`)
|
|
18
|
-
- Application loads plugins automatically from `packages/` and `data/plugins/` directories
|
|
19
18
|
|
|
20
19
|
### Dashboard Build (Vue.js/Node.js)
|
|
21
20
|
- **Prerequisites**: Node.js 20+ and npm 10+ required
|
|
@@ -35,7 +34,7 @@ Always reference these instructions first and fallback to search or bash command
|
|
|
35
34
|
- **ALWAYS** run `uv run ruff check .` and `uv run ruff format .` before committing changes
|
|
36
35
|
|
|
37
36
|
### Plugin Development
|
|
38
|
-
- Plugins load from `
|
|
37
|
+
- Plugins load from `astrbot/builtin_stars/` (built-in) and `data/plugins/` (user-installed)
|
|
39
38
|
- Plugin system supports function tools and message handlers
|
|
40
39
|
- Key plugins: python_interpreter, web_searcher, astrbot, reminder, session_controller
|
|
41
40
|
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# 本工作流用于标记并关闭长期不活跃的 Issue。
|
|
2
|
+
# 目前仅针对带 `bug` 标签的 Issue 生效,不会处理 PR。
|
|
3
|
+
#
|
|
4
|
+
# 文档: https://github.com/actions/stale
|
|
5
|
+
name: Mark stale bug issues
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
schedule:
|
|
9
|
+
# 每天 UTC 08:30 执行 (北京时间 16:30)
|
|
10
|
+
- cron: '30 8 * * *'
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
inputs:
|
|
13
|
+
dry-run:
|
|
14
|
+
description: '仅预览, 不实际执行 (Dry run mode)'
|
|
15
|
+
required: false
|
|
16
|
+
default: true
|
|
17
|
+
type: boolean
|
|
18
|
+
|
|
19
|
+
jobs:
|
|
20
|
+
stale:
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
permissions:
|
|
23
|
+
issues: write
|
|
24
|
+
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/stale@v10
|
|
27
|
+
with:
|
|
28
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
29
|
+
|
|
30
|
+
# 只处理带 bug 标签的 Issue
|
|
31
|
+
any-of-labels: 'bug'
|
|
32
|
+
|
|
33
|
+
# 不处理 PR
|
|
34
|
+
days-before-pr-stale: -1
|
|
35
|
+
days-before-pr-close: -1
|
|
36
|
+
|
|
37
|
+
# 不活跃判定与关闭策略: 先标记 stale, 再延迟关闭
|
|
38
|
+
days-before-issue-stale: 60
|
|
39
|
+
days-before-issue-close: 30
|
|
40
|
+
|
|
41
|
+
stale-issue-label: 'stale'
|
|
42
|
+
stale-issue-message: |
|
|
43
|
+
This issue has been automatically marked as **stale** because it has not had any activity.
|
|
44
|
+
It will be closed in a certain period of time if no further activity occurs.
|
|
45
|
+
If this issue is still relevant, please leave a comment.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
该 Issue 已较长时间无活动, 已被标记为 `stale`。
|
|
50
|
+
如无后续活动, 将在一段时间后自动关闭。
|
|
51
|
+
如仍需跟进, 请回复评论。
|
|
52
|
+
close-issue-message: |
|
|
53
|
+
This issue has been automatically closed due to inactivity.
|
|
54
|
+
If the problem still exists, feel free to reopen or create a new issue with updated information.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
该 Issue 因长期无活动已自动关闭。
|
|
59
|
+
如问题仍存在, 欢迎补充复现信息并重新打开或新建 Issue。
|
|
60
|
+
|
|
61
|
+
remove-stale-when-updated: true
|
|
62
|
+
|
|
63
|
+
debug-only: ${{ github.event_name == 'workflow_dispatch' && inputs.dry-run }}
|
|
@@ -24,9 +24,9 @@ configs/session
|
|
|
24
24
|
configs/config.yaml
|
|
25
25
|
cmd_config.json
|
|
26
26
|
|
|
27
|
-
# Plugins
|
|
27
|
+
# Plugins
|
|
28
28
|
addons/plugins
|
|
29
|
-
|
|
29
|
+
astrbot/builtin_stars/python_interpreter/workplace
|
|
30
30
|
tests/astrbot_plugin_openai
|
|
31
31
|
|
|
32
32
|
# Dashboard
|
|
@@ -100,16 +100,8 @@ class Main(star.Star):
|
|
|
100
100
|
logger.error(f"ltm: {e}")
|
|
101
101
|
|
|
102
102
|
@filter.on_llm_response()
|
|
103
|
-
async def
|
|
104
|
-
"""在 LLM
|
|
105
|
-
umo = event.unified_msg_origin
|
|
106
|
-
cfg = self.context.get_config(umo).get("provider_settings", {})
|
|
107
|
-
show_reasoning = cfg.get("display_reasoning_text", False)
|
|
108
|
-
if show_reasoning and resp.reasoning_content:
|
|
109
|
-
resp.completion_text = (
|
|
110
|
-
f"🤔 思考: {resp.reasoning_content}\n\n{resp.completion_text}"
|
|
111
|
-
)
|
|
112
|
-
|
|
103
|
+
async def record_llm_resp_to_ltm(self, event: AstrMessageEvent, resp: LLMResponse):
|
|
104
|
+
"""在 LLM 响应后记录对话"""
|
|
113
105
|
if self.ltm and self.ltm_enabled(event):
|
|
114
106
|
try:
|
|
115
107
|
await self.ltm.after_req_llm(event, resp)
|
{astrbot-4.10.2/packages → astrbot-4.10.4/astrbot/builtin_stars}/astrbot/process_llm_request.py
RENAMED
|
@@ -7,6 +7,7 @@ from astrbot.api import logger, sp, star
|
|
|
7
7
|
from astrbot.api.event import AstrMessageEvent
|
|
8
8
|
from astrbot.api.message_components import Image, Reply
|
|
9
9
|
from astrbot.api.provider import Provider, ProviderRequest
|
|
10
|
+
from astrbot.core.agent.message import TextPart
|
|
10
11
|
from astrbot.core.provider.func_tool_manager import ToolSet
|
|
11
12
|
|
|
12
13
|
|
|
@@ -85,7 +86,9 @@ class ProcessLLMRequest:
|
|
|
85
86
|
req.image_urls,
|
|
86
87
|
)
|
|
87
88
|
if caption:
|
|
88
|
-
req.
|
|
89
|
+
req.extra_user_content_parts.append(
|
|
90
|
+
TextPart(text=f"<image_caption>{caption}</image_caption>")
|
|
91
|
+
)
|
|
89
92
|
req.image_urls = []
|
|
90
93
|
except Exception as e:
|
|
91
94
|
logger.error(f"处理图片描述失败: {e}")
|
|
@@ -129,13 +132,14 @@ class ProcessLLMRequest:
|
|
|
129
132
|
else:
|
|
130
133
|
req.prompt = prefix + req.prompt
|
|
131
134
|
|
|
135
|
+
# 收集系统提醒信息
|
|
136
|
+
system_parts = []
|
|
137
|
+
|
|
132
138
|
# user identifier
|
|
133
139
|
if cfg.get("identifier"):
|
|
134
140
|
user_id = event.message_obj.sender.user_id
|
|
135
141
|
user_nickname = event.message_obj.sender.nickname
|
|
136
|
-
|
|
137
|
-
f"\n[User ID: {user_id}, Nickname: {user_nickname}]\n{req.prompt}"
|
|
138
|
-
)
|
|
142
|
+
system_parts.append(f"User ID: {user_id}, Nickname: {user_nickname}")
|
|
139
143
|
|
|
140
144
|
# group name identifier
|
|
141
145
|
if cfg.get("group_name_display") and event.message_obj.group_id:
|
|
@@ -146,7 +150,7 @@ class ProcessLLMRequest:
|
|
|
146
150
|
return
|
|
147
151
|
group_name = event.message_obj.group.group_name
|
|
148
152
|
if group_name:
|
|
149
|
-
|
|
153
|
+
system_parts.append(f"Group name: {group_name}")
|
|
150
154
|
|
|
151
155
|
# time info
|
|
152
156
|
if cfg.get("datetime_system_prompt"):
|
|
@@ -162,7 +166,7 @@ class ProcessLLMRequest:
|
|
|
162
166
|
current_time = (
|
|
163
167
|
datetime.datetime.now().astimezone().strftime("%Y-%m-%d %H:%M (%Z)")
|
|
164
168
|
)
|
|
165
|
-
|
|
169
|
+
system_parts.append(f"Current datetime: {current_time}")
|
|
166
170
|
|
|
167
171
|
img_cap_prov_id: str = cfg.get("default_image_caption_provider_id") or ""
|
|
168
172
|
if req.conversation:
|
|
@@ -225,10 +229,17 @@ class ProcessLLMRequest:
|
|
|
225
229
|
except BaseException as e:
|
|
226
230
|
logger.error(f"处理引用图片失败: {e}")
|
|
227
231
|
|
|
228
|
-
# 3.
|
|
232
|
+
# 3. 将所有部分组合成文本并添加到 extra_user_content_parts 中
|
|
229
233
|
# 确保引用内容被正确的标签包裹
|
|
230
234
|
quoted_content = "\n".join(content_parts)
|
|
231
235
|
# 确保所有内容都在<Quoted Message>标签内
|
|
232
236
|
quoted_text = f"<Quoted Message>\n{quoted_content}\n</Quoted Message>"
|
|
233
237
|
|
|
234
|
-
req.
|
|
238
|
+
req.extra_user_content_parts.append(TextPart(text=quoted_text))
|
|
239
|
+
|
|
240
|
+
# 统一包裹所有系统提醒
|
|
241
|
+
if system_parts:
|
|
242
|
+
system_content = (
|
|
243
|
+
"<system_reminder>" + "\n".join(system_parts) + "</system_reminder>"
|
|
244
|
+
)
|
|
245
|
+
req.extra_user_content_parts.append(TextPart(text=system_content))
|
|
@@ -184,7 +184,8 @@ class ProviderCommands:
|
|
|
184
184
|
event.set_result(MessageEventResult().message("请输入序号。"))
|
|
185
185
|
return
|
|
186
186
|
if idx2 > len(self.context.get_all_tts_providers()) or idx2 < 1:
|
|
187
|
-
event.set_result(MessageEventResult().message("
|
|
187
|
+
event.set_result(MessageEventResult().message("无效的提供商序号。"))
|
|
188
|
+
return
|
|
188
189
|
provider = self.context.get_all_tts_providers()[idx2 - 1]
|
|
189
190
|
id_ = provider.meta().id
|
|
190
191
|
await self.context.provider_manager.set_provider(
|
|
@@ -198,7 +199,8 @@ class ProviderCommands:
|
|
|
198
199
|
event.set_result(MessageEventResult().message("请输入序号。"))
|
|
199
200
|
return
|
|
200
201
|
if idx2 > len(self.context.get_all_stt_providers()) or idx2 < 1:
|
|
201
|
-
event.set_result(MessageEventResult().message("
|
|
202
|
+
event.set_result(MessageEventResult().message("无效的提供商序号。"))
|
|
203
|
+
return
|
|
202
204
|
provider = self.context.get_all_stt_providers()[idx2 - 1]
|
|
203
205
|
id_ = provider.meta().id
|
|
204
206
|
await self.context.provider_manager.set_provider(
|
|
@@ -209,8 +211,8 @@ class ProviderCommands:
|
|
|
209
211
|
event.set_result(MessageEventResult().message(f"成功切换到 {id_}。"))
|
|
210
212
|
elif isinstance(idx, int):
|
|
211
213
|
if idx > len(self.context.get_all_providers()) or idx < 1:
|
|
212
|
-
event.set_result(MessageEventResult().message("
|
|
213
|
-
|
|
214
|
+
event.set_result(MessageEventResult().message("无效的提供商序号。"))
|
|
215
|
+
return
|
|
214
216
|
provider = self.context.get_all_providers()[idx - 1]
|
|
215
217
|
id_ = provider.meta().id
|
|
216
218
|
await self.context.provider_manager.set_provider(
|
|
@@ -157,9 +157,8 @@ class Main(star.Star):
|
|
|
157
157
|
async def is_docker_available(self) -> bool:
|
|
158
158
|
"""Check if docker is available"""
|
|
159
159
|
try:
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
await docker.close()
|
|
160
|
+
async with aiodocker.Docker() as docker:
|
|
161
|
+
await docker.version()
|
|
163
162
|
return True
|
|
164
163
|
except BaseException as e:
|
|
165
164
|
logger.info(f"检查 Docker 可用性: {e}")
|
|
@@ -279,14 +278,14 @@ class Main(star.Star):
|
|
|
279
278
|
@pi.command("repull")
|
|
280
279
|
async def pi_repull(self, event: AstrMessageEvent):
|
|
281
280
|
"""重新拉取沙箱镜像"""
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
281
|
+
async with aiodocker.Docker() as docker:
|
|
282
|
+
image_name = await self.get_image_name()
|
|
283
|
+
try:
|
|
284
|
+
await docker.images.get(image_name)
|
|
285
|
+
await docker.images.delete(image_name, force=True)
|
|
286
|
+
except aiodocker.exceptions.DockerError:
|
|
287
|
+
pass
|
|
288
|
+
await docker.images.pull(image_name)
|
|
290
289
|
yield event.plain_result("重新拉取沙箱镜像成功。")
|
|
291
290
|
|
|
292
291
|
@pi.command("file")
|
|
@@ -371,137 +370,137 @@ class Main(star.Star):
|
|
|
371
370
|
obs = ""
|
|
372
371
|
n = 5
|
|
373
372
|
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
PROMPT_ = PROMPT.format(
|
|
379
|
-
prompt=plain_text,
|
|
380
|
-
extra_input=extra_inputs,
|
|
381
|
-
extra_prompt=obs,
|
|
382
|
-
)
|
|
383
|
-
provider = self.context.get_using_provider()
|
|
384
|
-
llm_response = await provider.text_chat(
|
|
385
|
-
prompt=PROMPT_,
|
|
386
|
-
session_id=f"{event.session_id}_{magic_code}_{i!s}",
|
|
387
|
-
)
|
|
388
|
-
|
|
389
|
-
logger.debug(
|
|
390
|
-
"code interpreter llm gened code:" + llm_response.completion_text,
|
|
391
|
-
)
|
|
392
|
-
|
|
393
|
-
# 整理代码并保存
|
|
394
|
-
code_clean = await self.tidy_code(llm_response.completion_text)
|
|
395
|
-
with open(os.path.join(workplace_path, "exec.py"), "w") as f:
|
|
396
|
-
f.write(code_clean)
|
|
397
|
-
|
|
398
|
-
# 启动容器
|
|
399
|
-
docker = aiodocker.Docker()
|
|
400
|
-
|
|
401
|
-
# 检查有没有image
|
|
402
|
-
image_name = await self.get_image_name()
|
|
403
|
-
try:
|
|
404
|
-
await docker.images.get(image_name)
|
|
405
|
-
except aiodocker.exceptions.DockerError:
|
|
406
|
-
# 拉取镜像
|
|
407
|
-
logger.info(f"未找到沙箱镜像,正在尝试拉取 {image_name}...")
|
|
408
|
-
await docker.images.pull(image_name)
|
|
373
|
+
async with aiodocker.Docker() as docker:
|
|
374
|
+
for i in range(n):
|
|
375
|
+
if i > 0:
|
|
376
|
+
logger.info(f"Try {i + 1}/{n}")
|
|
409
377
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
378
|
+
PROMPT_ = PROMPT.format(
|
|
379
|
+
prompt=plain_text,
|
|
380
|
+
extra_input=extra_inputs,
|
|
381
|
+
extra_prompt=obs,
|
|
382
|
+
)
|
|
383
|
+
provider = self.context.get_using_provider()
|
|
384
|
+
llm_response = await provider.text_chat(
|
|
385
|
+
prompt=PROMPT_,
|
|
386
|
+
session_id=f"{event.session_id}_{magic_code}_{i!s}",
|
|
387
|
+
)
|
|
413
388
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
"",
|
|
417
|
-
)
|
|
418
|
-
if self.docker_host_astrbot_abs_path:
|
|
419
|
-
host_shared = os.path.join(
|
|
420
|
-
self.docker_host_astrbot_abs_path,
|
|
421
|
-
self.shared_path,
|
|
389
|
+
logger.debug(
|
|
390
|
+
"code interpreter llm gened code:" + llm_response.completion_text,
|
|
422
391
|
)
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
392
|
+
|
|
393
|
+
# 整理代码并保存
|
|
394
|
+
code_clean = await self.tidy_code(llm_response.completion_text)
|
|
395
|
+
with open(os.path.join(workplace_path, "exec.py"), "w") as f:
|
|
396
|
+
f.write(code_clean)
|
|
397
|
+
|
|
398
|
+
# 检查有没有image
|
|
399
|
+
image_name = await self.get_image_name()
|
|
400
|
+
try:
|
|
401
|
+
await docker.images.get(image_name)
|
|
402
|
+
except aiodocker.exceptions.DockerError:
|
|
403
|
+
# 拉取镜像
|
|
404
|
+
logger.info(f"未找到沙箱镜像,正在尝试拉取 {image_name}...")
|
|
405
|
+
await docker.images.pull(image_name)
|
|
406
|
+
|
|
407
|
+
yield event.plain_result(
|
|
408
|
+
f"使用沙箱执行代码中,请稍等...(尝试次数: {i + 1}/{n})",
|
|
426
409
|
)
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
410
|
+
|
|
411
|
+
self.docker_host_astrbot_abs_path = self.config.get(
|
|
412
|
+
"docker_host_astrbot_abs_path",
|
|
413
|
+
"",
|
|
430
414
|
)
|
|
415
|
+
if self.docker_host_astrbot_abs_path:
|
|
416
|
+
host_shared = os.path.join(
|
|
417
|
+
self.docker_host_astrbot_abs_path,
|
|
418
|
+
self.shared_path,
|
|
419
|
+
)
|
|
420
|
+
host_output = os.path.join(
|
|
421
|
+
self.docker_host_astrbot_abs_path,
|
|
422
|
+
output_path,
|
|
423
|
+
)
|
|
424
|
+
host_workplace = os.path.join(
|
|
425
|
+
self.docker_host_astrbot_abs_path,
|
|
426
|
+
workplace_path,
|
|
427
|
+
)
|
|
431
428
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
429
|
+
else:
|
|
430
|
+
host_shared = os.path.abspath(self.shared_path)
|
|
431
|
+
host_output = os.path.abspath(output_path)
|
|
432
|
+
host_workplace = os.path.abspath(workplace_path)
|
|
436
433
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
434
|
+
logger.debug(
|
|
435
|
+
f"host_shared: {host_shared}, host_output: {host_output}, host_workplace: {host_workplace}",
|
|
436
|
+
)
|
|
440
437
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
438
|
+
container = await docker.containers.run(
|
|
439
|
+
{
|
|
440
|
+
"Image": image_name,
|
|
441
|
+
"Cmd": ["python", "exec.py"],
|
|
442
|
+
"Memory": 512 * 1024 * 1024,
|
|
443
|
+
"NanoCPUs": 1000000000,
|
|
444
|
+
"HostConfig": {
|
|
445
|
+
"Binds": [
|
|
446
|
+
f"{host_shared}:/astrbot_sandbox/shared:ro",
|
|
447
|
+
f"{host_output}:/astrbot_sandbox/output:rw",
|
|
448
|
+
f"{host_workplace}:/astrbot_sandbox:rw",
|
|
449
|
+
],
|
|
450
|
+
},
|
|
451
|
+
"Env": [f"MAGIC_CODE={magic_code}"],
|
|
452
|
+
"AutoRemove": True,
|
|
453
453
|
},
|
|
454
|
-
|
|
455
|
-
"AutoRemove": True,
|
|
456
|
-
},
|
|
457
|
-
)
|
|
454
|
+
)
|
|
458
455
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
456
|
+
logger.debug(f"Container {container.id} created.")
|
|
457
|
+
logs = await self.run_container(container)
|
|
458
|
+
|
|
459
|
+
logger.debug(f"Container {container.id} finished.")
|
|
460
|
+
logger.debug(f"Container {container.id} logs: {logs}")
|
|
461
|
+
|
|
462
|
+
# 发送结果
|
|
463
|
+
pattern = r"\[ASTRBOT_(TEXT|IMAGE|FILE)_OUTPUT#\w+\]: (.*)"
|
|
464
|
+
ok = False
|
|
465
|
+
traceback = ""
|
|
466
|
+
for idx, log in enumerate(logs):
|
|
467
|
+
match = re.match(pattern, log)
|
|
468
|
+
if match:
|
|
469
|
+
ok = True
|
|
470
|
+
if match.group(1) == "TEXT":
|
|
471
|
+
yield event.plain_result(match.group(2))
|
|
472
|
+
elif match.group(1) == "IMAGE":
|
|
473
|
+
image_path = os.path.join(workplace_path, match.group(2))
|
|
474
|
+
logger.debug(f"Sending image: {image_path}")
|
|
475
|
+
yield event.image_result(image_path)
|
|
476
|
+
elif match.group(1) == "FILE":
|
|
477
|
+
file_path = os.path.join(workplace_path, match.group(2))
|
|
478
|
+
# logger.debug(f"Sending file: {file_path}")
|
|
479
|
+
# file_s3_url = await self.file_upload(file_path)
|
|
480
|
+
# logger.info(f"文件上传到 AstrBot 云节点: {file_s3_url}")
|
|
481
|
+
file_name = os.path.basename(file_path)
|
|
482
|
+
chain: list[BaseMessageComponent] = [
|
|
483
|
+
File(name=file_name, file=file_path)
|
|
484
|
+
]
|
|
485
|
+
yield event.set_result(MessageEventResult(chain=chain))
|
|
486
|
+
|
|
487
|
+
elif (
|
|
488
|
+
"Traceback (most recent call last)" in log or "[Error]: " in log
|
|
489
|
+
):
|
|
490
|
+
traceback = "\n".join(logs[idx:])
|
|
491
|
+
|
|
492
|
+
if not ok:
|
|
493
|
+
if traceback:
|
|
494
|
+
obs = f"## Observation \n When execute the code: ```python\n{code_clean}\n```\n\n Error occurred:\n\n{traceback}\n Need to improve/fix the code."
|
|
495
|
+
else:
|
|
496
|
+
logger.warning(
|
|
497
|
+
f"未从沙箱输出中捕获到合法的输出。沙箱输出日志: {logs}",
|
|
498
|
+
)
|
|
499
|
+
break
|
|
496
500
|
else:
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
break
|
|
501
|
-
else:
|
|
502
|
-
# 成功了
|
|
503
|
-
self.user_file_msg_buffer.pop(event.get_session_id())
|
|
504
|
-
return
|
|
501
|
+
# 成功了
|
|
502
|
+
self.user_file_msg_buffer.pop(event.get_session_id())
|
|
503
|
+
return
|
|
505
504
|
|
|
506
505
|
yield event.plain_result(
|
|
507
506
|
"经过多次尝试后,未从沙箱输出中捕获到合法的输出,请更换问法或者查看日志。",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "4.10.4"
|
|
@@ -12,7 +12,7 @@ class ContentPart(BaseModel):
|
|
|
12
12
|
|
|
13
13
|
__content_part_registry: ClassVar[dict[str, type["ContentPart"]]] = {}
|
|
14
14
|
|
|
15
|
-
type:
|
|
15
|
+
type: Literal["text", "think", "image_url", "audio_url"]
|
|
16
16
|
|
|
17
17
|
def __init_subclass__(cls, **kwargs: Any) -> None:
|
|
18
18
|
super().__init_subclass__(**kwargs)
|
|
@@ -63,6 +63,28 @@ class TextPart(ContentPart):
|
|
|
63
63
|
text: str
|
|
64
64
|
|
|
65
65
|
|
|
66
|
+
class ThinkPart(ContentPart):
|
|
67
|
+
"""
|
|
68
|
+
>>> ThinkPart(think="I think I need to think about this.").model_dump()
|
|
69
|
+
{'type': 'think', 'think': 'I think I need to think about this.', 'encrypted': None}
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
type: str = "think"
|
|
73
|
+
think: str
|
|
74
|
+
encrypted: str | None = None
|
|
75
|
+
"""Encrypted thinking content, or signature."""
|
|
76
|
+
|
|
77
|
+
def merge_in_place(self, other: Any) -> bool:
|
|
78
|
+
if not isinstance(other, ThinkPart):
|
|
79
|
+
return False
|
|
80
|
+
if self.encrypted:
|
|
81
|
+
return False
|
|
82
|
+
self.think += other.think
|
|
83
|
+
if other.encrypted:
|
|
84
|
+
self.encrypted = other.encrypted
|
|
85
|
+
return True
|
|
86
|
+
|
|
87
|
+
|
|
66
88
|
class ImageURLPart(ContentPart):
|
|
67
89
|
"""
|
|
68
90
|
>>> ImageURLPart(image_url="http://example.com/image.jpg").model_dump()
|
|
@@ -169,6 +191,15 @@ class Message(BaseModel):
|
|
|
169
191
|
)
|
|
170
192
|
return self
|
|
171
193
|
|
|
194
|
+
@model_serializer(mode="wrap")
|
|
195
|
+
def serialize(self, handler):
|
|
196
|
+
data = handler(self)
|
|
197
|
+
if self.tool_calls is None:
|
|
198
|
+
data.pop("tool_calls", None)
|
|
199
|
+
if self.tool_call_id is None:
|
|
200
|
+
data.pop("tool_call_id", None)
|
|
201
|
+
return data
|
|
202
|
+
|
|
172
203
|
|
|
173
204
|
class AssistantMessageSegment(Message):
|
|
174
205
|
"""A message segment from the assistant."""
|
|
@@ -13,6 +13,7 @@ from mcp.types import (
|
|
|
13
13
|
)
|
|
14
14
|
|
|
15
15
|
from astrbot import logger
|
|
16
|
+
from astrbot.core.agent.message import TextPart, ThinkPart
|
|
16
17
|
from astrbot.core.message.components import Json
|
|
17
18
|
from astrbot.core.message.message_event_result import (
|
|
18
19
|
MessageChain,
|
|
@@ -77,10 +78,11 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
77
78
|
async def _iter_llm_responses(self) -> T.AsyncGenerator[LLMResponse, None]:
|
|
78
79
|
"""Yields chunks *and* a final LLMResponse."""
|
|
79
80
|
payload = {
|
|
80
|
-
"contexts": self.run_context.messages,
|
|
81
|
+
"contexts": self.run_context.messages, # list[Message]
|
|
81
82
|
"func_tool": self.req.func_tool,
|
|
82
83
|
"model": self.req.model, # NOTE: in fact, this arg is None in most cases
|
|
83
84
|
"session_id": self.req.session_id,
|
|
85
|
+
"extra_user_content_parts": self.req.extra_user_content_parts, # list[ContentPart]
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
if self.streaming:
|
|
@@ -168,13 +170,20 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
168
170
|
self.final_llm_resp = llm_resp
|
|
169
171
|
self._transition_state(AgentState.DONE)
|
|
170
172
|
self.stats.end_time = time.time()
|
|
173
|
+
|
|
171
174
|
# record the final assistant message
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
175
|
+
parts = []
|
|
176
|
+
if llm_resp.reasoning_content or llm_resp.reasoning_signature:
|
|
177
|
+
parts.append(
|
|
178
|
+
ThinkPart(
|
|
179
|
+
think=llm_resp.reasoning_content,
|
|
180
|
+
encrypted=llm_resp.reasoning_signature,
|
|
181
|
+
)
|
|
182
|
+
)
|
|
183
|
+
parts.append(TextPart(text=llm_resp.completion_text or "*No response*"))
|
|
184
|
+
self.run_context.messages.append(Message(role="assistant", content=parts))
|
|
185
|
+
|
|
186
|
+
# call the on_agent_done hook
|
|
178
187
|
try:
|
|
179
188
|
await self.agent_hooks.on_agent_done(self.run_context, llm_resp)
|
|
180
189
|
except Exception as e:
|
|
@@ -213,10 +222,19 @@ class ToolLoopAgentRunner(BaseAgentRunner[TContext]):
|
|
|
213
222
|
data=AgentResponseData(chain=result),
|
|
214
223
|
)
|
|
215
224
|
# 将结果添加到上下文中
|
|
225
|
+
parts = []
|
|
226
|
+
if llm_resp.reasoning_content or llm_resp.reasoning_signature:
|
|
227
|
+
parts.append(
|
|
228
|
+
ThinkPart(
|
|
229
|
+
think=llm_resp.reasoning_content,
|
|
230
|
+
encrypted=llm_resp.reasoning_signature,
|
|
231
|
+
)
|
|
232
|
+
)
|
|
233
|
+
parts.append(TextPart(text=llm_resp.completion_text or "*No response*"))
|
|
216
234
|
tool_calls_result = ToolCallsResult(
|
|
217
235
|
tool_calls_info=AssistantMessageSegment(
|
|
218
236
|
tool_calls=llm_resp.to_openai_to_calls_model(),
|
|
219
|
-
content=
|
|
237
|
+
content=parts,
|
|
220
238
|
),
|
|
221
239
|
tool_calls_result=tool_call_result_blocks,
|
|
222
240
|
)
|
|
@@ -13,6 +13,12 @@ from astrbot.core.star.star_handler import EventType
|
|
|
13
13
|
class MainAgentHooks(BaseAgentRunHooks[AstrAgentContext]):
|
|
14
14
|
async def on_agent_done(self, run_context, llm_response):
|
|
15
15
|
# 执行事件钩子
|
|
16
|
+
if llm_response and llm_response.reasoning_content:
|
|
17
|
+
# we will use this in result_decorate stage to inject reasoning content to chain
|
|
18
|
+
run_context.context.event.set_extra(
|
|
19
|
+
"_llm_reasoning_content", llm_response.reasoning_content
|
|
20
|
+
)
|
|
21
|
+
|
|
16
22
|
await call_event_hook(
|
|
17
23
|
run_context.context.event,
|
|
18
24
|
EventType.OnLLMResponseEvent,
|