From 91608cff8b1d3f201a476ef0ca35d1e2b0efcf19 Mon Sep 17 00:00:00 2001 From: panyehong <2655992392@qq.com> Date: Mon, 22 Jun 2026 20:27:10 +0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Improvement:=20The=20defau?= =?UTF-8?q?lt=20setting=20for=20self-verification=20upon=20agent=20creatio?= =?UTF-8?q?n=20should=20be=20"False"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/types/agentConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/types/agentConfig.ts b/frontend/types/agentConfig.ts index a853a2367..6b825b28c 100644 --- a/frontend/types/agentConfig.ts +++ b/frontend/types/agentConfig.ts @@ -51,7 +51,7 @@ export interface AgentVerificationConfig { } export const DEFAULT_AGENT_VERIFICATION_CONFIG: AgentVerificationConfig = { - enabled: true, + enabled: false, step_verification_enabled: true, final_verification_enabled: true, llm_verification_enabled: true,