diff --git a/pyproject.toml b/pyproject.toml index 889c0e7..766ac30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gooeyai" -version = "0.0.1-beta14" +version = "0.0.1-beta15" description = "" readme = "README.md" authors = [] diff --git a/src/gooey/core/client_wrapper.py b/src/gooey/core/client_wrapper.py index ab26b2a..336dbb2 100644 --- a/src/gooey/core/client_wrapper.py +++ b/src/gooey/core/client_wrapper.py @@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta14", + "X-Fern-SDK-Version": "0.0.1-beta15", } headers["Authorization"] = f"Bearer {self._get_api_key()}" return headers