Release 1.0.0 (#4003)

This commit is contained in:
Stanislav Novosad
2025-11-14 21:43:39 -08:00
committed by GitHub
parent 9814f9803a
commit aefc86a453
9 changed files with 49 additions and 35 deletions

View File

@@ -22,10 +22,10 @@ class BaseClientWrapper:
def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"User-Agent": "skyvern/0.2.23",
"User-Agent": "skyvern/1.0.0",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "skyvern",
"X-Fern-SDK-Version": "0.2.23",
"X-Fern-SDK-Version": "1.0.0",
**(self.get_custom_headers() or {}),
}
if self._api_key is not None: