introduce a way to reload the page (#1597)

This commit is contained in:
Shuchang Zheng
2025-01-19 19:24:39 -08:00
committed by GitHub
parent 0c02bdef19
commit 39bb4558bf
3 changed files with 39 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ class SkyvernContext:
totp_codes: dict[str, str | None] = field(default_factory=dict)
log: list[dict] = field(default_factory=list)
hashed_href_map: dict[str, str] = field(default_factory=dict)
refresh_working_page: bool = False
def __repr__(self) -> str:
return f"SkyvernContext(request_id={self.request_id}, organization_id={self.organization_id}, task_id={self.task_id}, workflow_id={self.workflow_id}, workflow_run_id={self.workflow_run_id}, max_steps_override={self.max_steps_override})"