From 9a5f507cbefda5af03eb99f67dff6f21c1bb722d Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 23 Nov 2025 20:58:18 +0800 Subject: [PATCH] feat: enable agent runner providers in configuration --- astrbot/core/config/default.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 4e1101010..39c0aa3a7 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -2217,6 +2217,7 @@ CONFIG_METADATA_3 = { "_special": "select_agent_runner_provider", "condition": { "provider_settings.agent_runner_type": "coze", + "provider_settings.enable": True, }, }, "provider_settings.dify_agent_runner_provider_id": { @@ -2225,6 +2226,7 @@ CONFIG_METADATA_3 = { "_special": "select_agent_runner_provider", "condition": { "provider_settings.agent_runner_type": "dify", + "provider_settings.enable": True, }, }, "provider_settings.dashscope_agent_runner_provider_id": { @@ -2233,6 +2235,7 @@ CONFIG_METADATA_3 = { "_special": "select_agent_runner_provider", "condition": { "provider_settings.agent_runner_type": "dashscope", + "provider_settings.enable": True, }, }, },