v1.0.12 (#4620)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user