We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71d7690 commit cb94834Copy full SHA for cb94834
pyproject.toml
@@ -4,7 +4,7 @@ dynamic = ["version"]
4
5
[tool.poetry]
6
name = "truefoundry-sdk"
7
-version = "0.0.0"
+version = "0.1.17"
8
description = ""
9
readme = "README.md"
10
authors = []
src/truefoundry_sdk/core/client_wrapper.py
@@ -22,10 +22,10 @@ def __init__(
22
23
def get_headers(self) -> typing.Dict[str, str]:
24
headers: typing.Dict[str, str] = {
25
- "User-Agent": "truefoundry-sdk/0.0.0",
+ "User-Agent": "truefoundry-sdk/0.1.17",
26
"X-Fern-Language": "Python",
27
"X-Fern-SDK-Name": "truefoundry-sdk",
28
- "X-Fern-SDK-Version": "0.0.0",
+ "X-Fern-SDK-Version": "0.1.17",
29
**(self.get_custom_headers() or {}),
30
}
31
headers["Authorization"] = f"Bearer {self._get_api_key()}"
0 commit comments