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) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
2b614ddef2
commit
257a4412aa
@@ -11,7 +11,7 @@ export const TOOL_CONFIGS: Record<string, ToolConfig> = {
|
||||
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 },
|
||||
|
||||
Reference in New Issue
Block a user