Skip to content

Commit ea3c214

Browse files
committed
Release 0.1.10
1 parent 358b924 commit ea3c214

File tree

211 files changed

+1804
-330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+1804
-330
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A full reference for this library is available [here](./reference.md).
2020
Instantiate and use the client with the following:
2121

2222
```python
23-
from letta import Letta
23+
from letta_client import Letta
2424

2525
client = Letta(
2626
token="YOUR_TOKEN",
@@ -37,7 +37,7 @@ The SDK also exports an `async` client so that you can make non-blocking calls t
3737
```python
3838
import asyncio
3939

40-
from letta import AsyncLetta
40+
from letta_client import AsyncLetta
4141

4242
client = AsyncLetta(
4343
token="YOUR_TOKEN",
@@ -59,7 +59,7 @@ When the API returns a non-success status code (4xx or 5xx response), a subclass
5959
will be thrown.
6060

6161
```python
62-
from letta.core.api_error import ApiError
62+
from letta_client.core.api_error import ApiError
6363

6464
try:
6565
client.tools.create(...)
@@ -73,7 +73,7 @@ except ApiError as e:
7373
The SDK supports streaming responses, as well, the response will be a generator that you can loop over.
7474

7575
```python
76-
from letta import Letta, MessageCreate
76+
from letta_client import Letta, MessageCreate
7777

7878
client = Letta(
7979
token="YOUR_TOKEN",
@@ -119,7 +119,7 @@ The SDK defaults to a 60 second timeout. You can configure this with a timeout o
119119

120120
```python
121121

122-
from letta import Letta
122+
from letta_client import Letta
123123

124124
client = Letta(
125125
...,
@@ -139,7 +139,7 @@ You can override the `httpx` client to customize it for your use-case. Some comm
139139
and transports.
140140
```python
141141
import httpx
142-
from letta import Letta
142+
from letta_client import Letta
143143

144144
client = Letta(
145145
...,

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "letta-client"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -24,7 +24,7 @@ classifiers = [
2424
"Typing :: Typed"
2525
]
2626
packages = [
27-
{ include = "letta", from = "src"}
27+
{ include = "letta_client", from = "src"}
2828
]
2929

3030
[project.urls]

0 commit comments

Comments
 (0)