script generation improvement (#3216)

This commit is contained in:
Shuchang Zheng
2025-08-16 17:48:10 -07:00
committed by GitHub
parent 82f0b98fca
commit b9b7591079
14 changed files with 841 additions and 279 deletions

View File

@@ -26,26 +26,32 @@ from skyvern.library import Skyvern # noqa: E402
from skyvern.core.script_generations.skyvern_page import RunContext, SkyvernPage # noqa: E402
from skyvern.core.script_generations.run_initializer import setup # noqa: E402
from skyvern.core.script_generations.workflow_wrappers import ( # noqa: E402
email_block, # noqa: E402
file_download_block, # noqa: E402
navigation_block, # noqa: E402
task_block, # noqa: E402
url_block, # noqa: E402
wait_block, # noqa: E402
cached, # noqa: E402
workflow, # noqa: E402
) # noqa: E402
from skyvern.services.script_service import ( # noqa: E402
action, # noqa: E402
download, # noqa: E402
extract, # noqa: E402
login, # noqa: E402
run_script, # noqa: E402
run_task, # noqa: E402
wait, # noqa: E402
) # noqa: E402
__all__ = [
"Skyvern",
"SkyvernPage",
"RunContext",
"email_block",
"file_download_block",
"navigation_block",
"action",
"cached",
"download",
"extract",
"login",
"run_script",
"run_task",
"setup",
"task_block",
"url_block",
"wait_block",
"wait",
"workflow",
]