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 },