We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2377d25 commit 17ca2eeCopy full SHA for 17ca2ee
pyproject.toml
@@ -3,7 +3,7 @@ name = "truefoundry-sdk"
3
4
[tool.poetry]
5
name = "truefoundry-sdk"
6
-version = "0.0.0"
+version = "0.0.16"
7
description = ""
8
readme = "README.md"
9
authors = []
src/truefoundry_sdk/core/client_wrapper.py
@@ -20,10 +20,10 @@ def __init__(
20
21
def get_headers(self) -> typing.Dict[str, str]:
22
headers: typing.Dict[str, str] = {
23
- "User-Agent": "truefoundry-sdk/0.0.0",
+ "User-Agent": "truefoundry-sdk/0.0.16",
24
"X-Fern-Language": "Python",
25
"X-Fern-SDK-Name": "truefoundry-sdk",
26
- "X-Fern-SDK-Version": "0.0.0",
+ "X-Fern-SDK-Version": "0.0.16",
27
}
28
api_key = self._get_api_key()
29
if api_key is not None:
0 commit comments