Add confirmation dialog for AI-generated data schema (#SKY-7445) (#4724)

This commit is contained in:
Celal Zamanoglu
2026-02-13 01:35:07 +03:00
committed by GitHub
parent bb9f91b287
commit 4bd4cd1fb6
4 changed files with 185 additions and 71 deletions

View File

@@ -22,7 +22,7 @@ async def skyvern_session_create(
local: Annotated[bool, Field(description="Launch local browser instead of cloud")] = False,
headless: Annotated[bool, Field(description="Run local browser in headless mode")] = False,
) -> dict[str, Any]:
"""Create a new browser session to start interacting with websites. Creates a cloud-hosted browser by default with geographic proxy support. This must be called before using any browser tools (navigate, click, extract, etc.).
"""Create a new browser session to start interacting with websites. Creates a cloud browser by default.
Use local=true for a local Chromium instance.
The session persists across tool calls until explicitly closed.