diff --git a/pyproject.toml b/pyproject.toml index b86cae5..776176d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "humanloop" [tool.poetry] name = "humanloop" -version = "0.8.36b2" +version = "0.8.37" description = "" readme = "README.md" authors = [] diff --git a/src/humanloop/core/client_wrapper.py b/src/humanloop/core/client_wrapper.py index e577cdf..36e7630 100644 --- a/src/humanloop/core/client_wrapper.py +++ b/src/humanloop/core/client_wrapper.py @@ -14,10 +14,10 @@ def __init__(self, *, api_key: str, base_url: str, timeout: typing.Optional[floa def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { - "User-Agent": "humanloop/0.8.36b2", + "User-Agent": "humanloop/0.8.37", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "humanloop", - "X-Fern-SDK-Version": "0.8.36b2", + "X-Fern-SDK-Version": "0.8.37", } headers["X-API-KEY"] = self.api_key return headers