diff --git a/.fern/metadata.json b/.fern/metadata.json index 00b12bfa..e2ee4864 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -63,5 +63,5 @@ ] }, "originGitCommit": "2968d0bfb0c9e8d381a274972edb6f7948cf77c6", - "sdkVersion": "0.13.14" + "sdkVersion": "0.14.0" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f0fe992c..29341d26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ dynamic = ["version"] [tool.poetry] name = "hume" -version = "0.13.14" +version = "0.14.0" description = "A Python SDK for Hume AI" readme = "README.md" authors = [] diff --git a/src/hume/core/client_wrapper.py b/src/hume/core/client_wrapper.py index df93ad4f..b22e8828 100644 --- a/src/hume/core/client_wrapper.py +++ b/src/hume/core/client_wrapper.py @@ -28,12 +28,12 @@ def get_headers(self) -> typing.Dict[str, str]: import platform headers: typing.Dict[str, str] = { - "User-Agent": "hume/0.13.14", + "User-Agent": "hume/0.14.0", "X-Fern-Language": "Python", "X-Fern-Runtime": f"python/{platform.python_version()}", "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", "X-Fern-SDK-Name": "hume", - "X-Fern-SDK-Version": "0.13.14", + "X-Fern-SDK-Version": "0.14.0", **(self.get_custom_headers() or {}), } if self.api_key is not None: