From 257a4412aaa64452827ca125ec0651ec1b8029c7 Mon Sep 17 00:00:00 2001 From: gongzhiyong Date: Sun, 12 Apr 2026 23:38:36 +0800 Subject: [PATCH] fix: increase web_read timeout from 8s to 30s with retry 8s timeout caused Jina Reader failures on slower sites like news.cn. Increased to 30s with 2 retries and 1s backoff. Co-Authored-By: Claude Opus 4.6 (1M context) --- langgraph/src/agent/utils/toolConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langgraph/src/agent/utils/toolConfig.ts b/langgraph/src/agent/utils/toolConfig.ts index fe9d620..cd514f9 100644 --- a/langgraph/src/agent/utils/toolConfig.ts +++ b/langgraph/src/agent/utils/toolConfig.ts @@ -11,7 +11,7 @@ export const TOOL_CONFIGS: Record = { ticket_detail: { timeoutMs: 15_000, maxRetries: 2, backoffMs: 500 }, google_search: { timeoutMs: 10_000, maxRetries: 1 }, web_search: { timeoutMs: 10_000, maxRetries: 1 }, - web_read: { timeoutMs: 8_000, maxRetries: 1 }, + web_read: { timeoutMs: 30_000, maxRetries: 2, backoffMs: 1000 }, web_search_deep: { timeoutMs: 45_000, maxRetries: 1 }, sandbox_run: { timeoutMs: 15_000, maxRetries: 1 }, code_execute: { timeoutMs: 15_000, maxRetries: 1 },