letta-client 1.0.0a10__py3-none-any.whl → 1.0.0a12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of letta-client might be problematic. Click here for more details.
- letta_client/_client.py +28 -1
- letta_client/_streaming.py +44 -8
- letta_client/_version.py +1 -1
- letta_client/resources/__init__.py +14 -0
- letta_client/resources/agents/agents.py +0 -8
- letta_client/resources/agents/blocks.py +15 -17
- letta_client/resources/agents/files.py +10 -13
- letta_client/resources/agents/folders.py +10 -13
- letta_client/resources/agents/messages.py +14 -4
- letta_client/resources/agents/tools.py +10 -13
- letta_client/resources/archives.py +10 -12
- letta_client/resources/batches/batches.py +10 -12
- letta_client/resources/batches/messages.py +11 -14
- letta_client/resources/blocks/blocks.py +19 -22
- letta_client/resources/folders/agents.py +10 -13
- letta_client/resources/folders/files.py +9 -12
- letta_client/resources/folders/folders.py +10 -12
- letta_client/resources/groups/groups.py +1 -17
- letta_client/resources/identities/blocks.py +7 -7
- letta_client/resources/identities/identities.py +11 -29
- letta_client/resources/mcp_servers/__init__.py +47 -0
- letta_client/resources/mcp_servers/mcp_servers.py +1165 -0
- letta_client/resources/mcp_servers/refresh.py +192 -0
- letta_client/resources/mcp_servers/tools.py +351 -0
- letta_client/resources/runs/runs.py +11 -13
- letta_client/resources/steps/steps.py +1 -9
- letta_client/resources/tags.py +10 -13
- letta_client/resources/tools.py +14 -16
- letta_client/types/__init__.py +13 -4
- letta_client/types/agent_create_params.py +1 -5
- letta_client/types/agents/__init__.py +2 -3
- letta_client/types/agents/file_list_response.py +14 -3
- letta_client/types/agents/folder_list_response.py +7 -3
- letta_client/types/agents/letta_streaming_response.py +70 -0
- letta_client/types/agents/tool_list_response.py +10 -0
- letta_client/types/archive_list_response.py +10 -0
- letta_client/types/batch_list_response.py +10 -0
- letta_client/types/batches/__init__.py +1 -0
- letta_client/types/batches/message_list_response.py +12 -0
- letta_client/types/{block_list_response.py → block_response.py} +5 -5
- letta_client/types/folder_list_response.py +10 -0
- letta_client/types/folders/agent_list_response.py +2 -1
- letta_client/types/folders/file_list_response.py +7 -4
- letta_client/types/group_create_params.py +1 -5
- letta_client/types/group_modify_params.py +1 -5
- letta_client/types/identities/__init__.py +0 -1
- letta_client/types/identity_create_params.py +1 -5
- letta_client/types/identity_list_response.py +10 -0
- letta_client/types/identity_upsert_params.py +1 -5
- letta_client/types/mcp_server_create_params.py +67 -0
- letta_client/types/mcp_server_create_response.py +74 -0
- letta_client/types/mcp_server_list_response.py +86 -0
- letta_client/types/mcp_server_modify_params.py +76 -0
- letta_client/types/mcp_server_modify_response.py +74 -0
- letta_client/types/mcp_server_retrieve_response.py +74 -0
- letta_client/types/mcp_servers/__init__.py +8 -0
- letta_client/types/mcp_servers/refresh_trigger_params.py +12 -0
- letta_client/types/mcp_servers/tool_list_response.py +10 -0
- letta_client/types/mcp_servers/tool_run_params.py +15 -0
- letta_client/types/mcp_servers/tool_run_response.py +43 -0
- letta_client/types/run_list_response.py +10 -0
- letta_client/types/step_list_params.py +1 -5
- letta_client/types/tag_list_response.py +2 -1
- letta_client/types/tool.py +28 -28
- letta_client/types/tool_list_response.py +10 -0
- {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a12.dist-info}/METADATA +1 -1
- {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a12.dist-info}/RECORD +69 -52
- letta_client/types/agents/block_list_response.py +0 -63
- letta_client/types/agents/block_modify_response.py +0 -63
- letta_client/types/agents/block_retrieve_response.py +0 -63
- letta_client/types/block_create_response.py +0 -63
- letta_client/types/block_modify_response.py +0 -63
- letta_client/types/block_retrieve_response.py +0 -63
- letta_client/types/identities/block_list_response.py +0 -63
- {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a12.dist-info}/WHEEL +0 -0
- {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a12.dist-info}/licenses/LICENSE +0 -0
letta_client/types/tool.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
import typing
|
|
4
|
+
import inspect
|
|
4
5
|
from abc import abstractmethod
|
|
6
|
+
from typing import Dict, List, Optional
|
|
5
7
|
from textwrap import dedent
|
|
6
|
-
import inspect
|
|
7
|
-
import typing
|
|
8
8
|
|
|
9
|
-
from pydantic import Field as FieldInfo
|
|
9
|
+
from pydantic import Field, Field as FieldInfo
|
|
10
10
|
|
|
11
11
|
from .._models import BaseModel
|
|
12
12
|
from .tool_type import ToolType
|
|
@@ -98,30 +98,30 @@ class BaseTool(Tool):
|
|
|
98
98
|
pass
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
@model_validator(mode="after")
|
|
102
|
-
def no_self_in_run_source(self) -> "BaseTool":
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
101
|
+
# @model_validator(mode="after")
|
|
102
|
+
# def no_self_in_run_source(self) -> "BaseTool":
|
|
103
|
+
# """
|
|
104
|
+
# Validate that the provided implementation does not reference `self` in the
|
|
105
|
+
# `run` method implementation.
|
|
106
|
+
|
|
107
|
+
# This check is performed after the model is created, so `self` is guaranteed
|
|
108
|
+
# to be set.
|
|
109
|
+
|
|
110
|
+
# If `self` is found in the source code of the `run` method, a `ValueError` is
|
|
111
|
+
# raised with a message pointing to the line and value of the offending code.
|
|
112
|
+
# """
|
|
113
|
+
# source_code = self.get_source_code()
|
|
114
|
+
# if "self." in source_code:
|
|
115
|
+
# raise_on_line, line_value = None, None
|
|
116
|
+
# for i, line in enumerate(source_code.splitlines()):
|
|
117
|
+
# if "self." in line:
|
|
118
|
+
# raise_on_line, line_value = i+1, line
|
|
119
|
+
# break;
|
|
120
|
+
# raise ValueError(
|
|
121
|
+
# f"Detected reference to 'self' in line {raise_on_line} of implementation, " +
|
|
122
|
+
# f"which is not allowed:\n\n{line_value}\n\n" +
|
|
123
|
+
# f"Please pass in the arguments directly to run() instead.")
|
|
124
|
+
# return self
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
def get_source_code(self) -> str:
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
from typing_extensions import TypeAlias
|
|
5
|
+
|
|
6
|
+
from .tool import Tool
|
|
7
|
+
|
|
8
|
+
__all__ = ["ToolListResponse"]
|
|
9
|
+
|
|
10
|
+
ToolListResponse: TypeAlias = List[Tool]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a12
|
|
4
4
|
Summary: The official Python library for the letta API
|
|
5
5
|
Project-URL: Homepage, https://github.com/letta-ai/letta-python
|
|
6
6
|
Project-URL: Repository, https://github.com/letta-ai/letta-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
letta_client/__init__.py,sha256=qGnQpgLF2IeCkTBNc7P5VwhcqjKS_Gs90jsb2et5a-w,2715
|
|
2
2
|
letta_client/_base_client.py,sha256=baHmwqnnDXr5ZRC9OXhVBA8LT3B8nD_vlRHwlWkDz0k,67053
|
|
3
|
-
letta_client/_client.py,sha256=
|
|
3
|
+
letta_client/_client.py,sha256=rzsi1QSK3MiXbd1YrTj9QPJM0jj63ac2fcOW1DuzFJ4,27625
|
|
4
4
|
letta_client/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
letta_client/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
letta_client/_exceptions.py,sha256=30Z6OdknKex-stJOwtC_5naV8ozjHcX7-IIAqvKB0xY,3218
|
|
@@ -9,9 +9,9 @@ letta_client/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
|
|
|
9
9
|
letta_client/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
10
|
letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,1094
|
|
11
11
|
letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
|
|
12
|
-
letta_client/_streaming.py,sha256=
|
|
12
|
+
letta_client/_streaming.py,sha256=IhQrxmf7HMjkKLynITPcJBzqg30SI5e2O35zFOP1AMk,11283
|
|
13
13
|
letta_client/_types.py,sha256=dz_siM5FFPTKJs3m9q2ocNjY26xAZ98zPp7sQlsSm0U,7242
|
|
14
|
-
letta_client/_version.py,sha256=
|
|
14
|
+
letta_client/_version.py,sha256=IVEx_znUDX1HmaG-v2Crqa0QigqT6wzwwxCGmx2-Q94,173
|
|
15
15
|
letta_client/pagination.py,sha256=lQ8asLHRqlok2V6OLrTR6TVgvvqFxvYm5IFJSNYFXxE,7967
|
|
16
16
|
letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
letta_client/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -27,56 +27,60 @@ letta_client/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mc
|
|
|
27
27
|
letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
28
|
letta_client/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
29
29
|
letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
|
-
letta_client/resources/__init__.py,sha256=
|
|
31
|
-
letta_client/resources/archives.py,sha256=
|
|
32
|
-
letta_client/resources/tags.py,sha256=
|
|
33
|
-
letta_client/resources/tools.py,sha256=
|
|
30
|
+
letta_client/resources/__init__.py,sha256=5f9u41Tj5QuVrmX5lhI5zDt6FG_Qxzm4gIRnw4cidfU,6520
|
|
31
|
+
letta_client/resources/archives.py,sha256=_YWmXSr_GkmGCDjfGU_EdSIFB9e0qC_BeCg0EF2YM70,22484
|
|
32
|
+
letta_client/resources/tags.py,sha256=vuNCEAN0xZ_98X5w4Q95oOfGmNlC5A5ZQYrDfAuv07I,8458
|
|
33
|
+
letta_client/resources/tools.py,sha256=LxGMgcPoACs-rtaEfKs_RNSluLPA0kjoMX2oBZvSdY4,70176
|
|
34
34
|
letta_client/resources/agents/__init__.py,sha256=kMBB1oA9e0oxT91T6Ck4AT-BKIBFQPKTENALxMNHN3g,3265
|
|
35
|
-
letta_client/resources/agents/agents.py,sha256=
|
|
36
|
-
letta_client/resources/agents/blocks.py,sha256=
|
|
37
|
-
letta_client/resources/agents/files.py,sha256=
|
|
38
|
-
letta_client/resources/agents/folders.py,sha256=
|
|
35
|
+
letta_client/resources/agents/agents.py,sha256=UolbAMRbQ5VFvWhus5tvnVceGQ08YZBROK8x2l0-NpM,81800
|
|
36
|
+
letta_client/resources/agents/blocks.py,sha256=NUFcRR5A4yGwplmy_ldSTP_rNkKHuTjs88xOL3n2zqk,27944
|
|
37
|
+
letta_client/resources/agents/files.py,sha256=Xaj7R3ye4PqtqrMejFnWh47Hvj5OJpJvS1H-RSHMpb8,20676
|
|
38
|
+
letta_client/resources/agents/folders.py,sha256=dkHlFE_oZ3dcXXhmOkqBzglrpLUSEeyXGH00qIcM0pA,15727
|
|
39
39
|
letta_client/resources/agents/groups.py,sha256=Mre1J9LdVE78mW2R-xxtd66FY8_aFK-rRMglE7zP0Hg,8865
|
|
40
|
-
letta_client/resources/agents/messages.py,sha256=
|
|
41
|
-
letta_client/resources/agents/tools.py,sha256=
|
|
40
|
+
letta_client/resources/agents/messages.py,sha256=0Z72_G0b7HVo0VHUE46SF19ZIcOmnjB1rc3z0m9AaaU,62684
|
|
41
|
+
letta_client/resources/agents/tools.py,sha256=FO5HeZTBUU6lB1cmuQXonIMkUQTLmEJfjRirbRe0qYo,20788
|
|
42
42
|
letta_client/resources/batches/__init__.py,sha256=zix5YRFFCfQpPx3_vc1R2MbjLKYKJB5Ex-F_mYeVrpc,1041
|
|
43
|
-
letta_client/resources/batches/batches.py,sha256=
|
|
44
|
-
letta_client/resources/batches/messages.py,sha256=
|
|
43
|
+
letta_client/resources/batches/batches.py,sha256=BSC9Qh806UWUWKoMgglbRYnH0jc1XhnEuDkQxX2cHkg,19850
|
|
44
|
+
letta_client/resources/batches/messages.py,sha256=fcZV_hOI1YJGZCYxWrIa8gH330elSIPrUx8bY9v-L0M,8776
|
|
45
45
|
letta_client/resources/blocks/__init__.py,sha256=bdVcjGQZ2G8IPxXUtEIHRfJA0gopCS-rQGrxxjZY8L8,1002
|
|
46
46
|
letta_client/resources/blocks/agents.py,sha256=nbmtwjZafr2ktTjybTUjIVL_BWiJfgBsQ9cwPHNgp1Y,10817
|
|
47
|
-
letta_client/resources/blocks/blocks.py,sha256=
|
|
47
|
+
letta_client/resources/blocks/blocks.py,sha256=QIajjVwT8Jlj9JCzZQWoxIhvn-mdsBdPVLWcoGHetzU,37986
|
|
48
48
|
letta_client/resources/folders/__init__.py,sha256=ANqxbwoospe99HnVPeeDt2lDyxG5m60_9QPTbehdRjs,1452
|
|
49
|
-
letta_client/resources/folders/agents.py,sha256=
|
|
50
|
-
letta_client/resources/folders/files.py,sha256=
|
|
51
|
-
letta_client/resources/folders/folders.py,sha256=
|
|
49
|
+
letta_client/resources/folders/agents.py,sha256=0qd5nMcNqVQMNNGMfQLAdKm01BpXVdoXSRcTPQRjZL8,8524
|
|
50
|
+
letta_client/resources/folders/files.py,sha256=nNtsVaok4mIxkNWuW-coZipFQGLGemkuVvRS6p0TNvo,17989
|
|
51
|
+
letta_client/resources/folders/folders.py,sha256=9WGYvy0b-3EwLLh87K5XoW2eqvPUZ35R8XrYNJ9svxQ,29045
|
|
52
52
|
letta_client/resources/groups/__init__.py,sha256=XRg7EgECFtIm8h8RjGcNEJyiZpw6XJqoG0aJwGsUADw,1028
|
|
53
|
-
letta_client/resources/groups/groups.py,sha256=
|
|
53
|
+
letta_client/resources/groups/groups.py,sha256=ieqdZUSFtm7-svHEMFQ85tt4VSGJt45lyVGgSTRf8Sw,27542
|
|
54
54
|
letta_client/resources/groups/messages.py,sha256=UxE6cN1YizDLmo7EdcxWzIVXHIZL-n-PPWaPtM215IY,45425
|
|
55
55
|
letta_client/resources/identities/__init__.py,sha256=DaxkyrCra0xPWgEyZVRgVapuasUybvZokYssYq_QnyM,2006
|
|
56
56
|
letta_client/resources/identities/agents.py,sha256=KeejDcc4xDrqCQMV79QvK1VDRTCSIS4GqvgQUCFQRIc,9709
|
|
57
|
-
letta_client/resources/identities/blocks.py,sha256=
|
|
58
|
-
letta_client/resources/identities/identities.py,sha256=
|
|
57
|
+
letta_client/resources/identities/blocks.py,sha256=JnvtUXjXQe_SyWlLqljAAc8tZ68rLj-3Hof4ccca2YA,8720
|
|
58
|
+
letta_client/resources/identities/identities.py,sha256=lAlBDdNBeFxsVnXCC-G1y1I5q8gbj1ARbeXewb_fADQ,37012
|
|
59
59
|
letta_client/resources/identities/properties.py,sha256=8GcBy9r9DAuTmvZdlkFcTlfH_hbSNpzD0O_VPRrx2bQ,6483
|
|
60
|
+
letta_client/resources/mcp_servers/__init__.py,sha256=XWX7T21d7jL5dtYvIcx8jqXwO704JmpIltAd0Ed8RKU,1505
|
|
61
|
+
letta_client/resources/mcp_servers/mcp_servers.py,sha256=Mvwj9-fLePcDKCVYZrWwT0B8vNzp3u97rlCOlBw2760,45078
|
|
62
|
+
letta_client/resources/mcp_servers/refresh.py,sha256=HH8UD2jMRi0YS-RYCJZzktf_dWnhg4SeMqTnQgLOODI,6934
|
|
63
|
+
letta_client/resources/mcp_servers/tools.py,sha256=YGTeTVXHSknvXJSrUOgD0V6Na87LmwTit8jvUcHxibE,13294
|
|
60
64
|
letta_client/resources/models/__init__.py,sha256=Tvswac6gTvPG6C45MOrEYYjWY6dEdWagxey_P6fgYkU,1054
|
|
61
65
|
letta_client/resources/models/embeddings.py,sha256=1y7h-pd_LW7Dyf9q_7CV1MF6KVfSRHCfLlPuaM5B-KE,5238
|
|
62
66
|
letta_client/resources/models/models.py,sha256=hL_X-WVFOIzxpbnfgeAU-yPTSOn0mj5YTaiqKKcVIL4,8217
|
|
63
67
|
letta_client/resources/runs/__init__.py,sha256=Oz3VS4QWQ-W1ZkMdw1EuuH33QdUIgyxFhtAROdmI7RQ,1876
|
|
64
68
|
letta_client/resources/runs/messages.py,sha256=BSAvj0TIFD5rHlIpRXrFXED4plyN1ZTtODzFkyf7R7Q,13665
|
|
65
|
-
letta_client/resources/runs/runs.py,sha256=
|
|
69
|
+
letta_client/resources/runs/runs.py,sha256=x79KGrUTCePKG1XYhn4fQgDrZRyqgyfdiOSLSzplceA,16614
|
|
66
70
|
letta_client/resources/runs/steps.py,sha256=hR33PtnoHUFrxLSj8-Rb3kAMRebyzlYjaSxqn8vyEXc,7981
|
|
67
71
|
letta_client/resources/runs/usage.py,sha256=rsarShRjn8sylRDfsO2BcM25dk2xGr0Njal9CKbeDgs,5824
|
|
68
72
|
letta_client/resources/steps/__init__.py,sha256=OV3vMIlQtZsrqFyxxdFcdAy4CZHlf2p1ce7F7cncolk,2391
|
|
69
73
|
letta_client/resources/steps/feedback.py,sha256=c6Ph3zVOVQduy4pjuHQWmTOtEITsESmBg6dJ4dP2kt4,7131
|
|
70
74
|
letta_client/resources/steps/messages.py,sha256=rd5ATYa8q40jrGEP908jXZf8jdpVMD_4ACN_JpJj4yo,8935
|
|
71
75
|
letta_client/resources/steps/metrics.py,sha256=_oFTnx8VS1-H4TkBaqWcxuxjjO_SuAdshoUC-PRvJy8,6049
|
|
72
|
-
letta_client/resources/steps/steps.py,sha256
|
|
76
|
+
letta_client/resources/steps/steps.py,sha256=6rNNRNgp0bQYie-FUfQ9hs82tCL_tcj7aHW7p2K9yMk,18204
|
|
73
77
|
letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedgH4TI8swQ,5951
|
|
74
78
|
letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
|
|
75
79
|
letta_client/resources/templates/agents.py,sha256=vc757D2B5BKTz8DoSTepQx1aChV4GFgXArM2cHfXG7s,9351
|
|
76
80
|
letta_client/resources/templates/templates.py,sha256=ATGrBCFSA06XpjR5rbWtXAT4vq66DwnDia5_XcM8z7Q,3695
|
|
77
|
-
letta_client/types/__init__.py,sha256=
|
|
81
|
+
letta_client/types/__init__.py,sha256=17n1efIhPXCKUWjmO0PnQM3dTvEzaj_5m1ku9Shhrok,8923
|
|
78
82
|
letta_client/types/agent_count_response.py,sha256=SdUd1SYP0pwONLc_7_bESZm1mwsgrNP93JiWq47bKdo,198
|
|
79
|
-
letta_client/types/agent_create_params.py,sha256=
|
|
83
|
+
letta_client/types/agent_create_params.py,sha256=vNWwi6vzxhwut0YCcI75-m9T9SYvaOwRju9Bw-XFIrI,7165
|
|
80
84
|
letta_client/types/agent_environment_variable.py,sha256=CDCeL5bHPsx9A_3SE3dPB5x8ceT2JB8FlQRwd1lVlbY,1144
|
|
81
85
|
letta_client/types/agent_export_file_params.py,sha256=Aj_O87Sv-3JUg31wIbWLHpRG4632Yp9YqLztKDqbmuk,523
|
|
82
86
|
letta_client/types/agent_export_file_response.py,sha256=c5eYslclKaFVoEBzrROlKbvKCTvJO7KJ5PBAgFLqJyk,208
|
|
@@ -90,18 +94,17 @@ letta_client/types/agent_type.py,sha256=s3xTJnio45wTIYkWNJotfD2X57Ad-26kQvIEAPtf
|
|
|
90
94
|
letta_client/types/archive.py,sha256=KeykpT5HHZ6ofTXHYVSzgYkGgI9SzdkOAm-59pCNLUU,1207
|
|
91
95
|
letta_client/types/archive_create_params.py,sha256=jgfx7deSjphAjcv6RV9uVAdbg7jEQpRP1CS1axP6hBA,507
|
|
92
96
|
letta_client/types/archive_list_params.py,sha256=UapyvrrCC6WtuCEgDvWGNzYAlF8a38YD2qYP0ANMeNY,1032
|
|
97
|
+
letta_client/types/archive_list_response.py,sha256=xCPMJfPJInYUEHgQ9x7cpkofanDZJs3rdemGWWwgdd0,264
|
|
93
98
|
letta_client/types/archive_modify_params.py,sha256=raXJhi9iABF86a8rEwl211iDBbDRMTojH0e9tiQKCp0,335
|
|
94
99
|
letta_client/types/batch_create_params.py,sha256=L_eoTMfpaApo7kL85FjFMlRR87TXh29yZIoImfE0Igg,2428
|
|
95
100
|
letta_client/types/batch_job.py,sha256=7WqF20P-PN66xtlPV7KKRk45lPa0qEAiiq3jgBCaPp4,2024
|
|
96
101
|
letta_client/types/batch_list_params.py,sha256=bl6BOxOr0eyVktNbxLl9__5tmRXG-dNFBLPlXrCeaNc,845
|
|
102
|
+
letta_client/types/batch_list_response.py,sha256=eOYgKgpo05jSVx_-79YCKQhsj2pdxZ8mEaOBPptrwC8,264
|
|
97
103
|
letta_client/types/block_count_response.py,sha256=rgo7gHSwJn8iQkorR8yoalkwR5cyLrD5le7v3YUM2Vo,198
|
|
98
104
|
letta_client/types/block_create_params.py,sha256=m8XrM0OCCO8aRs9ZDoXV8HmyL2KdBZ6c9yy4Er1CGpo,1335
|
|
99
|
-
letta_client/types/block_create_response.py,sha256=q5cRjSBpbY_RTGBpofRYO5Nhxo9sAIQVDGW6ukcB-bE,1908
|
|
100
105
|
letta_client/types/block_list_params.py,sha256=Earz6lU-V0HDD9V-_YrQhglg_A6UASWJgMaTq0KLpj0,2435
|
|
101
|
-
letta_client/types/block_list_response.py,sha256=9pa244Fu5Gyhxvx2tKS7YtkSQB6zY5ls5KLmiUxfsvM,1904
|
|
102
106
|
letta_client/types/block_modify_params.py,sha256=saLnzB03wPeGPPFd2tgAAfTVbLk0wUNvX5wa3p-jcQg,1461
|
|
103
|
-
letta_client/types/
|
|
104
|
-
letta_client/types/block_retrieve_response.py,sha256=i6AZuOWsYJ0_4zUOTZXWGuItCxQA5wZ6HeA9uBHPCKA,1912
|
|
107
|
+
letta_client/types/block_response.py,sha256=3GscYRRIzBnCtq1D741tavaDpVx9bijKWR2koVitcI4,1865
|
|
105
108
|
letta_client/types/child_tool_rule.py,sha256=9VmfpVcM-VB1v9SY_yN1ABXPDQeZOLfz7o98f8PCde8,1175
|
|
106
109
|
letta_client/types/child_tool_rule_param.py,sha256=x_vGcGiiWl7HVDJGTX6aHfQZBnz6X5UNlqhfYIWJotc,1282
|
|
107
110
|
letta_client/types/conditional_tool_rule.py,sha256=Em5yoc6EYjC5YZxEL_hYdREwtbMLr9PKyqqUsCjyil0,846
|
|
@@ -116,22 +119,24 @@ letta_client/types/folder.py,sha256=jxrRX-mTAWWHu6nGhxM0dfz_DWaKl81YdGC11bjmu_o,
|
|
|
116
119
|
letta_client/types/folder_count_response.py,sha256=BeKkjltHXaCZr9LMeA9uZbX4lvFVUh6Opb_1pddt2UI,200
|
|
117
120
|
letta_client/types/folder_create_params.py,sha256=sJ3iSSQclEQHmwESkpSVhZyEY0ekn99Urk2RIlQoi4I,971
|
|
118
121
|
letta_client/types/folder_list_params.py,sha256=oXb8k3fJywQXnjW_9DE2vKHbVQ3VDuJTa6-fUwLgAgk,931
|
|
122
|
+
letta_client/types/folder_list_response.py,sha256=pCdn2XIbn5F8Aw2Vy2_fEUIYzewxVVDFtBczFGTVi7U,259
|
|
119
123
|
letta_client/types/folder_modify_params.py,sha256=lnw17f57-7kD661OFmymEIrmnD2mE0Vz6CwCt7V-Zic,781
|
|
120
124
|
letta_client/types/group.py,sha256=pHBvXJ1pwFxCCZJIdZr7dkmA5hnfBLJjR2MgcKrgFm4,1574
|
|
121
125
|
letta_client/types/group_count_response.py,sha256=957tbXl5QChGQtuB96Ka0cC-8IXEhWHdt4-2S-FAw9A,198
|
|
122
|
-
letta_client/types/group_create_params.py,sha256=
|
|
126
|
+
letta_client/types/group_create_params.py,sha256=bcUZwegDvRjqucO4b4aodNAv_JIlEy_Y1xzFvTpWF-g,1145
|
|
123
127
|
letta_client/types/group_list_params.py,sha256=37JRsmoS6ZTVCvGzdg2-uXCfxn4zfkuAs7_yuqN8t3E,1050
|
|
124
|
-
letta_client/types/group_modify_params.py,sha256=
|
|
128
|
+
letta_client/types/group_modify_params.py,sha256=U8aovgL3ht4DVCUXWL4CF0KJj2ERsBGZN4_D1zOftRM,2404
|
|
125
129
|
letta_client/types/health_response.py,sha256=q4SqkchWIWVrGLsGeQTjy8qr1BynEKgm2vjCnAg6wfI,218
|
|
126
130
|
letta_client/types/identity.py,sha256=NyVfbNd2-LsHPwowJw04_bxLmKiz6mE54XG-E7T8FVI,970
|
|
127
131
|
letta_client/types/identity_count_response.py,sha256=KGDSczG-xwOpFXjuxivkbF0df7WELT3R4IeBkzW0IE4,204
|
|
128
|
-
letta_client/types/identity_create_params.py,sha256=
|
|
132
|
+
letta_client/types/identity_create_params.py,sha256=N4g_cd6XupzukARThZbscAIvv9weaOf5c8iqmsRWOVg,1101
|
|
129
133
|
letta_client/types/identity_list_params.py,sha256=M5zNhXGSrSZ7PUAe5QYtlTeemvDn213zKBA7m_HsT0A,1124
|
|
134
|
+
letta_client/types/identity_list_response.py,sha256=n8WiHIiX5BOutoKuyqZreiCV8UhzOt8YFyOfbdvYvQU,269
|
|
130
135
|
letta_client/types/identity_modify_params.py,sha256=iBGIPczHJiJr4IcrlKg6-4URsRCIA6as6LoppEkuLQ0,1021
|
|
131
136
|
letta_client/types/identity_property.py,sha256=wI7QIJCpfUBiOeHVnbFH7fN1Vxr0jLoWsomp6vHJ-bc,489
|
|
132
137
|
letta_client/types/identity_property_param.py,sha256=cxsJfRQs8bISHOg_ji7u6L_MD4OaQxCDJ3qhPKPqdlY,566
|
|
133
138
|
letta_client/types/identity_type.py,sha256=Zx2_g64c3_aO7Ta9I6v1-fX9k36V1Rji0sCZ1J0xgRs,223
|
|
134
|
-
letta_client/types/identity_upsert_params.py,sha256=
|
|
139
|
+
letta_client/types/identity_upsert_params.py,sha256=YM4HNEfwXMagm7sJmGwYQSO58h0bBxCYbviwc3zZn5s,1101
|
|
135
140
|
letta_client/types/init_tool_rule.py,sha256=3s2PBplBfjAcjnPX6NaDWpxVpa3fzqhS3M3xeqKCbHs,960
|
|
136
141
|
letta_client/types/init_tool_rule_param.py,sha256=o8CqWIK4_iDTEe99mPmvb0I0rXQtNt7nBC8A5JBR674,986
|
|
137
142
|
letta_client/types/json_object_response_format.py,sha256=fYuhVjIpiT51YqE160hDnvip9FrZmUdDRA6-5BpKIw4,364
|
|
@@ -144,6 +149,12 @@ letta_client/types/llm_config_param.py,sha256=wMQe3gggOikEfRyN30LgQdmsOUAD6IrZTj
|
|
|
144
149
|
letta_client/types/manager_type.py,sha256=DvgmoA49kUmjtRBmfJb8iapLupb-2iy78G1Gw-AbNmg,278
|
|
145
150
|
letta_client/types/max_count_per_step_tool_rule.py,sha256=OF-eF1FdcI48mcpZamFEp6IuII-yhVZ50yYVcF7BTe8,660
|
|
146
151
|
letta_client/types/max_count_per_step_tool_rule_param.py,sha256=__ZUX-0KbIEioPGhHydRvd1q7rATwqusBEvmQElkgec,703
|
|
152
|
+
letta_client/types/mcp_server_create_params.py,sha256=yEJruphvGUJ4b_WPYC6ljrXHZ6tWR039gnyKiIr24bY,1990
|
|
153
|
+
letta_client/types/mcp_server_create_response.py,sha256=3Y9nDSvsuHg6fvZkmOwUEQBI3AwCq08yUzetfoy5dUc,2106
|
|
154
|
+
letta_client/types/mcp_server_list_response.py,sha256=E_ccSgVpsUh8EkZRo85_8zItRSvhuBKUtEeyOHPNliQ,2466
|
|
155
|
+
letta_client/types/mcp_server_modify_params.py,sha256=DxIPmWbqUd3p4TwLF8bYJGakEHusigB_EP75Pt2rcW8,2172
|
|
156
|
+
letta_client/types/mcp_server_modify_response.py,sha256=dx4YS-LWQ8hvddrPdHX91gj0mts6Cqxo06w6AdNbfDY,2106
|
|
157
|
+
letta_client/types/mcp_server_retrieve_response.py,sha256=55seTQW4c4HQL_hpf8wLOrchXZtcTjv2BhVzlH_muxM,2110
|
|
147
158
|
letta_client/types/message_create_param.py,sha256=EoFS5N7nNqVptVUnQS0cWyd81e7DwHIx9CvKtbbMJps,1147
|
|
148
159
|
letta_client/types/model_list_params.py,sha256=gIwbmlVRsz-PmI18eqj9VDKsQGS6cujNL-LHeTvw1q8,499
|
|
149
160
|
letta_client/types/model_list_response.py,sha256=QB71C10tow-weixPXPndi62L9pBg9_nF-1UC4W0Pg0w,267
|
|
@@ -162,22 +173,24 @@ letta_client/types/requires_approval_tool_rule.py,sha256=oxYZhLD8_oyoN9tRuJ4fEUj
|
|
|
162
173
|
letta_client/types/requires_approval_tool_rule_param.py,sha256=GZkzrct1rfFfaWpALbuytGC4d5lDEfRmMqiSkJCnOsA,624
|
|
163
174
|
letta_client/types/round_robin_manager_param.py,sha256=0AWhIh9goMzvHc8dGHCa-wuM13D4UGyTKOvD0gWl09o,365
|
|
164
175
|
letta_client/types/run_list_params.py,sha256=NlhObeRvbiU2wG_FTwEozTCOJinC_ZevZZOW2swpnVw,1703
|
|
176
|
+
letta_client/types/run_list_response.py,sha256=G73U6hxFfp6wjpAxvTAOaRw9DkdQS6NIs73BdO9XeV0,251
|
|
165
177
|
letta_client/types/sleeptime_manager_param.py,sha256=rwg20GKfOPTnGLiMApQ-V1-sshFp3Ncn_WNHXNfy__g,424
|
|
166
178
|
letta_client/types/step.py,sha256=HEaZCWHB802VOZX8ADswSgh2J-GduelP0ln5aU73JqY,2995
|
|
167
|
-
letta_client/types/step_list_params.py,sha256=
|
|
179
|
+
letta_client/types/step_list_params.py,sha256=zyloM3DqBGTmDo1qDuu6rEzyI71o3hbXwiJF6hg-gvk,1600
|
|
168
180
|
letta_client/types/stop_reason_type.py,sha256=c65VgfH1QeppsLMqD09IkYL4FLBC1yHKQdD9OGsgjDQ,405
|
|
169
181
|
letta_client/types/supervisor_manager_param.py,sha256=Jxnf9Yi8-kzGBIMqFCkJSMqWvsp3AXPzKQOqHxurOps,353
|
|
170
182
|
letta_client/types/tag_list_params.py,sha256=_RnY8jTjiAnm7vYTXgjyo6LeVMcvVzsQkHycgQOiM40,992
|
|
171
|
-
letta_client/types/tag_list_response.py,sha256=
|
|
183
|
+
letta_client/types/tag_list_response.py,sha256=UsubWqLCh_o_HGo7FWwLdrpHSAhioVAf-xGNBM8yMbE,222
|
|
172
184
|
letta_client/types/terminal_tool_rule.py,sha256=awI46gpnXzb1yEF8P8-LC_mTDKPsyPb9lRj9i4m_lhQ,500
|
|
173
185
|
letta_client/types/terminal_tool_rule_param.py,sha256=6nVUm9k1XaDwmbZjsdmSoyaT6N4MTKRS6oxIyViuX40,533
|
|
174
186
|
letta_client/types/text_response_format.py,sha256=JXjHFwVTXR3EAXEgyqnPrI5BnPEWp0BXtLW6pdK5GoE,345
|
|
175
187
|
letta_client/types/text_response_format_param.py,sha256=0vse-dbRXfuIGUIf7qcWbEafroNfQz5ZsstHxeE-GG8,337
|
|
176
|
-
letta_client/types/tool.py,sha256=
|
|
188
|
+
letta_client/types/tool.py,sha256=lDF2GH2u3v9GyiiWatPifvzzzKIovZrMmn_7k7YXb6E,6045
|
|
177
189
|
letta_client/types/tool_count_params.py,sha256=En9uTa2LsREUJSuql5okpUxnSEePjkqL2LiZt1xf8gM,1115
|
|
178
190
|
letta_client/types/tool_count_response.py,sha256=fxkWNTsSBbEJl7EhEuq9nqEZC161PsEbglIpw33jrgM,196
|
|
179
191
|
letta_client/types/tool_create_params.py,sha256=ourfiChPPF2YoNxmpHmIXq89EPevrTetZtYWwKCZX3s,1610
|
|
180
192
|
letta_client/types/tool_list_params.py,sha256=oSwepX0mdUw07skdN6ULZbX2bxhLHbIVusuNsXQZsMQ,1639
|
|
193
|
+
letta_client/types/tool_list_response.py,sha256=611wn2TymQK385EFMRFIcG1-hHyZTz9c_d-jinfR3_Y,249
|
|
181
194
|
letta_client/types/tool_modify_params.py,sha256=ITg5_E0EhkYj3g31paosi8oei7176oNkO1grFnzAKnw,1808
|
|
182
195
|
letta_client/types/tool_return_message.py,sha256=cbKJnEJgD5YssoC4BId-fG5floUPOXZZQde7z-uNqoY,928
|
|
183
196
|
letta_client/types/tool_type.py,sha256=bCnBz4HnX_v2a-1KoE5n3IS-tbadrkLvK3VTyvJRx2M,459
|
|
@@ -185,23 +198,20 @@ letta_client/types/tool_upsert_base_tools_response.py,sha256=LnfdXQ1Ogg9lsOzZ6Lv
|
|
|
185
198
|
letta_client/types/tool_upsert_params.py,sha256=mZW3jsUXSCIJWTHzyfbxlZwtw7ue2K1oKllK9onPOik,1610
|
|
186
199
|
letta_client/types/vector_db_provider.py,sha256=qBKOulAcpdAgPJxRBU_bwNyK3LDRRDc23ZWHwOG10kU,237
|
|
187
200
|
letta_client/types/voice_sleeptime_manager_param.py,sha256=fpSmxdOHcyj6h6EV1K0fqh9howUNN9d_IGUfUO9d8Do,856
|
|
188
|
-
letta_client/types/agents/__init__.py,sha256=
|
|
201
|
+
letta_client/types/agents/__init__.py,sha256=Y_AE28AhpL7-dgQSs0UdVpHS482yA3AfGh4FStRROmA,5092
|
|
189
202
|
letta_client/types/agents/approval_create_param.py,sha256=MT8miAyzQSZwjN7vPe8iFWwris30bl34KJs0LlR1DVE,1295
|
|
190
203
|
letta_client/types/agents/approval_request_message.py,sha256=ig5yQhnSut9F5uGLJCoPI0hsCOZQLZq6TL8o9NEVcM8,1178
|
|
191
204
|
letta_client/types/agents/approval_response_message.py,sha256=JkZLpvyE7muDzkKYoWz8PlLlz5V_rW9lARrlsVtyLV4,1691
|
|
192
205
|
letta_client/types/agents/assistant_message.py,sha256=fUPjYLWZJHglFdcI3gm6I-yzkMIeE7P5D3mbly0L23U,930
|
|
193
206
|
letta_client/types/agents/block.py,sha256=W89HtUA_EsVpfVy06pV3Rm3zmBhDD5kwiLN1KDQyiVA,1762
|
|
194
207
|
letta_client/types/agents/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
|
|
195
|
-
letta_client/types/agents/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
|
|
196
208
|
letta_client/types/agents/block_modify_params.py,sha256=nowldbVlbanKYdA87Pk70OnZB9R15vG6WPx4dXx3DV8,1560
|
|
197
|
-
letta_client/types/agents/block_modify_response.py,sha256=Xw_cxxqrmMKGDIe4XUyvnRJK0TG-6JTNMfMsQJt4XrI,1909
|
|
198
|
-
letta_client/types/agents/block_retrieve_response.py,sha256=DD3lba9tl4V_fQtmtPjDGZubRi4azKGCP-loS0DTWM0,1913
|
|
199
209
|
letta_client/types/agents/file_close_all_response.py,sha256=yq3AN8M749mivM6T7WS6iNKCrBRANafXXHsB3NuQRsc,232
|
|
200
210
|
letta_client/types/agents/file_list_params.py,sha256=ltjR-n7z_ZiOCO_nNPmSyH7DQUxdUB_jEuSXnnLWMmE,1067
|
|
201
|
-
letta_client/types/agents/file_list_response.py,sha256=
|
|
211
|
+
letta_client/types/agents/file_list_response.py,sha256=oG37WQIZKjDo5HVnoWSZy5O09w-IF3pXEjyHMTiL5nk,1336
|
|
202
212
|
letta_client/types/agents/file_open_response.py,sha256=QnOUmArtPRRFAlSqfCzcQX_Mj9J7_YfSSCdjOdA7dhk,224
|
|
203
213
|
letta_client/types/agents/folder_list_params.py,sha256=ch6sBSUu88lyAm7RWAaHjVKOJ5gmH4sJh_d6q6RZ46E,871
|
|
204
|
-
letta_client/types/agents/folder_list_response.py,sha256
|
|
214
|
+
letta_client/types/agents/folder_list_response.py,sha256=-99lBKZTBV1K5nTuKSUbLbWfM890oabNxBjOgvl86Hk,1496
|
|
205
215
|
letta_client/types/agents/group_list_params.py,sha256=uP71TVEepshoEshCGqTPoCurfXrPA1aCjEx_uwBogzQ,937
|
|
206
216
|
letta_client/types/agents/hidden_reasoning_message.py,sha256=QyK6CPVEXosSruZiazdsAL2mQ2nMU3Psano0ZmJXZiQ,763
|
|
207
217
|
letta_client/types/agents/image_content.py,sha256=xsOD6ryt99gbOv5nvGTHOWqVMgK7cE3V7FJD6bHApsM,1767
|
|
@@ -212,6 +222,7 @@ letta_client/types/agents/letta_assistant_message_content_union.py,sha256=fh_0Gx
|
|
|
212
222
|
letta_client/types/agents/letta_assistant_message_content_union_param.py,sha256=91Lopt2yxg0BucmTa9pki6B9sidSGhJqin9epUQFXsg,585
|
|
213
223
|
letta_client/types/agents/letta_message_union.py,sha256=7u2DBkz03yVN7DEQ48RhZidyGXSu0m9dZV7GlMn7j60,1048
|
|
214
224
|
letta_client/types/agents/letta_response.py,sha256=1yDCTUHt8Dxb4AhoGbLbeKQlASLCEYQkIvdqfgNBH2Y,1417
|
|
225
|
+
letta_client/types/agents/letta_streaming_response.py,sha256=n8qrMipSI6USTiwQth646Hnlecy4QuAkAkJLGJrxc7Y,2195
|
|
215
226
|
letta_client/types/agents/letta_user_message_content_union.py,sha256=u6fbFbrTu3wLMIEe72UqBWOTrVDQqBMaq9VT3thXTow,450
|
|
216
227
|
letta_client/types/agents/letta_user_message_content_union_param.py,sha256=tkoVza0d2m_cnO2o4jspLzvsGVhaS1ZwHF1HzL72JYQ,429
|
|
217
228
|
letta_client/types/agents/message.py,sha256=UEBeJIl_-XMHmvUESTOI0e--2W4xl7swirthYR2csaA,7327
|
|
@@ -243,6 +254,7 @@ letta_client/types/agents/tool_call_content_param.py,sha256=6emc1rsT2umsH6gSvVZX
|
|
|
243
254
|
letta_client/types/agents/tool_call_delta.py,sha256=7THqtblAJMt4e_tjMJr92ajlF641rDaJVsQ2RtuoGDM,320
|
|
244
255
|
letta_client/types/agents/tool_call_message.py,sha256=8p4Lk_o1C-nsq1gOuSADvfLY80Oe8-DSZ7dC5Px8-Rk,981
|
|
245
256
|
letta_client/types/agents/tool_list_params.py,sha256=fmhOBx016k5FFLKHk187w7Om1HRWkUNEzBPI4MVrbXM,851
|
|
257
|
+
letta_client/types/agents/tool_list_response.py,sha256=ZcDgozkPHhscFNdPkdSW3J3ZL6NjmCA0EY33EqCoge0,250
|
|
246
258
|
letta_client/types/agents/tool_return.py,sha256=pwBOXj-A1ePm3WaKJU9ipAxChS2DHoLSABcEAAa29dE,501
|
|
247
259
|
letta_client/types/agents/tool_return_content.py,sha256=BSOvlAuJPL_xcsrQmiCPHOIxweSrq3EZMT1GHBquLi4,639
|
|
248
260
|
letta_client/types/agents/tool_return_content_param.py,sha256=LZTL1w0MNgZH69Yc-z0BgC0We5ChGM6XYfaAICEwXfc,670
|
|
@@ -253,15 +265,16 @@ letta_client/types/agents/update_reasoning_message_param.py,sha256=JQmAXEY3URi4P
|
|
|
253
265
|
letta_client/types/agents/update_system_message_param.py,sha256=Ca_Tk6U3Nr-GAZOnm7LWRsMGfKNL_5LpxW-xolMtGPs,474
|
|
254
266
|
letta_client/types/agents/update_user_message_param.py,sha256=edqu5unlWgmKobbkU4aw_amYDCzOk7fTQuBLcbPGCvw,640
|
|
255
267
|
letta_client/types/agents/user_message.py,sha256=xm9gDlwhHJbgxmYNMrHFCsvRw9puOXCiVEAq5jnW_N0,911
|
|
256
|
-
letta_client/types/batches/__init__.py,sha256=
|
|
268
|
+
letta_client/types/batches/__init__.py,sha256=VDr2g2i749NVUkSdcmAl77trohsU_WlAuwDHH-vVeg4,273
|
|
257
269
|
letta_client/types/batches/message_list_params.py,sha256=KSeV1xGtZuJs_heEVRI5JdWcXrlPPBlDxieaZUXQdTA,948
|
|
270
|
+
letta_client/types/batches/message_list_response.py,sha256=U-6QL14UaJ2R-sGVhtVNLbYYUmf1aEi6p3gSWF00jsM,285
|
|
258
271
|
letta_client/types/blocks/__init__.py,sha256=hiSa_DsUrxaUdZf6f03IP9pqSbKVcadjiYcctRlUIU0,189
|
|
259
272
|
letta_client/types/blocks/agent_list_params.py,sha256=LEpVKnFur-EAvFYdIiAmv30AxyxFuPzgHiqlPuleCFs,1675
|
|
260
273
|
letta_client/types/folders/__init__.py,sha256=FrCq1pjDJwHup7YQJ5hp3YMff5sCRVP_kpzRo-V32HY,537
|
|
261
274
|
letta_client/types/folders/agent_list_params.py,sha256=oUexDxrOm9Zec1zoU2acoqLaNMcUuXUdD_qzrc_D1v8,861
|
|
262
|
-
letta_client/types/folders/agent_list_response.py,sha256=
|
|
275
|
+
letta_client/types/folders/agent_list_response.py,sha256=yvPSQSxwYbR_i9sV1YgGCiLMXREjmiAxkZvhRWkEbx4,226
|
|
263
276
|
letta_client/types/folders/file_list_params.py,sha256=eXpJfwqdeIzVgqdBittXz8KFfO1jbqfGptrbgX9-4fc,925
|
|
264
|
-
letta_client/types/folders/file_list_response.py,sha256=
|
|
277
|
+
letta_client/types/folders/file_list_response.py,sha256=Q2W7jYp48nMgouaea1ej2OZyDhfLmomJOdva9QriXck,1955
|
|
265
278
|
letta_client/types/folders/file_upload_params.py,sha256=QTwtUEVP3lnvb3cz0KSUV9ZZMq3h-a-sO-HBJhtMVk0,563
|
|
266
279
|
letta_client/types/folders/file_upload_response.py,sha256=e8r6wCrJYH-8uEYlB3vrX88DT1oF2F2vMdSBl6Rs6ww,1855
|
|
267
280
|
letta_client/types/groups/__init__.py,sha256=ZMgighSb07QQvQvtq4sI4E00Exy_9ss4ICpIwK3kHDc,507
|
|
@@ -270,11 +283,15 @@ letta_client/types/groups/message_modify_params.py,sha256=42rqznXd5086v0ovL8DQfN
|
|
|
270
283
|
letta_client/types/groups/message_modify_response.py,sha256=c8PQSfZUG7-Uum00CKWzsYTKawNGVoBktwC262eQUYg,1120
|
|
271
284
|
letta_client/types/groups/message_send_params.py,sha256=_wjiak-S3PyUWcG4zX8jhcXmAee8xnzPVegd1K9yO6o,1714
|
|
272
285
|
letta_client/types/groups/message_stream_params.py,sha256=Z9UeNykGd-542rtXIpk6w--SXbPmemu9Os1L6hiikQA,2087
|
|
273
|
-
letta_client/types/identities/__init__.py,sha256=
|
|
286
|
+
letta_client/types/identities/__init__.py,sha256=SQiVtprSocQYiddZcYSxaWRwRakw6nHqXQEhLX06rvU,336
|
|
274
287
|
letta_client/types/identities/agent_list_params.py,sha256=RyGM8SzPHzBTwuIAWIhyyk--gvFppZYueCSn6gSzp2E,1248
|
|
275
288
|
letta_client/types/identities/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
|
|
276
|
-
letta_client/types/identities/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
|
|
277
289
|
letta_client/types/identities/property_upsert_params.py,sha256=BUnzZp4_FhfEgbWZYX0r-SwRSPKvpvFGaX-NYexQs00,404
|
|
290
|
+
letta_client/types/mcp_servers/__init__.py,sha256=vGk2UG3iqqOsZSp4NnZnjm-lFV2wBuGF0R_iEzMDdGY,399
|
|
291
|
+
letta_client/types/mcp_servers/refresh_trigger_params.py,sha256=BAlzzEghiqZ59TCX4LzAr23R_MVsXdJHCsAK_QMwHjw,309
|
|
292
|
+
letta_client/types/mcp_servers/tool_list_response.py,sha256=ZcDgozkPHhscFNdPkdSW3J3ZL6NjmCA0EY33EqCoge0,250
|
|
293
|
+
letta_client/types/mcp_servers/tool_run_params.py,sha256=D--rxN8zAm0P7k8jlF2jYefASOmxdxaQluVKRiR1qc8,379
|
|
294
|
+
letta_client/types/mcp_servers/tool_run_response.py,sha256=jT2s13HU_hWxSruIy6Eo4ai8vVx1zkkFbQnNB6_baqQ,1717
|
|
278
295
|
letta_client/types/models/__init__.py,sha256=ldgePtY0WELsx-lMqSQk1640HoGRcSqS0E7pMa38D_g,207
|
|
279
296
|
letta_client/types/models/embedding_list_response.py,sha256=qYfIdlT2K9HfQM4HT8q5aRyLTjHxhZ5OMSqv0_2Yy3E,294
|
|
280
297
|
letta_client/types/runs/__init__.py,sha256=Riz_7Dvo-6bmNzacxeOskEMg02AUa09z734xhie-ucA,420
|
|
@@ -289,7 +306,7 @@ letta_client/types/steps/message_list_response.py,sha256=KOOB_tmBTiMjXRPtuZocvn_
|
|
|
289
306
|
letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
|
|
290
307
|
letta_client/types/templates/__init__.py,sha256=eRs8IaeLPk-OtK1SeqFlKxHQ1_thE0sgK2BZ2ioSyUw,195
|
|
291
308
|
letta_client/types/templates/agent_create_params.py,sha256=kvmC7ldFkNdx7kf6r_CK3O88BATWZjKW3kdzc475rFk,1406
|
|
292
|
-
letta_client-1.0.
|
|
293
|
-
letta_client-1.0.
|
|
294
|
-
letta_client-1.0.
|
|
295
|
-
letta_client-1.0.
|
|
309
|
+
letta_client-1.0.0a12.dist-info/METADATA,sha256=P86ynwBoKWLuOdDszlS9raOQVEapjm47yUnSZBins3k,15982
|
|
310
|
+
letta_client-1.0.0a12.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
311
|
+
letta_client-1.0.0a12.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
|
|
312
|
+
letta_client-1.0.0a12.dist-info/RECORD,,
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from typing import Dict, Optional
|
|
4
|
-
|
|
5
|
-
from ..._models import BaseModel
|
|
6
|
-
|
|
7
|
-
__all__ = ["BlockListResponse"]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class BlockListResponse(BaseModel):
|
|
11
|
-
value: str
|
|
12
|
-
"""Value of the block."""
|
|
13
|
-
|
|
14
|
-
id: Optional[str] = None
|
|
15
|
-
"""The human-friendly ID of the Block"""
|
|
16
|
-
|
|
17
|
-
base_template_id: Optional[str] = None
|
|
18
|
-
"""(Deprecated) The base template id of the block."""
|
|
19
|
-
|
|
20
|
-
created_by_id: Optional[str] = None
|
|
21
|
-
"""The id of the user that made this Block."""
|
|
22
|
-
|
|
23
|
-
deployment_id: Optional[str] = None
|
|
24
|
-
"""(Deprecated) The id of the deployment."""
|
|
25
|
-
|
|
26
|
-
description: Optional[str] = None
|
|
27
|
-
"""Description of the block."""
|
|
28
|
-
|
|
29
|
-
entity_id: Optional[str] = None
|
|
30
|
-
"""(Deprecated) The id of the entity within the template."""
|
|
31
|
-
|
|
32
|
-
hidden: Optional[bool] = None
|
|
33
|
-
"""(Deprecated) If set to True, the block will be hidden."""
|
|
34
|
-
|
|
35
|
-
is_template: Optional[bool] = None
|
|
36
|
-
"""Whether the block is a template (e.g. saved human/persona options)."""
|
|
37
|
-
|
|
38
|
-
label: Optional[str] = None
|
|
39
|
-
"""Label of the block (e.g. 'human', 'persona') in the context window."""
|
|
40
|
-
|
|
41
|
-
last_updated_by_id: Optional[str] = None
|
|
42
|
-
"""The id of the user that last updated this Block."""
|
|
43
|
-
|
|
44
|
-
limit: Optional[int] = None
|
|
45
|
-
"""Character limit of the block."""
|
|
46
|
-
|
|
47
|
-
metadata: Optional[Dict[str, object]] = None
|
|
48
|
-
"""Metadata of the block."""
|
|
49
|
-
|
|
50
|
-
preserve_on_migration: Optional[bool] = None
|
|
51
|
-
"""(Deprecated) Preserve the block on template migration."""
|
|
52
|
-
|
|
53
|
-
project_id: Optional[str] = None
|
|
54
|
-
"""The associated project id."""
|
|
55
|
-
|
|
56
|
-
read_only: Optional[bool] = None
|
|
57
|
-
"""(Deprecated) Whether the agent has read-only access to the block."""
|
|
58
|
-
|
|
59
|
-
template_id: Optional[str] = None
|
|
60
|
-
"""(Deprecated) The id of the template."""
|
|
61
|
-
|
|
62
|
-
template_name: Optional[str] = None
|
|
63
|
-
"""(Deprecated) The name of the block template (if it is a template)."""
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from typing import Dict, Optional
|
|
4
|
-
|
|
5
|
-
from ..._models import BaseModel
|
|
6
|
-
|
|
7
|
-
__all__ = ["BlockModifyResponse"]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class BlockModifyResponse(BaseModel):
|
|
11
|
-
value: str
|
|
12
|
-
"""Value of the block."""
|
|
13
|
-
|
|
14
|
-
id: Optional[str] = None
|
|
15
|
-
"""The human-friendly ID of the Block"""
|
|
16
|
-
|
|
17
|
-
base_template_id: Optional[str] = None
|
|
18
|
-
"""(Deprecated) The base template id of the block."""
|
|
19
|
-
|
|
20
|
-
created_by_id: Optional[str] = None
|
|
21
|
-
"""The id of the user that made this Block."""
|
|
22
|
-
|
|
23
|
-
deployment_id: Optional[str] = None
|
|
24
|
-
"""(Deprecated) The id of the deployment."""
|
|
25
|
-
|
|
26
|
-
description: Optional[str] = None
|
|
27
|
-
"""Description of the block."""
|
|
28
|
-
|
|
29
|
-
entity_id: Optional[str] = None
|
|
30
|
-
"""(Deprecated) The id of the entity within the template."""
|
|
31
|
-
|
|
32
|
-
hidden: Optional[bool] = None
|
|
33
|
-
"""(Deprecated) If set to True, the block will be hidden."""
|
|
34
|
-
|
|
35
|
-
is_template: Optional[bool] = None
|
|
36
|
-
"""Whether the block is a template (e.g. saved human/persona options)."""
|
|
37
|
-
|
|
38
|
-
label: Optional[str] = None
|
|
39
|
-
"""Label of the block (e.g. 'human', 'persona') in the context window."""
|
|
40
|
-
|
|
41
|
-
last_updated_by_id: Optional[str] = None
|
|
42
|
-
"""The id of the user that last updated this Block."""
|
|
43
|
-
|
|
44
|
-
limit: Optional[int] = None
|
|
45
|
-
"""Character limit of the block."""
|
|
46
|
-
|
|
47
|
-
metadata: Optional[Dict[str, object]] = None
|
|
48
|
-
"""Metadata of the block."""
|
|
49
|
-
|
|
50
|
-
preserve_on_migration: Optional[bool] = None
|
|
51
|
-
"""(Deprecated) Preserve the block on template migration."""
|
|
52
|
-
|
|
53
|
-
project_id: Optional[str] = None
|
|
54
|
-
"""The associated project id."""
|
|
55
|
-
|
|
56
|
-
read_only: Optional[bool] = None
|
|
57
|
-
"""(Deprecated) Whether the agent has read-only access to the block."""
|
|
58
|
-
|
|
59
|
-
template_id: Optional[str] = None
|
|
60
|
-
"""(Deprecated) The id of the template."""
|
|
61
|
-
|
|
62
|
-
template_name: Optional[str] = None
|
|
63
|
-
"""(Deprecated) The name of the block template (if it is a template)."""
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from typing import Dict, Optional
|
|
4
|
-
|
|
5
|
-
from ..._models import BaseModel
|
|
6
|
-
|
|
7
|
-
__all__ = ["BlockRetrieveResponse"]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class BlockRetrieveResponse(BaseModel):
|
|
11
|
-
value: str
|
|
12
|
-
"""Value of the block."""
|
|
13
|
-
|
|
14
|
-
id: Optional[str] = None
|
|
15
|
-
"""The human-friendly ID of the Block"""
|
|
16
|
-
|
|
17
|
-
base_template_id: Optional[str] = None
|
|
18
|
-
"""(Deprecated) The base template id of the block."""
|
|
19
|
-
|
|
20
|
-
created_by_id: Optional[str] = None
|
|
21
|
-
"""The id of the user that made this Block."""
|
|
22
|
-
|
|
23
|
-
deployment_id: Optional[str] = None
|
|
24
|
-
"""(Deprecated) The id of the deployment."""
|
|
25
|
-
|
|
26
|
-
description: Optional[str] = None
|
|
27
|
-
"""Description of the block."""
|
|
28
|
-
|
|
29
|
-
entity_id: Optional[str] = None
|
|
30
|
-
"""(Deprecated) The id of the entity within the template."""
|
|
31
|
-
|
|
32
|
-
hidden: Optional[bool] = None
|
|
33
|
-
"""(Deprecated) If set to True, the block will be hidden."""
|
|
34
|
-
|
|
35
|
-
is_template: Optional[bool] = None
|
|
36
|
-
"""Whether the block is a template (e.g. saved human/persona options)."""
|
|
37
|
-
|
|
38
|
-
label: Optional[str] = None
|
|
39
|
-
"""Label of the block (e.g. 'human', 'persona') in the context window."""
|
|
40
|
-
|
|
41
|
-
last_updated_by_id: Optional[str] = None
|
|
42
|
-
"""The id of the user that last updated this Block."""
|
|
43
|
-
|
|
44
|
-
limit: Optional[int] = None
|
|
45
|
-
"""Character limit of the block."""
|
|
46
|
-
|
|
47
|
-
metadata: Optional[Dict[str, object]] = None
|
|
48
|
-
"""Metadata of the block."""
|
|
49
|
-
|
|
50
|
-
preserve_on_migration: Optional[bool] = None
|
|
51
|
-
"""(Deprecated) Preserve the block on template migration."""
|
|
52
|
-
|
|
53
|
-
project_id: Optional[str] = None
|
|
54
|
-
"""The associated project id."""
|
|
55
|
-
|
|
56
|
-
read_only: Optional[bool] = None
|
|
57
|
-
"""(Deprecated) Whether the agent has read-only access to the block."""
|
|
58
|
-
|
|
59
|
-
template_id: Optional[str] = None
|
|
60
|
-
"""(Deprecated) The id of the template."""
|
|
61
|
-
|
|
62
|
-
template_name: Optional[str] = None
|
|
63
|
-
"""(Deprecated) The name of the block template (if it is a template)."""
|