Skip to content

Commit

Permalink
Release 0.1.31
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 13, 2025
1 parent e11f4ac commit 9725d10
Show file tree
Hide file tree
Showing 10 changed files with 10 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.30"
version = "0.1.31"
description = ""
readme = "README.md"
authors = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"bedrock",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"anthropic",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"bedrock",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
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.30",
"X-Fern-SDK-Version": "0.1.31",
}
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 @@ -9,6 +9,7 @@
"bedrock",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"anthropic",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"bedrock",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"bedrock",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down
1 change: 1 addition & 0 deletions src/letta_client/types/llm_config_model_endpoint_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"anthropic",
"cohere",
"google_ai",
"google_vertex",
"azure",
"groq",
"ollama",
Expand Down

0 comments on commit 9725d10

Please sign in to comment.