Skip to content

Commit 21bc763

Browse files
committed
SDK regeneration
1 parent 91440cb commit 21bc763

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ftruefoundry%2Ftruefoundry-python-sdk)
44
[![pypi](https://img.shields.io/pypi/v/truefoundry-sdk)](https://pypi.python.org/pypi/truefoundry-sdk)
5-
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/truefoundry/truefoundry-python-sdk)
65

76
The Truefoundry Python library provides convenient access to the Truefoundry API from Python.
87

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "truefoundry-sdk"
33

44
[tool.poetry]
55
name = "truefoundry-sdk"
6-
version = "0.0.0"
6+
version = "0.1.0"
77
description = ""
88
readme = "README.md"
99
authors = []

src/truefoundry_sdk/core/client_wrapper.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def __init__(
2020

2121
def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
23-
"User-Agent": "truefoundry-sdk/0.0.0",
23+
"User-Agent": "truefoundry-sdk/0.1.0",
2424
"X-Fern-Language": "Python",
2525
"X-Fern-SDK-Name": "truefoundry-sdk",
26-
"X-Fern-SDK-Version": "0.0.0",
26+
"X-Fern-SDK-Version": "0.1.0",
2727
}
2828
headers["Authorization"] = f"Bearer {self._get_api_key()}"
2929
return headers

0 commit comments

Comments
 (0)