Skip to content

Commit 4787939

Browse files
🌿 Fern Regeneration -- February 10, 2026 (#468)
Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 19ab73d commit 4787939

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@
6464
}
6565
]
6666
},
67-
"sdkVersion": "0.13.7"
67+
"sdkVersion": "0.13.8"
6868
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "hume"
7-
version = "0.13.7"
7+
version = "0.13.8"
88
description = "A Python SDK for Hume AI"
99
readme = "README.md"
1010
authors = []

src/hume/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ def get_headers(self) -> typing.Dict[str, str]:
2525
import platform
2626

2727
headers: typing.Dict[str, str] = {
28-
"User-Agent": "hume/0.13.7",
28+
"User-Agent": "hume/0.13.8",
2929
"X-Fern-Language": "Python",
3030
"X-Fern-Runtime": f"python/{platform.python_version()}",
3131
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3232
"X-Fern-SDK-Name": "hume",
33-
"X-Fern-SDK-Version": "0.13.7",
33+
"X-Fern-SDK-Version": "0.13.8",
3434
**(self.get_custom_headers() or {}),
3535
}
3636
if self.api_key is not None:

0 commit comments

Comments
 (0)