diff --git a/.fern/metadata.json b/.fern/metadata.json index 008a4d7f..543022f4 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -11,6 +11,6 @@ "exported_class_name": "Zep" } }, - "originGitCommit": "f5d305f39ed149d17c3af28e057c82f3801d28f2", - "sdkVersion": "4.0.0a2" + "originGitCommit": "93a98979696249bf014a0bf648ebf5cb10edffdd", + "sdkVersion": "4.0.0a3" } \ No newline at end of file diff --git a/.fern/replay.lock b/.fern/replay.lock index 71f84a34..31105e04 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -18,5 +18,11 @@ generations: cli_version: unknown generator_versions: fernapi/fern-python-sdk: 4.64.1 -current_generation: 6c31f55ae0a835df34278bf28c57bd22f6398198 + - commit_sha: 09a01ae94a9a200cca2e9c8056f5453159fcc418 + tree_hash: afe813a8e5c45e7846ac7c6379328b5c56675e72 + timestamp: 2026-08-25T14:59:24.887Z + cli_version: unknown + generator_versions: + fernapi/fern-python-sdk: 4.64.1 +current_generation: 09a01ae94a9a200cca2e9c8056f5453159fcc418 patches: [] diff --git a/pyproject.toml b/pyproject.toml index 25217053..a500743f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [project] name = "zep-cloud" dynamic = ["version"] -version = "4.0.0a2" +version = "4.0.0a3" [tool.poetry] name = "zep-cloud" -version = "4.0.0a2" +version = "4.0.0a3" description = "" readme = "README.md" authors = [] diff --git a/src/zep_cloud/core/client_wrapper.py b/src/zep_cloud/core/client_wrapper.py index f71e8a5f..1393e21b 100644 --- a/src/zep_cloud/core/client_wrapper.py +++ b/src/zep_cloud/core/client_wrapper.py @@ -27,12 +27,12 @@ def get_headers(self) -> typing.Dict[str, str]: import platform headers: typing.Dict[str, str] = { - "User-Agent": "zep-cloud/4.0.0a2", + "User-Agent": "zep-cloud/4.0.0a3", "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": "zep-cloud", - "X-Fern-SDK-Version": "4.0.0a2", + "X-Fern-SDK-Version": "4.0.0a3", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Api-Key {self.api_key}"