fix: raise scan proxy timeout from 3 to 10 min (50 pages + 20 DSI docs + LLM)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-05-05 00:25:33 +02:00
parent f3e44cf59f
commit 47ec792acf
@@ -15,7 +15,7 @@ export async function POST(request: NextRequest) {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body,
signal: AbortSignal.timeout(180000), // 3 min — multi-page scan + LLM
signal: AbortSignal.timeout(600000), // 10 min — 50 pages + 20 DSI docs + LLM corrections
})
if (!response.ok) {