Skip to content

Commit 73c954a

Browse files
SDK regeneration
1 parent 5ab7fcb commit 73c954a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
"numpydoc": ">=1.7.0,<2.0.0"
2323
}
2424
},
25-
"sdkVersion": "0.0.0"
25+
"sdkVersion": "0.1.20"
2626
}

poetry.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 = "truefoundry-sdk"
7-
version = "0.0.0"
7+
version = "0.1.20"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/truefoundry_sdk/core/client_wrapper.py

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

2626
headers: typing.Dict[str, str] = {
27-
"User-Agent": "truefoundry-sdk/0.0.0",
27+
"User-Agent": "truefoundry-sdk/0.1.20",
2828
"X-Fern-Language": "Python",
2929
"X-Fern-Runtime": f"python/{platform.python_version()}",
3030
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3131
"X-Fern-SDK-Name": "truefoundry-sdk",
32-
"X-Fern-SDK-Version": "0.0.0",
32+
"X-Fern-SDK-Version": "0.1.20",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
headers["Authorization"] = f"Bearer {self._get_api_key()}"

src/truefoundry_sdk/types/ml_repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class MlRepo(UniversalBaseModel):
2222
Created At
2323
"""
2424

25-
account_id: str
25+
account_id: typing.Optional[str] = None
2626
id: str = pydantic.Field()
2727
"""
2828
Experiment Id

0 commit comments

Comments
 (0)