add 1s delay between cached actions (#4418)

This commit is contained in:
pedrohsdb
2026-01-08 14:35:58 -08:00
committed by GitHub
parent 51b50c61f0
commit b20ee4152a
2 changed files with 5 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ class Settings(BaseSettings):
TEMP_PATH: str = "./temp"
DOWNLOAD_PATH: str = f"{REPO_ROOT_DIR}/downloads"
BROWSER_ACTION_TIMEOUT_MS: int = 5000
CACHED_ACTION_DELAY_SECONDS: float = 1.0
BROWSER_SCREENSHOT_TIMEOUT_MS: int = 20000
BROWSER_LOADING_TIMEOUT_MS: int = 60000
BROWSER_SCRAPING_BUILDING_ELEMENT_TREE_TIMEOUT_MS: int = 60 * 1000 # 1 minute

View File

@@ -211,6 +211,10 @@ class ScriptSkyvernPage(SkyvernPage):
# Auto-create screenshot artifact after execution
await self._create_screenshot_after_execution()
# Add a small buffer between cached actions to give slow pages time to settle
if settings.CACHED_ACTION_DELAY_SECONDS > 0:
await asyncio.sleep(settings.CACHED_ACTION_DELAY_SECONDS)
async def _update_action_reasoning(
self,
action_id: str,