From 21aa3174f49700614072ab895045bff925c2908e Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Mon, 1 Dec 2025 00:16:11 +0800 Subject: [PATCH] fix: disable reachability check in default configuration --- astrbot/core/config/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index 7e71626cd..227e3a7e6 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -73,7 +73,7 @@ DEFAULT_CONFIG = { "coze_agent_runner_provider_id": "", "dashscope_agent_runner_provider_id": "", "unsupported_streaming_strategy": "realtime_segmenting", - "reachability_check": True, + "reachability_check": False, "max_agent_step": 30, "tool_call_timeout": 60, },