letta-client 0.1.10__py3-none-any.whl → 0.1.13__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 +6 -1
- letta_client/agents/__init__.py +4 -0
- letta_client/agents/client.py +174 -34
- letta_client/agents/templates/client.py +6 -6
- letta_client/agents/types/__init__.py +4 -0
- letta_client/agents/types/agents_search_request_search_item.py +19 -1
- letta_client/agents/types/agents_search_request_search_item_tags.py +20 -0
- letta_client/base_client.py +176 -0
- letta_client/client.py +39 -156
- letta_client/core/client_wrapper.py +1 -1
- letta_client/tag/__init__.py +2 -0
- letta_client/tag/client.py +169 -0
- letta_client/tools/client.py +0 -30
- letta_client/types/letta_schemas_tool_tool.py +0 -5
- letta_client/types/tool_create.py +0 -5
- {letta_client-0.1.10.dist-info → letta_client-0.1.13.dist-info}/METADATA +1 -1
- {letta_client-0.1.10.dist-info → letta_client-0.1.13.dist-info}/RECORD +18 -14
- {letta_client-0.1.10.dist-info → letta_client-0.1.13.dist-info}/WHEEL +0 -0
letta_client/tools/client.py
CHANGED
|
@@ -144,7 +144,6 @@ class ToolsClient:
|
|
|
144
144
|
description: typing.Optional[str] = OMIT,
|
|
145
145
|
name: typing.Optional[str] = OMIT,
|
|
146
146
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
147
|
-
module: typing.Optional[str] = OMIT,
|
|
148
147
|
source_code: typing.Optional[str] = OMIT,
|
|
149
148
|
source_type: typing.Optional[str] = OMIT,
|
|
150
149
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
@@ -167,9 +166,6 @@ class ToolsClient:
|
|
|
167
166
|
tags : typing.Optional[typing.Sequence[str]]
|
|
168
167
|
Metadata tags.
|
|
169
168
|
|
|
170
|
-
module : typing.Optional[str]
|
|
171
|
-
The source code of the function.
|
|
172
|
-
|
|
173
169
|
source_code : typing.Optional[str]
|
|
174
170
|
The source code of the function.
|
|
175
171
|
|
|
@@ -208,7 +204,6 @@ class ToolsClient:
|
|
|
208
204
|
"description": description,
|
|
209
205
|
"name": name,
|
|
210
206
|
"tags": tags,
|
|
211
|
-
"module": module,
|
|
212
207
|
"source_code": source_code,
|
|
213
208
|
"source_type": source_type,
|
|
214
209
|
"json_schema": json_schema,
|
|
@@ -373,7 +368,6 @@ class ToolsClient:
|
|
|
373
368
|
name: typing.Optional[str] = OMIT,
|
|
374
369
|
description: typing.Optional[str] = OMIT,
|
|
375
370
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
376
|
-
module: typing.Optional[str] = OMIT,
|
|
377
371
|
source_type: typing.Optional[str] = OMIT,
|
|
378
372
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
379
373
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
@@ -396,9 +390,6 @@ class ToolsClient:
|
|
|
396
390
|
tags : typing.Optional[typing.Sequence[str]]
|
|
397
391
|
Metadata tags.
|
|
398
392
|
|
|
399
|
-
module : typing.Optional[str]
|
|
400
|
-
The source code of the function.
|
|
401
|
-
|
|
402
393
|
source_type : typing.Optional[str]
|
|
403
394
|
The source type of the function.
|
|
404
395
|
|
|
@@ -434,7 +425,6 @@ class ToolsClient:
|
|
|
434
425
|
"name": name,
|
|
435
426
|
"description": description,
|
|
436
427
|
"tags": tags,
|
|
437
|
-
"module": module,
|
|
438
428
|
"source_code": source_code,
|
|
439
429
|
"source_type": source_type,
|
|
440
430
|
"json_schema": json_schema,
|
|
@@ -474,7 +464,6 @@ class ToolsClient:
|
|
|
474
464
|
name: typing.Optional[str] = OMIT,
|
|
475
465
|
description: typing.Optional[str] = OMIT,
|
|
476
466
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
477
|
-
module: typing.Optional[str] = OMIT,
|
|
478
467
|
source_type: typing.Optional[str] = OMIT,
|
|
479
468
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
480
469
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
@@ -497,9 +486,6 @@ class ToolsClient:
|
|
|
497
486
|
tags : typing.Optional[typing.Sequence[str]]
|
|
498
487
|
Metadata tags.
|
|
499
488
|
|
|
500
|
-
module : typing.Optional[str]
|
|
501
|
-
The source code of the function.
|
|
502
|
-
|
|
503
489
|
source_type : typing.Optional[str]
|
|
504
490
|
The source type of the function.
|
|
505
491
|
|
|
@@ -535,7 +521,6 @@ class ToolsClient:
|
|
|
535
521
|
"name": name,
|
|
536
522
|
"description": description,
|
|
537
523
|
"tags": tags,
|
|
538
|
-
"module": module,
|
|
539
524
|
"source_code": source_code,
|
|
540
525
|
"source_type": source_type,
|
|
541
526
|
"json_schema": json_schema,
|
|
@@ -1024,7 +1009,6 @@ class AsyncToolsClient:
|
|
|
1024
1009
|
description: typing.Optional[str] = OMIT,
|
|
1025
1010
|
name: typing.Optional[str] = OMIT,
|
|
1026
1011
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
1027
|
-
module: typing.Optional[str] = OMIT,
|
|
1028
1012
|
source_code: typing.Optional[str] = OMIT,
|
|
1029
1013
|
source_type: typing.Optional[str] = OMIT,
|
|
1030
1014
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
@@ -1047,9 +1031,6 @@ class AsyncToolsClient:
|
|
|
1047
1031
|
tags : typing.Optional[typing.Sequence[str]]
|
|
1048
1032
|
Metadata tags.
|
|
1049
1033
|
|
|
1050
|
-
module : typing.Optional[str]
|
|
1051
|
-
The source code of the function.
|
|
1052
|
-
|
|
1053
1034
|
source_code : typing.Optional[str]
|
|
1054
1035
|
The source code of the function.
|
|
1055
1036
|
|
|
@@ -1096,7 +1077,6 @@ class AsyncToolsClient:
|
|
|
1096
1077
|
"description": description,
|
|
1097
1078
|
"name": name,
|
|
1098
1079
|
"tags": tags,
|
|
1099
|
-
"module": module,
|
|
1100
1080
|
"source_code": source_code,
|
|
1101
1081
|
"source_type": source_type,
|
|
1102
1082
|
"json_schema": json_schema,
|
|
@@ -1277,7 +1257,6 @@ class AsyncToolsClient:
|
|
|
1277
1257
|
name: typing.Optional[str] = OMIT,
|
|
1278
1258
|
description: typing.Optional[str] = OMIT,
|
|
1279
1259
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
1280
|
-
module: typing.Optional[str] = OMIT,
|
|
1281
1260
|
source_type: typing.Optional[str] = OMIT,
|
|
1282
1261
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1283
1262
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
@@ -1300,9 +1279,6 @@ class AsyncToolsClient:
|
|
|
1300
1279
|
tags : typing.Optional[typing.Sequence[str]]
|
|
1301
1280
|
Metadata tags.
|
|
1302
1281
|
|
|
1303
|
-
module : typing.Optional[str]
|
|
1304
|
-
The source code of the function.
|
|
1305
|
-
|
|
1306
1282
|
source_type : typing.Optional[str]
|
|
1307
1283
|
The source type of the function.
|
|
1308
1284
|
|
|
@@ -1346,7 +1322,6 @@ class AsyncToolsClient:
|
|
|
1346
1322
|
"name": name,
|
|
1347
1323
|
"description": description,
|
|
1348
1324
|
"tags": tags,
|
|
1349
|
-
"module": module,
|
|
1350
1325
|
"source_code": source_code,
|
|
1351
1326
|
"source_type": source_type,
|
|
1352
1327
|
"json_schema": json_schema,
|
|
@@ -1386,7 +1361,6 @@ class AsyncToolsClient:
|
|
|
1386
1361
|
name: typing.Optional[str] = OMIT,
|
|
1387
1362
|
description: typing.Optional[str] = OMIT,
|
|
1388
1363
|
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
1389
|
-
module: typing.Optional[str] = OMIT,
|
|
1390
1364
|
source_type: typing.Optional[str] = OMIT,
|
|
1391
1365
|
json_schema: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1392
1366
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
@@ -1409,9 +1383,6 @@ class AsyncToolsClient:
|
|
|
1409
1383
|
tags : typing.Optional[typing.Sequence[str]]
|
|
1410
1384
|
Metadata tags.
|
|
1411
1385
|
|
|
1412
|
-
module : typing.Optional[str]
|
|
1413
|
-
The source code of the function.
|
|
1414
|
-
|
|
1415
1386
|
source_type : typing.Optional[str]
|
|
1416
1387
|
The source type of the function.
|
|
1417
1388
|
|
|
@@ -1455,7 +1426,6 @@ class AsyncToolsClient:
|
|
|
1455
1426
|
"name": name,
|
|
1456
1427
|
"description": description,
|
|
1457
1428
|
"tags": tags,
|
|
1458
|
-
"module": module,
|
|
1459
1429
|
"source_code": source_code,
|
|
1460
1430
|
"source_type": source_type,
|
|
1461
1431
|
"json_schema": json_schema,
|
|
@@ -39,11 +39,6 @@ class LettaSchemasToolTool(UncheckedBaseModel):
|
|
|
39
39
|
The type of the source code.
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
|
-
module: typing.Optional[str] = pydantic.Field(default=None)
|
|
43
|
-
"""
|
|
44
|
-
The module of the function.
|
|
45
|
-
"""
|
|
46
|
-
|
|
47
42
|
name: typing.Optional[str] = pydantic.Field(default=None)
|
|
48
43
|
"""
|
|
49
44
|
The name of the function.
|
|
@@ -22,11 +22,6 @@ class ToolCreate(UncheckedBaseModel):
|
|
|
22
22
|
Metadata tags.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
module: typing.Optional[str] = pydantic.Field(default=None)
|
|
26
|
-
"""
|
|
27
|
-
The source code of the function.
|
|
28
|
-
"""
|
|
29
|
-
|
|
30
25
|
source_code: str = pydantic.Field()
|
|
31
26
|
"""
|
|
32
27
|
The source code of the function.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=jdTY31_FAPmI9tE4WRI6ypAL7R5kyLilXmfLtJtVPqA,8684
|
|
2
|
+
letta_client/agents/__init__.py,sha256=D_1CWRp_6mF3CUCE-6Jx8QAZVldpgrC_uK_UTLExVDI,3236
|
|
3
3
|
letta_client/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/archival_memory/client.py,sha256=8A4GM52LAmZK7v2XJzfWR_PK99E_xcXTYhZMPsK7Uvc,18889
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
5
|
+
letta_client/agents/client.py,sha256=FeXldhkuVr0KDb-hEuQhbq-2BvOMnPC_vit6yIP82nI,53740
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=s9dQA3yJo8KVSinnZz0Mv0GWs0tEqoSH5HgdTTD_klc,4781
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -22,28 +22,30 @@ letta_client/agents/recall_memory/client.py,sha256=ZAe42LBqWQZSkbWY70O6KZNWm1030
|
|
|
22
22
|
letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
23
23
|
letta_client/agents/sources/client.py,sha256=ATvEfFKfhnsq-nUqq8MskYjhi66Iun-TMaP1jL4RdV8,4719
|
|
24
24
|
letta_client/agents/templates/__init__.py,sha256=fTLYBFybZ1xFP8phgz2b7Nlygau7OHa3CUqtZjG2JRI,149
|
|
25
|
-
letta_client/agents/templates/client.py,sha256=
|
|
25
|
+
letta_client/agents/templates/client.py,sha256=iFDP8OiGY78dMt8-sLhi3Qdb0ciKYPTpbBk3S_0ScxE,18873
|
|
26
26
|
letta_client/agents/templates/types/__init__.py,sha256=n6TG69a7_CByZmnRbsApvXiH9PG5SsDw7TcUEp99ETw,170
|
|
27
27
|
letta_client/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
|
|
28
28
|
letta_client/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
29
29
|
letta_client/agents/tools/client.py,sha256=c90wAW7q7S8NE_ZZNo55FB5LmtcnPs-mjA1kJ7MRvvA,12852
|
|
30
|
-
letta_client/agents/types/__init__.py,sha256=
|
|
30
|
+
letta_client/agents/types/__init__.py,sha256=q0Zi5FO9IWVN318qJhEZlUrKzx4kgygfFw9fwmFMujo,1873
|
|
31
31
|
letta_client/agents/types/agents_search_request_combinator.py,sha256=7ZvVX3QILYpXAsKw3l7rQxwwleNekGP73GbNVboCaCA,166
|
|
32
|
-
letta_client/agents/types/agents_search_request_search_item.py,sha256=
|
|
32
|
+
letta_client/agents/types/agents_search_request_search_item.py,sha256=ialUuCAyvTsLFzaUfVWTW9q45Sti4MSzZj_ayxXeTSA,2862
|
|
33
33
|
letta_client/agents/types/agents_search_request_search_item_name.py,sha256=CITFiKq5TtyVKb9CwzRDAACl-HxqOqTOGQLAbcUFXjw,740
|
|
34
34
|
letta_client/agents/types/agents_search_request_search_item_name_operator.py,sha256=Vw5IieCX8pbMGxDvsTzOiaqP9Zws8BpzQcn7QsPNHdI,190
|
|
35
35
|
letta_client/agents/types/agents_search_request_search_item_order_by.py,sha256=2mUspR1ifvuTbeJzbbW7ted0IWGsbGxJGDSZzdQWEOs,899
|
|
36
36
|
letta_client/agents/types/agents_search_request_search_item_order_by_direction.py,sha256=WDYbLnLuJIpM9gMSlwNUtRmckaCGqWXii_N-3uTBeNg,184
|
|
37
37
|
letta_client/agents/types/agents_search_request_search_item_order_by_value.py,sha256=KmJ3WGea7c_yZMVSShZIfTcYrJ2a7qYV0-31nikSMcE,193
|
|
38
|
+
letta_client/agents/types/agents_search_request_search_item_tags.py,sha256=kZOgsK1eUGdHaulx8MxxtB0X6gzidTLbyMQWc5fhOPo,648
|
|
38
39
|
letta_client/agents/types/agents_search_request_search_item_version.py,sha256=hipwPCnixAAq5UfhmcAyIcG9Ut1xGhVnP6lYRG1bBsw,584
|
|
39
40
|
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=xSYFbxIAA6k-pZfVsCaTByE8nXRIqyKnfOm_IEjKfEM,415
|
|
40
41
|
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=5pYbFgeqxmXUHUTZpEWlZ7ODc1G6CpFGWljz_iBpWVA,408
|
|
42
|
+
letta_client/base_client.py,sha256=OapnOZBD94aLQa5uoPCbNIR4zDg55DVI5zBe-wWHYfs,7419
|
|
41
43
|
letta_client/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
42
44
|
letta_client/blocks/client.py,sha256=-4_DMOmUdzPxCqmOYJv3O9Yrf3ZG-gpzyciTe9qbI7k,32517
|
|
43
|
-
letta_client/client.py,sha256=
|
|
45
|
+
letta_client/client.py,sha256=V08XpKBB8zcB9wPcIHc_wXnKZwP6hc5g_7GV1m5xezY,1745
|
|
44
46
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
45
47
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
46
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
48
|
+
letta_client/core/client_wrapper.py,sha256=gFah8cjnX6dt5pHSYde3jfoFQvCZHS93arGDaN1G3yQ,1997
|
|
47
49
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
48
50
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
49
51
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -77,8 +79,10 @@ letta_client/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roe
|
|
|
77
79
|
letta_client/sources/files/client.py,sha256=K7YdVxWOu4lkv5-cuMZMkTcl9Fr92Q5U2liXYFUqZ4I,13297
|
|
78
80
|
letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
79
81
|
letta_client/sources/passages/client.py,sha256=n0QVtLC0W1X6_SjhiEGSl9oZexocnsLZYeYRAqV2BCk,4767
|
|
82
|
+
letta_client/tag/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
83
|
+
letta_client/tag/client.py,sha256=zAy0hjEOVNZV3QAd9iiVuapAXQNCi0wKvZ_wvqj0TmI,5191
|
|
80
84
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
81
|
-
letta_client/tools/client.py,sha256
|
|
85
|
+
letta_client/tools/client.py,sha256=dh8uX3tNFbKjgvd2TUwP0KTj4THksnFxnZmEit7tOY4,58734
|
|
82
86
|
letta_client/types/__init__.py,sha256=0swb0p3HYf3pucfNX4_oJ51oIXXwxhkTIbtkQdW40cI,10356
|
|
83
87
|
letta_client/types/action_model.py,sha256=65eLvLD-9-zK9hrDun7wjVlXsCiI7zujv8aGPuIb3jE,1206
|
|
84
88
|
letta_client/types/action_parameters_model.py,sha256=zKzJkjtu1pt4BEA2GHlg9rMWja5a0uZygOpOx3FbgIM,749
|
|
@@ -142,7 +146,7 @@ letta_client/types/letta_schemas_openai_chat_completion_response_tool_call.py,sh
|
|
|
142
146
|
letta_client/types/letta_schemas_openai_chat_completions_tool_call_function.py,sha256=tkM0hBugyKgJO-pSKZYhPRym7pbzxcvRGGQUKU-HoKw,775
|
|
143
147
|
letta_client/types/letta_schemas_openai_chat_completions_tool_call_input.py,sha256=ZvRZX6l3tSlhxUs0ZutyKZWGS14jvJKHyaspZ3rnROQ,954
|
|
144
148
|
letta_client/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha256=ZqrzcBsJlDN8IfhZxRbvwz4-5mmOsk_qi0gYCad__Gk,870
|
|
145
|
-
letta_client/types/letta_schemas_tool_tool.py,sha256=
|
|
149
|
+
letta_client/types/letta_schemas_tool_tool.py,sha256=QPsaOdK_VB_TDC_GDRFU8w-kf_p8ClRKuegfssPnXV8,2351
|
|
146
150
|
letta_client/types/letta_usage_statistics.py,sha256=Sr8g9QBOIAMpPDr_HMQOkkhMhNEw8j846wkuTg69YxI,1460
|
|
147
151
|
letta_client/types/llm_config.py,sha256=Jk6uKehnhOxaEWZptE09781Pa8LGIh1SlIKGj_eX6oA,2447
|
|
148
152
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=rnDv3wDnngPT10CFw24C6kHo4swuLHxv46aLI9Hoosg,505
|
|
@@ -181,7 +185,7 @@ letta_client/types/tool_call_delta.py,sha256=wGeZwJ9pwYHD5-f4Unf5-vJqefK40eHw9i0
|
|
|
181
185
|
letta_client/types/tool_call_function_output.py,sha256=lI8toKjSUdYe00SmdHyySkQ0aBSVGu1SqbSkCMWjTSA,748
|
|
182
186
|
letta_client/types/tool_call_message.py,sha256=ea6QylDi9FibPl2TJJ1AnQF7hCQYPRDFiQaYVLTIUnc,1020
|
|
183
187
|
letta_client/types/tool_call_message_tool_call.py,sha256=574_EuZw2S1A1bGaAfg1KMmPoBggmLVKfsizOx82510,295
|
|
184
|
-
letta_client/types/tool_create.py,sha256=
|
|
188
|
+
letta_client/types/tool_create.py,sha256=GC5_7bXmiiQVloCZuy6UtqIAH0kHXNOQcEhC_CRfoyY,1506
|
|
185
189
|
letta_client/types/tool_function_choice.py,sha256=QW3cglpcoHmyXSpslg0GhrnrnCuXYNZcGtSps6Z5GiA,693
|
|
186
190
|
letta_client/types/tool_input.py,sha256=Q1KMbLlbhu3l2kn_gkqmYafTD4ndZpQPUdYX6vzmjW0,674
|
|
187
191
|
letta_client/types/tool_message.py,sha256=Ak3rItXVRStenBXqyYOhUDr3T6EudLkMOEi1ev5b4aA,619
|
|
@@ -199,6 +203,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
199
203
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
200
204
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
201
205
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
202
|
-
letta_client-0.1.
|
|
203
|
-
letta_client-0.1.
|
|
204
|
-
letta_client-0.1.
|
|
206
|
+
letta_client-0.1.13.dist-info/METADATA,sha256=he_s5LZbfZ4lzxrPNRuEisNQkRfFD3AMU8IQ99NuEXw,4929
|
|
207
|
+
letta_client-0.1.13.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
208
|
+
letta_client-0.1.13.dist-info/RECORD,,
|
|
File without changes
|