letta-client 0.1.219__py3-none-any.whl → 0.1.221__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/__init__.py +4 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/folders/client.py +22 -34
- letta_client/sources/client.py +0 -12
- letta_client/types/__init__.py +4 -0
- letta_client/types/folder.py +1 -1
- letta_client/types/source_create.py +57 -0
- letta_client/types/source_update.py +47 -0
- {letta_client-0.1.219.dist-info → letta_client-0.1.221.dist-info}/METADATA +1 -1
- {letta_client-0.1.219.dist-info → letta_client-0.1.221.dist-info}/RECORD +11 -9
- {letta_client-0.1.219.dist-info → letta_client-0.1.221.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -204,7 +204,9 @@ from .types import (
|
|
|
204
204
|
SleeptimeManager,
|
|
205
205
|
SleeptimeManagerUpdate,
|
|
206
206
|
Source,
|
|
207
|
+
SourceCreate,
|
|
207
208
|
SourceStats,
|
|
209
|
+
SourceUpdate,
|
|
208
210
|
SseServerConfig,
|
|
209
211
|
StdioServerConfig,
|
|
210
212
|
Step,
|
|
@@ -583,7 +585,9 @@ __all__ = [
|
|
|
583
585
|
"SleeptimeManager",
|
|
584
586
|
"SleeptimeManagerUpdate",
|
|
585
587
|
"Source",
|
|
588
|
+
"SourceCreate",
|
|
586
589
|
"SourceStats",
|
|
590
|
+
"SourceUpdate",
|
|
587
591
|
"SseServerConfig",
|
|
588
592
|
"StdioServerConfig",
|
|
589
593
|
"Step",
|
|
@@ -24,7 +24,7 @@ class BaseClientWrapper:
|
|
|
24
24
|
headers: typing.Dict[str, str] = {
|
|
25
25
|
"X-Fern-Language": "Python",
|
|
26
26
|
"X-Fern-SDK-Name": "letta-client",
|
|
27
|
-
"X-Fern-SDK-Version": "0.1.
|
|
27
|
+
"X-Fern-SDK-Version": "0.1.221",
|
|
28
28
|
}
|
|
29
29
|
if self._project is not None:
|
|
30
30
|
headers["X-Project"] = self._project
|
letta_client/folders/client.py
CHANGED
|
@@ -217,19 +217,19 @@ class FoldersClient:
|
|
|
217
217
|
folder_id : str
|
|
218
218
|
|
|
219
219
|
name : typing.Optional[str]
|
|
220
|
-
The name of the
|
|
220
|
+
The name of the source.
|
|
221
221
|
|
|
222
222
|
description : typing.Optional[str]
|
|
223
|
-
The description of the
|
|
223
|
+
The description of the source.
|
|
224
224
|
|
|
225
225
|
instructions : typing.Optional[str]
|
|
226
|
-
Instructions for how to use the
|
|
226
|
+
Instructions for how to use the source.
|
|
227
227
|
|
|
228
228
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
229
|
-
Metadata associated with the
|
|
229
|
+
Metadata associated with the source.
|
|
230
230
|
|
|
231
231
|
embedding_config : typing.Optional[EmbeddingConfig]
|
|
232
|
-
The embedding configuration used by the
|
|
232
|
+
The embedding configuration used by the source.
|
|
233
233
|
|
|
234
234
|
request_options : typing.Optional[RequestOptions]
|
|
235
235
|
Request-specific configuration.
|
|
@@ -263,9 +263,6 @@ class FoldersClient:
|
|
|
263
263
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
264
264
|
),
|
|
265
265
|
},
|
|
266
|
-
headers={
|
|
267
|
-
"content-type": "application/json",
|
|
268
|
-
},
|
|
269
266
|
request_options=request_options,
|
|
270
267
|
omit=OMIT,
|
|
271
268
|
)
|
|
@@ -490,25 +487,25 @@ class FoldersClient:
|
|
|
490
487
|
Parameters
|
|
491
488
|
----------
|
|
492
489
|
name : str
|
|
493
|
-
The name of the
|
|
490
|
+
The name of the source.
|
|
494
491
|
|
|
495
492
|
description : typing.Optional[str]
|
|
496
|
-
The description of the
|
|
493
|
+
The description of the source.
|
|
497
494
|
|
|
498
495
|
instructions : typing.Optional[str]
|
|
499
|
-
Instructions for how to use the
|
|
496
|
+
Instructions for how to use the source.
|
|
500
497
|
|
|
501
498
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
502
|
-
Metadata associated with the
|
|
499
|
+
Metadata associated with the source.
|
|
503
500
|
|
|
504
501
|
embedding : typing.Optional[str]
|
|
505
|
-
The handle for the embedding config used by the
|
|
502
|
+
The handle for the embedding config used by the source.
|
|
506
503
|
|
|
507
504
|
embedding_chunk_size : typing.Optional[int]
|
|
508
505
|
The chunk size of the embedding.
|
|
509
506
|
|
|
510
507
|
embedding_config : typing.Optional[EmbeddingConfig]
|
|
511
|
-
(Legacy) The embedding configuration used by the
|
|
508
|
+
(Legacy) The embedding configuration used by the source.
|
|
512
509
|
|
|
513
510
|
request_options : typing.Optional[RequestOptions]
|
|
514
511
|
Request-specific configuration.
|
|
@@ -544,9 +541,6 @@ class FoldersClient:
|
|
|
544
541
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
545
542
|
),
|
|
546
543
|
},
|
|
547
|
-
headers={
|
|
548
|
-
"content-type": "application/json",
|
|
549
|
-
},
|
|
550
544
|
request_options=request_options,
|
|
551
545
|
omit=OMIT,
|
|
552
546
|
)
|
|
@@ -852,19 +846,19 @@ class AsyncFoldersClient:
|
|
|
852
846
|
folder_id : str
|
|
853
847
|
|
|
854
848
|
name : typing.Optional[str]
|
|
855
|
-
The name of the
|
|
849
|
+
The name of the source.
|
|
856
850
|
|
|
857
851
|
description : typing.Optional[str]
|
|
858
|
-
The description of the
|
|
852
|
+
The description of the source.
|
|
859
853
|
|
|
860
854
|
instructions : typing.Optional[str]
|
|
861
|
-
Instructions for how to use the
|
|
855
|
+
Instructions for how to use the source.
|
|
862
856
|
|
|
863
857
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
864
|
-
Metadata associated with the
|
|
858
|
+
Metadata associated with the source.
|
|
865
859
|
|
|
866
860
|
embedding_config : typing.Optional[EmbeddingConfig]
|
|
867
|
-
The embedding configuration used by the
|
|
861
|
+
The embedding configuration used by the source.
|
|
868
862
|
|
|
869
863
|
request_options : typing.Optional[RequestOptions]
|
|
870
864
|
Request-specific configuration.
|
|
@@ -906,9 +900,6 @@ class AsyncFoldersClient:
|
|
|
906
900
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
907
901
|
),
|
|
908
902
|
},
|
|
909
|
-
headers={
|
|
910
|
-
"content-type": "application/json",
|
|
911
|
-
},
|
|
912
903
|
request_options=request_options,
|
|
913
904
|
omit=OMIT,
|
|
914
905
|
)
|
|
@@ -1159,25 +1150,25 @@ class AsyncFoldersClient:
|
|
|
1159
1150
|
Parameters
|
|
1160
1151
|
----------
|
|
1161
1152
|
name : str
|
|
1162
|
-
The name of the
|
|
1153
|
+
The name of the source.
|
|
1163
1154
|
|
|
1164
1155
|
description : typing.Optional[str]
|
|
1165
|
-
The description of the
|
|
1156
|
+
The description of the source.
|
|
1166
1157
|
|
|
1167
1158
|
instructions : typing.Optional[str]
|
|
1168
|
-
Instructions for how to use the
|
|
1159
|
+
Instructions for how to use the source.
|
|
1169
1160
|
|
|
1170
1161
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
1171
|
-
Metadata associated with the
|
|
1162
|
+
Metadata associated with the source.
|
|
1172
1163
|
|
|
1173
1164
|
embedding : typing.Optional[str]
|
|
1174
|
-
The handle for the embedding config used by the
|
|
1165
|
+
The handle for the embedding config used by the source.
|
|
1175
1166
|
|
|
1176
1167
|
embedding_chunk_size : typing.Optional[int]
|
|
1177
1168
|
The chunk size of the embedding.
|
|
1178
1169
|
|
|
1179
1170
|
embedding_config : typing.Optional[EmbeddingConfig]
|
|
1180
|
-
(Legacy) The embedding configuration used by the
|
|
1171
|
+
(Legacy) The embedding configuration used by the source.
|
|
1181
1172
|
|
|
1182
1173
|
request_options : typing.Optional[RequestOptions]
|
|
1183
1174
|
Request-specific configuration.
|
|
@@ -1221,9 +1212,6 @@ class AsyncFoldersClient:
|
|
|
1221
1212
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
1222
1213
|
),
|
|
1223
1214
|
},
|
|
1224
|
-
headers={
|
|
1225
|
-
"content-type": "application/json",
|
|
1226
|
-
},
|
|
1227
1215
|
request_options=request_options,
|
|
1228
1216
|
omit=OMIT,
|
|
1229
1217
|
)
|
letta_client/sources/client.py
CHANGED
|
@@ -264,9 +264,6 @@ class SourcesClient:
|
|
|
264
264
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
265
265
|
),
|
|
266
266
|
},
|
|
267
|
-
headers={
|
|
268
|
-
"content-type": "application/json",
|
|
269
|
-
},
|
|
270
267
|
request_options=request_options,
|
|
271
268
|
omit=OMIT,
|
|
272
269
|
)
|
|
@@ -545,9 +542,6 @@ class SourcesClient:
|
|
|
545
542
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
546
543
|
),
|
|
547
544
|
},
|
|
548
|
-
headers={
|
|
549
|
-
"content-type": "application/json",
|
|
550
|
-
},
|
|
551
545
|
request_options=request_options,
|
|
552
546
|
omit=OMIT,
|
|
553
547
|
)
|
|
@@ -980,9 +974,6 @@ class AsyncSourcesClient:
|
|
|
980
974
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
981
975
|
),
|
|
982
976
|
},
|
|
983
|
-
headers={
|
|
984
|
-
"content-type": "application/json",
|
|
985
|
-
},
|
|
986
977
|
request_options=request_options,
|
|
987
978
|
omit=OMIT,
|
|
988
979
|
)
|
|
@@ -1295,9 +1286,6 @@ class AsyncSourcesClient:
|
|
|
1295
1286
|
object_=embedding_config, annotation=EmbeddingConfig, direction="write"
|
|
1296
1287
|
),
|
|
1297
1288
|
},
|
|
1298
|
-
headers={
|
|
1299
|
-
"content-type": "application/json",
|
|
1300
|
-
},
|
|
1301
1289
|
request_options=request_options,
|
|
1302
1290
|
omit=OMIT,
|
|
1303
1291
|
)
|
letta_client/types/__init__.py
CHANGED
|
@@ -207,7 +207,9 @@ from .sandbox_type import SandboxType
|
|
|
207
207
|
from .sleeptime_manager import SleeptimeManager
|
|
208
208
|
from .sleeptime_manager_update import SleeptimeManagerUpdate
|
|
209
209
|
from .source import Source
|
|
210
|
+
from .source_create import SourceCreate
|
|
210
211
|
from .source_stats import SourceStats
|
|
212
|
+
from .source_update import SourceUpdate
|
|
211
213
|
from .sse_server_config import SseServerConfig
|
|
212
214
|
from .stdio_server_config import StdioServerConfig
|
|
213
215
|
from .step import Step
|
|
@@ -469,7 +471,9 @@ __all__ = [
|
|
|
469
471
|
"SleeptimeManager",
|
|
470
472
|
"SleeptimeManagerUpdate",
|
|
471
473
|
"Source",
|
|
474
|
+
"SourceCreate",
|
|
472
475
|
"SourceStats",
|
|
476
|
+
"SourceUpdate",
|
|
473
477
|
"SseServerConfig",
|
|
474
478
|
"StdioServerConfig",
|
|
475
479
|
"Step",
|
letta_client/types/folder.py
CHANGED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
import typing
|
|
6
|
+
from .embedding_config import EmbeddingConfig
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SourceCreate(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Schema for creating a new Source.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
name: str = pydantic.Field()
|
|
16
|
+
"""
|
|
17
|
+
The name of the source.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
description: typing.Optional[str] = pydantic.Field(default=None)
|
|
21
|
+
"""
|
|
22
|
+
The description of the source.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
instructions: typing.Optional[str] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
Instructions for how to use the source.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
31
|
+
"""
|
|
32
|
+
Metadata associated with the source.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
embedding: typing.Optional[str] = pydantic.Field(default=None)
|
|
36
|
+
"""
|
|
37
|
+
The handle for the embedding config used by the source.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
embedding_chunk_size: typing.Optional[int] = pydantic.Field(default=None)
|
|
41
|
+
"""
|
|
42
|
+
The chunk size of the embedding.
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
embedding_config: typing.Optional[EmbeddingConfig] = pydantic.Field(default=None)
|
|
46
|
+
"""
|
|
47
|
+
(Legacy) The embedding configuration used by the source.
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
if IS_PYDANTIC_V2:
|
|
51
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
52
|
+
else:
|
|
53
|
+
|
|
54
|
+
class Config:
|
|
55
|
+
frozen = True
|
|
56
|
+
smart_union = True
|
|
57
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from .embedding_config import EmbeddingConfig
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SourceUpdate(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Schema for updating an existing Source.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
name: typing.Optional[str] = pydantic.Field(default=None)
|
|
16
|
+
"""
|
|
17
|
+
The name of the source.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
description: typing.Optional[str] = pydantic.Field(default=None)
|
|
21
|
+
"""
|
|
22
|
+
The description of the source.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
instructions: typing.Optional[str] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
Instructions for how to use the source.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
31
|
+
"""
|
|
32
|
+
Metadata associated with the source.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
embedding_config: typing.Optional[EmbeddingConfig] = pydantic.Field(default=None)
|
|
36
|
+
"""
|
|
37
|
+
The embedding configuration used by the source.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
if IS_PYDANTIC_V2:
|
|
41
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
42
|
+
else:
|
|
43
|
+
|
|
44
|
+
class Config:
|
|
45
|
+
frozen = True
|
|
46
|
+
smart_union = True
|
|
47
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=aiCSJoHJGKQtTMjXahT6WjiMyw1IlwC6owUrb1tIu2s,19424
|
|
2
2
|
letta_client/agents/__init__.py,sha256=9wEJMighDL1OFg_7Qh-D50bubPbV4BWo1ZKYxdDJGIQ,2146
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=4UGPYxfGwNN3ZW-SkIdfVZK6cvCcumVAw0_AM8OmoBY,25046
|
|
@@ -75,7 +75,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
75
75
|
letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py,sha256=kNHfEWFl7u71Pu8NPqutod0a2NXfvq8il05Hqm0iBB4,284
|
|
76
76
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
77
77
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
78
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
78
|
+
letta_client/core/client_wrapper.py,sha256=igW7nKm6krTfc7tX6GMLo5a0-zx49SPQFt-ITwtC9s4,2336
|
|
79
79
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
80
80
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
81
81
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -97,7 +97,7 @@ letta_client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0
|
|
|
97
97
|
letta_client/errors/payment_required_error.py,sha256=KVasrf0kwCzKfq1bAQ7lj1m9SdS7KqRntFaP0L_vfeI,325
|
|
98
98
|
letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
99
99
|
letta_client/folders/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
|
|
100
|
-
letta_client/folders/client.py,sha256=
|
|
100
|
+
letta_client/folders/client.py,sha256=2VJ8Y2A9UY_3Fp8elkiuBJrVFAm2MhIk4LZ0La6I2Kc,42619
|
|
101
101
|
letta_client/folders/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
102
102
|
letta_client/folders/files/client.py,sha256=oSEduN6Q9iw13aRpc2Mm8LxD06tHxJqnBNUMy3xPrUc,14673
|
|
103
103
|
letta_client/folders/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -142,7 +142,7 @@ letta_client/runs/steps/client.py,sha256=KgpKM6tLn7CgnkUlUihLvxucw4PW4bb_8XPVaEb
|
|
|
142
142
|
letta_client/runs/usage/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
143
143
|
letta_client/runs/usage/client.py,sha256=LGJL8cPGaVfTG5OBi85KRbwvv3P_jQNehFq2Kg0xrC4,4738
|
|
144
144
|
letta_client/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
|
|
145
|
-
letta_client/sources/client.py,sha256=
|
|
145
|
+
letta_client/sources/client.py,sha256=6shNa5YhnHSJIpBkXCNchGEMlRdpCWtJvYABVYqSD0I,47350
|
|
146
146
|
letta_client/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
147
147
|
letta_client/sources/files/client.py,sha256=6RgAo1778b1o_BLUZKDbdrSvhsLCvK_TnwFXBEUISpM,14659
|
|
148
148
|
letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -178,7 +178,7 @@ letta_client/tools/types/list_mcp_servers_response_value.py,sha256=Eyji5qB7Fhowi
|
|
|
178
178
|
letta_client/tools/types/test_mcp_server_request.py,sha256=sLlOEZdmLfkHqHCkUjntGbr8_MkBhsqpMQ-HwdNOnq0,372
|
|
179
179
|
letta_client/tools/types/update_mcp_server_request.py,sha256=nCpx9-OvpH0l5iJxEi8kgSok1F1r7liEAZm-kaqBtEo,402
|
|
180
180
|
letta_client/tools/types/update_mcp_server_response.py,sha256=muwHagaQBMwQI0of9EBCBtG9lD-jELFAevgTB2MjpFQ,375
|
|
181
|
-
letta_client/types/__init__.py,sha256=
|
|
181
|
+
letta_client/types/__init__.py,sha256=V1-RZZZKB-4Vfvhxfkl7fKZRnT9ZKZ7BWnalHEEc3YQ,23170
|
|
182
182
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
183
183
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
184
184
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
@@ -276,7 +276,7 @@ letta_client/types/file_file.py,sha256=jbWcPKn-fSUlq9kl8n2us9fPU6x-Z20IKScHD_pJr
|
|
|
276
276
|
letta_client/types/file_metadata.py,sha256=51abJ_M4dmpRJetdWcMf_P39l3EaJ1R2kjuexzEWwMI,2957
|
|
277
277
|
letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
|
|
278
278
|
letta_client/types/file_stats.py,sha256=gEaG0m4vulK21EoIuYlOcdy0IK4qWkjBTDoMzXw3GEQ,875
|
|
279
|
-
letta_client/types/folder.py,sha256=
|
|
279
|
+
letta_client/types/folder.py,sha256=R2xGuF_TQ27XmQVq7K8-_LgDsNwEpXj8qsue7eQzhVE,2370
|
|
280
280
|
letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
|
|
281
281
|
letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
|
|
282
282
|
letta_client/types/function_definition_output.py,sha256=Id0SzyiMHF5l25iKQhCN4sWJwBJ7AkYK-I5RDZy3_rc,741
|
|
@@ -382,7 +382,9 @@ letta_client/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_J
|
|
|
382
382
|
letta_client/types/sleeptime_manager.py,sha256=oKI3CCoA4guwktWs1bbPdCmv9jg94EeMvbXQWvzbt6M,778
|
|
383
383
|
letta_client/types/sleeptime_manager_update.py,sha256=JMzgtvGMDI5VBzlTuzm4FpuFAL7uwPbQgN9TYxip93s,813
|
|
384
384
|
letta_client/types/source.py,sha256=EELyis2796C75CPBVh5Yu9s7qw2nCszu7QgtpR3wPr4,2370
|
|
385
|
+
letta_client/types/source_create.py,sha256=VOwfH-hCO68rsy3zxk_bhllzp6PkxmOdc-G6dJvivKA,1579
|
|
385
386
|
letta_client/types/source_stats.py,sha256=QNp0U24Y6gCLgQp3VDMjiQSgqLnk7CjzRfMobxgOslk,1168
|
|
387
|
+
letta_client/types/source_update.py,sha256=XSjyCb0C2dMjqHwxBErIjALZIQWhsJBRtzMempeYmfw,1329
|
|
386
388
|
letta_client/types/sse_server_config.py,sha256=IN-FdECflYF-XiIM_fvVOwyDu215Csoixepv44PAVvQ,1738
|
|
387
389
|
letta_client/types/stdio_server_config.py,sha256=dEQ7bguiLikGemLxYZJ3JCmmEQgAMsSPO_P52oHZSl0,1091
|
|
388
390
|
letta_client/types/step.py,sha256=N8PXkpwCCc_zHYkwrcVD33uz-0UjjRwgIzUV-8x0i-k,3691
|
|
@@ -442,6 +444,6 @@ letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J
|
|
|
442
444
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
443
445
|
letta_client/voice/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
444
446
|
letta_client/voice/client.py,sha256=47iQYCuW_qpKI4hM3pYVxn3hw7kgQj3emU1_oRpkRMA,5811
|
|
445
|
-
letta_client-0.1.
|
|
446
|
-
letta_client-0.1.
|
|
447
|
-
letta_client-0.1.
|
|
447
|
+
letta_client-0.1.221.dist-info/METADATA,sha256=nMGSzoL0jIZOL35N-cSn_pQdxiK6y5lw34y0jfHt7yQ,5177
|
|
448
|
+
letta_client-0.1.221.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
449
|
+
letta_client-0.1.221.dist-info/RECORD,,
|
|
File without changes
|