We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5720b2 commit dfb7ff4Copy full SHA for dfb7ff4
pyproject.toml
@@ -3,7 +3,7 @@ name = "truefoundry-sdk"
3
4
[tool.poetry]
5
name = "truefoundry-sdk"
6
-version = "0.0.0"
+version = "0.1.7"
7
description = ""
8
readme = "README.md"
9
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.7",
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.7",
29
**(self.get_custom_headers() or {}),
30
}
31
headers["Authorization"] = f"Bearer {self._get_api_key()}"
0 commit comments