new sdk v0.1.74 (#2129)
This commit is contained in:
@@ -5571,7 +5571,8 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"skyvern-1.0",
|
"skyvern-1.0",
|
||||||
"skyvern-2.0"
|
"skyvern-2.0",
|
||||||
|
"openai-cua"
|
||||||
],
|
],
|
||||||
"title": "RunEngine"
|
"title": "RunEngine"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "skyvern"
|
name = "skyvern"
|
||||||
version = "0.1.73"
|
version = "0.1.74"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Skyvern AI <info@skyvern.com>"]
|
authors = ["Skyvern AI <info@skyvern.com>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class BaseClientWrapper:
|
|||||||
headers: typing.Dict[str, str] = {
|
headers: typing.Dict[str, str] = {
|
||||||
"X-Fern-Language": "Python",
|
"X-Fern-Language": "Python",
|
||||||
"X-Fern-SDK-Name": "skyvern",
|
"X-Fern-SDK-Name": "skyvern",
|
||||||
"X-Fern-SDK-Version": "0.1.70",
|
"X-Fern-SDK-Version": "0.1.74",
|
||||||
}
|
}
|
||||||
if self._api_key is not None:
|
if self._api_key is not None:
|
||||||
headers["x-api-key"] = self._api_key
|
headers["x-api-key"] = self._api_key
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
RunEngine = typing.Union[typing.Literal["skyvern-1.0", "skyvern-2.0"], typing.Any]
|
RunEngine = typing.Union[typing.Literal["skyvern-1.0", "skyvern-2.0", "openai-cua"], typing.Any]
|
||||||
|
|||||||
Reference in New Issue
Block a user