Skip to content

Commit 85cfef2

Browse files
committed
Release 0.1.104
1 parent 7ea5d3c commit 85cfef2

File tree

4 files changed

+126
-264
lines changed

4 files changed

+126
-264
lines changed

pyproject.toml

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

44
[tool.poetry]
55
name = "letta-client"
6-
version = "0.1.103"
6+
version = "0.1.104"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

+18-74
Original file line numberDiff line numberDiff line change
@@ -3537,7 +3537,7 @@ client.groups.retrieve(
35373537
</dl>
35383538
</details>
35393539

3540-
<details><summary><code>client.groups.<a href="src/letta_client/groups/client.py">modify_group</a>(...)</code></summary>
3540+
<details><summary><code>client.groups.<a href="src/letta_client/groups/client.py">delete</a>(...)</code></summary>
35413541
<dl>
35423542
<dd>
35433543

@@ -3549,7 +3549,7 @@ client.groups.retrieve(
35493549
<dl>
35503550
<dd>
35513551

3552-
Create a new multi-agent group with the specified configuration.
3552+
Delete a multi-agent group.
35533553
</dd>
35543554
</dl>
35553555
</dd>
@@ -3569,7 +3569,7 @@ from letta_client import Letta
35693569
client = Letta(
35703570
token="YOUR_TOKEN",
35713571
)
3572-
client.groups.modify_group(
3572+
client.groups.delete(
35733573
group_id="group_id",
35743574
)
35753575

@@ -3595,46 +3595,6 @@ client.groups.modify_group(
35953595
<dl>
35963596
<dd>
35973597

3598-
**project:** `typing.Optional[str]`
3599-
3600-
</dd>
3601-
</dl>
3602-
3603-
<dl>
3604-
<dd>
3605-
3606-
**agent_ids:** `typing.Optional[typing.Sequence[str]]`
3607-
3608-
</dd>
3609-
</dl>
3610-
3611-
<dl>
3612-
<dd>
3613-
3614-
**description:** `typing.Optional[str]`
3615-
3616-
</dd>
3617-
</dl>
3618-
3619-
<dl>
3620-
<dd>
3621-
3622-
**manager_config:** `typing.Optional[GroupUpdateManagerConfig]`
3623-
3624-
</dd>
3625-
</dl>
3626-
3627-
<dl>
3628-
<dd>
3629-
3630-
**shared_block_ids:** `typing.Optional[typing.Sequence[str]]`
3631-
3632-
</dd>
3633-
</dl>
3634-
3635-
<dl>
3636-
<dd>
3637-
36383598
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
36393599

36403600
</dd>
@@ -3647,7 +3607,7 @@ client.groups.modify_group(
36473607
</dl>
36483608
</details>
36493609

3650-
<details><summary><code>client.groups.<a href="src/letta_client/groups/client.py">delete</a>(...)</code></summary>
3610+
<details><summary><code>client.groups.<a href="src/letta_client/groups/client.py">modify</a>(...)</code></summary>
36513611
<dl>
36523612
<dd>
36533613

@@ -3659,7 +3619,7 @@ client.groups.modify_group(
36593619
<dl>
36603620
<dd>
36613621

3662-
Delete a multi-agent group.
3622+
Create a new multi-agent group with the specified configuration.
36633623
</dd>
36643624
</dl>
36653625
</dd>
@@ -3679,7 +3639,7 @@ from letta_client import Letta
36793639
client = Letta(
36803640
token="YOUR_TOKEN",
36813641
)
3682-
client.groups.delete(
3642+
client.groups.modify(
36833643
group_id="group_id",
36843644
)
36853645

@@ -3705,55 +3665,39 @@ client.groups.delete(
37053665
<dl>
37063666
<dd>
37073667

3708-
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
3668+
**project:** `typing.Optional[str]`
37093669

37103670
</dd>
37113671
</dl>
3712-
</dd>
3713-
</dl>
37143672

3673+
<dl>
3674+
<dd>
37153675

3676+
**agent_ids:** `typing.Optional[typing.Sequence[str]]`
3677+
37163678
</dd>
37173679
</dl>
3718-
</details>
37193680

3720-
<details><summary><code>client.groups.<a href="src/letta_client/groups/client.py">modify</a>(...)</code></summary>
37213681
<dl>
37223682
<dd>
37233683

3724-
#### 🔌 Usage
3725-
3726-
<dl>
3727-
<dd>
3684+
**description:** `typing.Optional[str]`
3685+
3686+
</dd>
3687+
</dl>
37283688

37293689
<dl>
37303690
<dd>
37313691

3732-
```python
3733-
from letta_client import Letta
3734-
3735-
client = Letta(
3736-
token="YOUR_TOKEN",
3737-
)
3738-
client.groups.modify(
3739-
group_id="group_id",
3740-
)
3741-
3742-
```
3743-
</dd>
3744-
</dl>
3692+
**manager_config:** `typing.Optional[GroupUpdateManagerConfig]`
3693+
37453694
</dd>
37463695
</dl>
37473696

3748-
#### ⚙️ Parameters
3749-
37503697
<dl>
37513698
<dd>
37523699

3753-
<dl>
3754-
<dd>
3755-
3756-
**group_id:** `str`
3700+
**shared_block_ids:** `typing.Optional[typing.Sequence[str]]`
37573701

37583702
</dd>
37593703
</dl>

src/letta_client/core/client_wrapper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "letta-client",
19-
"X-Fern-SDK-Version": "0.1.103",
19+
"X-Fern-SDK-Version": "0.1.104",
2020
}
2121
if self.token is not None:
2222
headers["Authorization"] = f"Bearer {self.token}"

0 commit comments

Comments
 (0)