This commit is contained in:
Shuchang Zheng
2026-02-03 10:40:03 -08:00
committed by GitHub
parent 8d0ad3901e
commit 10fa135aa1
18 changed files with 202 additions and 155 deletions

View File

@@ -155,6 +155,7 @@ class Skyvern:
include_action_history_in_verification: typing.Optional[bool] = OMIT,
max_screenshot_scrolls: typing.Optional[int] = OMIT,
browser_address: typing.Optional[str] = OMIT,
run_with: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> TaskRunResponse:
"""
@@ -253,6 +254,9 @@ class Skyvern:
browser_address : typing.Optional[str]
The CDP address for the task.
run_with : typing.Optional[str]
Whether to run the task with agent or code.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
@@ -293,6 +297,7 @@ class Skyvern:
include_action_history_in_verification=include_action_history_in_verification,
max_screenshot_scrolls=max_screenshot_scrolls,
browser_address=browser_address,
run_with=run_with,
request_options=request_options,
)
return _response.data
@@ -2169,6 +2174,7 @@ class AsyncSkyvern:
include_action_history_in_verification: typing.Optional[bool] = OMIT,
max_screenshot_scrolls: typing.Optional[int] = OMIT,
browser_address: typing.Optional[str] = OMIT,
run_with: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> TaskRunResponse:
"""
@@ -2267,6 +2273,9 @@ class AsyncSkyvern:
browser_address : typing.Optional[str]
The CDP address for the task.
run_with : typing.Optional[str]
Whether to run the task with agent or code.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
@@ -2315,6 +2324,7 @@ class AsyncSkyvern:
include_action_history_in_verification=include_action_history_in_verification,
max_screenshot_scrolls=max_screenshot_scrolls,
browser_address=browser_address,
run_with=run_with,
request_options=request_options,
)
return _response.data