make wait_for_completion=False by default for run_task function in the python lib (#2500)

This commit is contained in:
Shuchang Zheng
2025-05-28 15:27:50 -07:00
committed by GitHub
parent fc028212be
commit a2ff8791d6
4 changed files with 107 additions and 30 deletions

View File

@@ -303,7 +303,7 @@ class Skyvern(AsyncSkyvern):
data_extraction_schema: dict[str, Any] | str | None = None,
proxy_location: ProxyLocation | None = None,
max_steps: int | None = None,
wait_for_completion: bool = True,
wait_for_completion: bool = False,
timeout: float = DEFAULT_AGENT_TIMEOUT,
browser_session_id: str | None = None,
user_agent: str | None = None,