Skip to content

Commit

Permalink
Release 0.1.28
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 12, 2025
1 parent ccc70ce commit 0da9d3e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "letta-client"

[tool.poetry]
name = "letta-client"
version = "0.1.27"
version = "0.1.28"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/letta_client/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "letta-client",
"X-Fern-SDK-Version": "0.1.27",
"X-Fern-SDK-Version": "0.1.28",
}
if self.token is not None:
headers["Authorization"] = f"Bearer {self.token}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

CompletionCreateParamsNonStreamingModel = typing.Union[
str,
typing.Literal["o3-mini"],
typing.Literal["o3-mini-2025-01-31"],
typing.Literal["o1"],
typing.Literal["o1-2024-12-17"],
typing.Literal["o1-preview"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

CompletionCreateParamsStreamingModel = typing.Union[
str,
typing.Literal["o3-mini"],
typing.Literal["o3-mini-2025-01-31"],
typing.Literal["o1"],
typing.Literal["o1-2024-12-17"],
typing.Literal["o1-preview"],
Expand Down

0 comments on commit 0da9d3e

Please sign in to comment.