lower default page loading time from 90 seconds to 60 seconds (#4076)

This commit is contained in:
Shuchang Zheng
2025-11-22 21:07:34 -08:00
committed by GitHub
parent 7729d7cffe
commit 2608c02f7a
5 changed files with 5 additions and 5 deletions

View File

@@ -443,7 +443,7 @@ class ForgeAgent:
page = await browser_state.must_get_working_page()
current_url = page.url
if current_url.rstrip("/") != task.url.rstrip("/"):
await page.goto(task.url)
await page.goto(task.url, timeout=settings.BROWSER_LOADING_TIMEOUT_MS)
step = await self.update_step(
step, status=StepStatus.completed, is_last=True, output=AgentStepOutput(action_results=[])
)