letta-client 0.1.310__py3-none-any.whl → 0.1.312__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 -0
- letta_client/agents/blocks/client.py +10 -0
- letta_client/agents/blocks/raw_client.py +10 -0
- letta_client/blocks/client.py +20 -0
- letta_client/blocks/raw_client.py +20 -0
- letta_client/core/client_wrapper.py +2 -2
- letta_client/groups/client.py +10 -0
- letta_client/groups/raw_client.py +10 -0
- letta_client/types/__init__.py +6 -0
- letta_client/types/block.py +5 -0
- letta_client/types/block_schema.py +5 -0
- letta_client/types/block_update.py +5 -0
- letta_client/types/create_block.py +5 -0
- letta_client/types/delete_deployment_response.py +27 -0
- letta_client/types/deployment_entity.py +27 -0
- letta_client/types/file_block.py +5 -0
- letta_client/types/group.py +5 -0
- letta_client/types/group_schema.py +5 -0
- letta_client/types/internal_template_block_create.py +5 -0
- letta_client/types/internal_template_group_create.py +5 -0
- letta_client/types/list_deployment_entities_response.py +28 -0
- {letta_client-0.1.310.dist-info → letta_client-0.1.312.dist-info}/METADATA +1 -1
- {letta_client-0.1.310.dist-info → letta_client-0.1.312.dist-info}/RECORD +24 -21
- {letta_client-0.1.310.dist-info → letta_client-0.1.312.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -110,6 +110,8 @@ from .types import (
|
|
|
110
110
|
CustomFormatGrammarGrammar,
|
|
111
111
|
CustomFormatGrammarGrammarSyntax,
|
|
112
112
|
CustomFormatText,
|
|
113
|
+
DeleteDeploymentResponse,
|
|
114
|
+
DeploymentEntity,
|
|
113
115
|
DuplicateFileHandling,
|
|
114
116
|
DynamicManager,
|
|
115
117
|
DynamicManagerUpdate,
|
|
@@ -191,6 +193,7 @@ from .types import (
|
|
|
191
193
|
LettaStreamingRequestMessagesItem,
|
|
192
194
|
LettaUsageStatistics,
|
|
193
195
|
LettaUserMessageContentUnion,
|
|
196
|
+
ListDeploymentEntitiesResponse,
|
|
194
197
|
LlmConfig,
|
|
195
198
|
LlmConfigCompatibilityType,
|
|
196
199
|
LlmConfigModelEndpointType,
|
|
@@ -574,7 +577,9 @@ __all__ = [
|
|
|
574
577
|
"CustomFormatGrammarGrammar",
|
|
575
578
|
"CustomFormatGrammarGrammarSyntax",
|
|
576
579
|
"CustomFormatText",
|
|
580
|
+
"DeleteDeploymentResponse",
|
|
577
581
|
"DeleteMcpServerResponseItem",
|
|
582
|
+
"DeploymentEntity",
|
|
578
583
|
"DuplicateFileHandling",
|
|
579
584
|
"DynamicManager",
|
|
580
585
|
"DynamicManagerUpdate",
|
|
@@ -661,6 +666,7 @@ __all__ = [
|
|
|
661
666
|
"LettaStreamingResponse",
|
|
662
667
|
"LettaUsageStatistics",
|
|
663
668
|
"LettaUserMessageContentUnion",
|
|
669
|
+
"ListDeploymentEntitiesResponse",
|
|
664
670
|
"ListMcpServersResponseValue",
|
|
665
671
|
"LlmConfig",
|
|
666
672
|
"LlmConfigCompatibilityType",
|
|
@@ -81,6 +81,7 @@ class BlocksClient:
|
|
|
81
81
|
read_only: typing.Optional[bool] = OMIT,
|
|
82
82
|
description: typing.Optional[str] = OMIT,
|
|
83
83
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
84
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
84
85
|
request_options: typing.Optional[RequestOptions] = None,
|
|
85
86
|
) -> Block:
|
|
86
87
|
"""
|
|
@@ -131,6 +132,9 @@ class BlocksClient:
|
|
|
131
132
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
132
133
|
Metadata of the block.
|
|
133
134
|
|
|
135
|
+
hidden : typing.Optional[bool]
|
|
136
|
+
If set to True, the block will be hidden.
|
|
137
|
+
|
|
134
138
|
request_options : typing.Optional[RequestOptions]
|
|
135
139
|
Request-specific configuration.
|
|
136
140
|
|
|
@@ -168,6 +172,7 @@ class BlocksClient:
|
|
|
168
172
|
read_only=read_only,
|
|
169
173
|
description=description,
|
|
170
174
|
metadata=metadata,
|
|
175
|
+
hidden=hidden,
|
|
171
176
|
request_options=request_options,
|
|
172
177
|
)
|
|
173
178
|
return _response.data
|
|
@@ -353,6 +358,7 @@ class AsyncBlocksClient:
|
|
|
353
358
|
read_only: typing.Optional[bool] = OMIT,
|
|
354
359
|
description: typing.Optional[str] = OMIT,
|
|
355
360
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
361
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
356
362
|
request_options: typing.Optional[RequestOptions] = None,
|
|
357
363
|
) -> Block:
|
|
358
364
|
"""
|
|
@@ -403,6 +409,9 @@ class AsyncBlocksClient:
|
|
|
403
409
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
404
410
|
Metadata of the block.
|
|
405
411
|
|
|
412
|
+
hidden : typing.Optional[bool]
|
|
413
|
+
If set to True, the block will be hidden.
|
|
414
|
+
|
|
406
415
|
request_options : typing.Optional[RequestOptions]
|
|
407
416
|
Request-specific configuration.
|
|
408
417
|
|
|
@@ -448,6 +457,7 @@ class AsyncBlocksClient:
|
|
|
448
457
|
read_only=read_only,
|
|
449
458
|
description=description,
|
|
450
459
|
metadata=metadata,
|
|
460
|
+
hidden=hidden,
|
|
451
461
|
request_options=request_options,
|
|
452
462
|
)
|
|
453
463
|
return _response.data
|
|
@@ -91,6 +91,7 @@ class RawBlocksClient:
|
|
|
91
91
|
read_only: typing.Optional[bool] = OMIT,
|
|
92
92
|
description: typing.Optional[str] = OMIT,
|
|
93
93
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
94
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
94
95
|
request_options: typing.Optional[RequestOptions] = None,
|
|
95
96
|
) -> HttpResponse[Block]:
|
|
96
97
|
"""
|
|
@@ -141,6 +142,9 @@ class RawBlocksClient:
|
|
|
141
142
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
142
143
|
Metadata of the block.
|
|
143
144
|
|
|
145
|
+
hidden : typing.Optional[bool]
|
|
146
|
+
If set to True, the block will be hidden.
|
|
147
|
+
|
|
144
148
|
request_options : typing.Optional[RequestOptions]
|
|
145
149
|
Request-specific configuration.
|
|
146
150
|
|
|
@@ -166,6 +170,7 @@ class RawBlocksClient:
|
|
|
166
170
|
"read_only": read_only,
|
|
167
171
|
"description": description,
|
|
168
172
|
"metadata": metadata,
|
|
173
|
+
"hidden": hidden,
|
|
169
174
|
},
|
|
170
175
|
headers={
|
|
171
176
|
"content-type": "application/json",
|
|
@@ -424,6 +429,7 @@ class AsyncRawBlocksClient:
|
|
|
424
429
|
read_only: typing.Optional[bool] = OMIT,
|
|
425
430
|
description: typing.Optional[str] = OMIT,
|
|
426
431
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
432
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
427
433
|
request_options: typing.Optional[RequestOptions] = None,
|
|
428
434
|
) -> AsyncHttpResponse[Block]:
|
|
429
435
|
"""
|
|
@@ -474,6 +480,9 @@ class AsyncRawBlocksClient:
|
|
|
474
480
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
475
481
|
Metadata of the block.
|
|
476
482
|
|
|
483
|
+
hidden : typing.Optional[bool]
|
|
484
|
+
If set to True, the block will be hidden.
|
|
485
|
+
|
|
477
486
|
request_options : typing.Optional[RequestOptions]
|
|
478
487
|
Request-specific configuration.
|
|
479
488
|
|
|
@@ -499,6 +508,7 @@ class AsyncRawBlocksClient:
|
|
|
499
508
|
"read_only": read_only,
|
|
500
509
|
"description": description,
|
|
501
510
|
"metadata": metadata,
|
|
511
|
+
"hidden": hidden,
|
|
502
512
|
},
|
|
503
513
|
headers={
|
|
504
514
|
"content-type": "application/json",
|
letta_client/blocks/client.py
CHANGED
|
@@ -150,6 +150,7 @@ class BlocksClient:
|
|
|
150
150
|
read_only: typing.Optional[bool] = OMIT,
|
|
151
151
|
description: typing.Optional[str] = OMIT,
|
|
152
152
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
153
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
153
154
|
request_options: typing.Optional[RequestOptions] = None,
|
|
154
155
|
) -> Block:
|
|
155
156
|
"""
|
|
@@ -193,6 +194,9 @@ class BlocksClient:
|
|
|
193
194
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
194
195
|
Metadata of the block.
|
|
195
196
|
|
|
197
|
+
hidden : typing.Optional[bool]
|
|
198
|
+
If set to True, the block will be hidden.
|
|
199
|
+
|
|
196
200
|
request_options : typing.Optional[RequestOptions]
|
|
197
201
|
Request-specific configuration.
|
|
198
202
|
|
|
@@ -228,6 +232,7 @@ class BlocksClient:
|
|
|
228
232
|
read_only=read_only,
|
|
229
233
|
description=description,
|
|
230
234
|
metadata=metadata,
|
|
235
|
+
hidden=hidden,
|
|
231
236
|
request_options=request_options,
|
|
232
237
|
)
|
|
233
238
|
return _response.data
|
|
@@ -336,6 +341,7 @@ class BlocksClient:
|
|
|
336
341
|
read_only: typing.Optional[bool] = OMIT,
|
|
337
342
|
description: typing.Optional[str] = OMIT,
|
|
338
343
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
344
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
339
345
|
request_options: typing.Optional[RequestOptions] = None,
|
|
340
346
|
) -> Block:
|
|
341
347
|
"""
|
|
@@ -382,6 +388,9 @@ class BlocksClient:
|
|
|
382
388
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
383
389
|
Metadata of the block.
|
|
384
390
|
|
|
391
|
+
hidden : typing.Optional[bool]
|
|
392
|
+
If set to True, the block will be hidden.
|
|
393
|
+
|
|
385
394
|
request_options : typing.Optional[RequestOptions]
|
|
386
395
|
Request-specific configuration.
|
|
387
396
|
|
|
@@ -417,6 +426,7 @@ class BlocksClient:
|
|
|
417
426
|
read_only=read_only,
|
|
418
427
|
description=description,
|
|
419
428
|
metadata=metadata,
|
|
429
|
+
hidden=hidden,
|
|
420
430
|
request_options=request_options,
|
|
421
431
|
)
|
|
422
432
|
return _response.data
|
|
@@ -568,6 +578,7 @@ class AsyncBlocksClient:
|
|
|
568
578
|
read_only: typing.Optional[bool] = OMIT,
|
|
569
579
|
description: typing.Optional[str] = OMIT,
|
|
570
580
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
581
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
571
582
|
request_options: typing.Optional[RequestOptions] = None,
|
|
572
583
|
) -> Block:
|
|
573
584
|
"""
|
|
@@ -611,6 +622,9 @@ class AsyncBlocksClient:
|
|
|
611
622
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
612
623
|
Metadata of the block.
|
|
613
624
|
|
|
625
|
+
hidden : typing.Optional[bool]
|
|
626
|
+
If set to True, the block will be hidden.
|
|
627
|
+
|
|
614
628
|
request_options : typing.Optional[RequestOptions]
|
|
615
629
|
Request-specific configuration.
|
|
616
630
|
|
|
@@ -654,6 +668,7 @@ class AsyncBlocksClient:
|
|
|
654
668
|
read_only=read_only,
|
|
655
669
|
description=description,
|
|
656
670
|
metadata=metadata,
|
|
671
|
+
hidden=hidden,
|
|
657
672
|
request_options=request_options,
|
|
658
673
|
)
|
|
659
674
|
return _response.data
|
|
@@ -786,6 +801,7 @@ class AsyncBlocksClient:
|
|
|
786
801
|
read_only: typing.Optional[bool] = OMIT,
|
|
787
802
|
description: typing.Optional[str] = OMIT,
|
|
788
803
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
804
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
789
805
|
request_options: typing.Optional[RequestOptions] = None,
|
|
790
806
|
) -> Block:
|
|
791
807
|
"""
|
|
@@ -832,6 +848,9 @@ class AsyncBlocksClient:
|
|
|
832
848
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
833
849
|
Metadata of the block.
|
|
834
850
|
|
|
851
|
+
hidden : typing.Optional[bool]
|
|
852
|
+
If set to True, the block will be hidden.
|
|
853
|
+
|
|
835
854
|
request_options : typing.Optional[RequestOptions]
|
|
836
855
|
Request-specific configuration.
|
|
837
856
|
|
|
@@ -875,6 +894,7 @@ class AsyncBlocksClient:
|
|
|
875
894
|
read_only=read_only,
|
|
876
895
|
description=description,
|
|
877
896
|
metadata=metadata,
|
|
897
|
+
hidden=hidden,
|
|
878
898
|
request_options=request_options,
|
|
879
899
|
)
|
|
880
900
|
return _response.data
|
|
@@ -161,6 +161,7 @@ class RawBlocksClient:
|
|
|
161
161
|
read_only: typing.Optional[bool] = OMIT,
|
|
162
162
|
description: typing.Optional[str] = OMIT,
|
|
163
163
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
164
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
164
165
|
request_options: typing.Optional[RequestOptions] = None,
|
|
165
166
|
) -> HttpResponse[Block]:
|
|
166
167
|
"""
|
|
@@ -204,6 +205,9 @@ class RawBlocksClient:
|
|
|
204
205
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
205
206
|
Metadata of the block.
|
|
206
207
|
|
|
208
|
+
hidden : typing.Optional[bool]
|
|
209
|
+
If set to True, the block will be hidden.
|
|
210
|
+
|
|
207
211
|
request_options : typing.Optional[RequestOptions]
|
|
208
212
|
Request-specific configuration.
|
|
209
213
|
|
|
@@ -229,6 +233,7 @@ class RawBlocksClient:
|
|
|
229
233
|
"read_only": read_only,
|
|
230
234
|
"description": description,
|
|
231
235
|
"metadata": metadata,
|
|
236
|
+
"hidden": hidden,
|
|
232
237
|
},
|
|
233
238
|
headers={
|
|
234
239
|
"content-type": "application/json",
|
|
@@ -420,6 +425,7 @@ class RawBlocksClient:
|
|
|
420
425
|
read_only: typing.Optional[bool] = OMIT,
|
|
421
426
|
description: typing.Optional[str] = OMIT,
|
|
422
427
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
428
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
423
429
|
request_options: typing.Optional[RequestOptions] = None,
|
|
424
430
|
) -> HttpResponse[Block]:
|
|
425
431
|
"""
|
|
@@ -466,6 +472,9 @@ class RawBlocksClient:
|
|
|
466
472
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
467
473
|
Metadata of the block.
|
|
468
474
|
|
|
475
|
+
hidden : typing.Optional[bool]
|
|
476
|
+
If set to True, the block will be hidden.
|
|
477
|
+
|
|
469
478
|
request_options : typing.Optional[RequestOptions]
|
|
470
479
|
Request-specific configuration.
|
|
471
480
|
|
|
@@ -491,6 +500,7 @@ class RawBlocksClient:
|
|
|
491
500
|
"read_only": read_only,
|
|
492
501
|
"description": description,
|
|
493
502
|
"metadata": metadata,
|
|
503
|
+
"hidden": hidden,
|
|
494
504
|
},
|
|
495
505
|
headers={
|
|
496
506
|
"content-type": "application/json",
|
|
@@ -669,6 +679,7 @@ class AsyncRawBlocksClient:
|
|
|
669
679
|
read_only: typing.Optional[bool] = OMIT,
|
|
670
680
|
description: typing.Optional[str] = OMIT,
|
|
671
681
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
682
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
672
683
|
request_options: typing.Optional[RequestOptions] = None,
|
|
673
684
|
) -> AsyncHttpResponse[Block]:
|
|
674
685
|
"""
|
|
@@ -712,6 +723,9 @@ class AsyncRawBlocksClient:
|
|
|
712
723
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
713
724
|
Metadata of the block.
|
|
714
725
|
|
|
726
|
+
hidden : typing.Optional[bool]
|
|
727
|
+
If set to True, the block will be hidden.
|
|
728
|
+
|
|
715
729
|
request_options : typing.Optional[RequestOptions]
|
|
716
730
|
Request-specific configuration.
|
|
717
731
|
|
|
@@ -737,6 +751,7 @@ class AsyncRawBlocksClient:
|
|
|
737
751
|
"read_only": read_only,
|
|
738
752
|
"description": description,
|
|
739
753
|
"metadata": metadata,
|
|
754
|
+
"hidden": hidden,
|
|
740
755
|
},
|
|
741
756
|
headers={
|
|
742
757
|
"content-type": "application/json",
|
|
@@ -928,6 +943,7 @@ class AsyncRawBlocksClient:
|
|
|
928
943
|
read_only: typing.Optional[bool] = OMIT,
|
|
929
944
|
description: typing.Optional[str] = OMIT,
|
|
930
945
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
946
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
931
947
|
request_options: typing.Optional[RequestOptions] = None,
|
|
932
948
|
) -> AsyncHttpResponse[Block]:
|
|
933
949
|
"""
|
|
@@ -974,6 +990,9 @@ class AsyncRawBlocksClient:
|
|
|
974
990
|
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
975
991
|
Metadata of the block.
|
|
976
992
|
|
|
993
|
+
hidden : typing.Optional[bool]
|
|
994
|
+
If set to True, the block will be hidden.
|
|
995
|
+
|
|
977
996
|
request_options : typing.Optional[RequestOptions]
|
|
978
997
|
Request-specific configuration.
|
|
979
998
|
|
|
@@ -999,6 +1018,7 @@ class AsyncRawBlocksClient:
|
|
|
999
1018
|
"read_only": read_only,
|
|
1000
1019
|
"description": description,
|
|
1001
1020
|
"metadata": metadata,
|
|
1021
|
+
"hidden": hidden,
|
|
1002
1022
|
},
|
|
1003
1023
|
headers={
|
|
1004
1024
|
"content-type": "application/json",
|
|
@@ -24,10 +24,10 @@ class BaseClientWrapper:
|
|
|
24
24
|
|
|
25
25
|
def get_headers(self) -> typing.Dict[str, str]:
|
|
26
26
|
headers: typing.Dict[str, str] = {
|
|
27
|
-
"User-Agent": "letta-client/0.1.
|
|
27
|
+
"User-Agent": "letta-client/0.1.312",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "letta-client",
|
|
30
|
-
"X-Fern-SDK-Version": "0.1.
|
|
30
|
+
"X-Fern-SDK-Version": "0.1.312",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
letta_client/groups/client.py
CHANGED
|
@@ -97,6 +97,7 @@ class GroupsClient:
|
|
|
97
97
|
manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
|
|
98
98
|
project_id: typing.Optional[str] = OMIT,
|
|
99
99
|
shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
100
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
100
101
|
request_options: typing.Optional[RequestOptions] = None,
|
|
101
102
|
) -> Group:
|
|
102
103
|
"""
|
|
@@ -119,6 +120,9 @@ class GroupsClient:
|
|
|
119
120
|
shared_block_ids : typing.Optional[typing.Sequence[str]]
|
|
120
121
|
|
|
121
122
|
|
|
123
|
+
hidden : typing.Optional[bool]
|
|
124
|
+
If set to True, the group will be hidden.
|
|
125
|
+
|
|
122
126
|
request_options : typing.Optional[RequestOptions]
|
|
123
127
|
Request-specific configuration.
|
|
124
128
|
|
|
@@ -146,6 +150,7 @@ class GroupsClient:
|
|
|
146
150
|
manager_config=manager_config,
|
|
147
151
|
project_id=project_id,
|
|
148
152
|
shared_block_ids=shared_block_ids,
|
|
153
|
+
hidden=hidden,
|
|
149
154
|
request_options=request_options,
|
|
150
155
|
)
|
|
151
156
|
return _response.data
|
|
@@ -396,6 +401,7 @@ class AsyncGroupsClient:
|
|
|
396
401
|
manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
|
|
397
402
|
project_id: typing.Optional[str] = OMIT,
|
|
398
403
|
shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
404
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
399
405
|
request_options: typing.Optional[RequestOptions] = None,
|
|
400
406
|
) -> Group:
|
|
401
407
|
"""
|
|
@@ -418,6 +424,9 @@ class AsyncGroupsClient:
|
|
|
418
424
|
shared_block_ids : typing.Optional[typing.Sequence[str]]
|
|
419
425
|
|
|
420
426
|
|
|
427
|
+
hidden : typing.Optional[bool]
|
|
428
|
+
If set to True, the group will be hidden.
|
|
429
|
+
|
|
421
430
|
request_options : typing.Optional[RequestOptions]
|
|
422
431
|
Request-specific configuration.
|
|
423
432
|
|
|
@@ -453,6 +462,7 @@ class AsyncGroupsClient:
|
|
|
453
462
|
manager_config=manager_config,
|
|
454
463
|
project_id=project_id,
|
|
455
464
|
shared_block_ids=shared_block_ids,
|
|
465
|
+
hidden=hidden,
|
|
456
466
|
request_options=request_options,
|
|
457
467
|
)
|
|
458
468
|
return _response.data
|
|
@@ -109,6 +109,7 @@ class RawGroupsClient:
|
|
|
109
109
|
manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
|
|
110
110
|
project_id: typing.Optional[str] = OMIT,
|
|
111
111
|
shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
112
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
112
113
|
request_options: typing.Optional[RequestOptions] = None,
|
|
113
114
|
) -> HttpResponse[Group]:
|
|
114
115
|
"""
|
|
@@ -131,6 +132,9 @@ class RawGroupsClient:
|
|
|
131
132
|
shared_block_ids : typing.Optional[typing.Sequence[str]]
|
|
132
133
|
|
|
133
134
|
|
|
135
|
+
hidden : typing.Optional[bool]
|
|
136
|
+
If set to True, the group will be hidden.
|
|
137
|
+
|
|
134
138
|
request_options : typing.Optional[RequestOptions]
|
|
135
139
|
Request-specific configuration.
|
|
136
140
|
|
|
@@ -150,6 +154,7 @@ class RawGroupsClient:
|
|
|
150
154
|
),
|
|
151
155
|
"project_id": project_id,
|
|
152
156
|
"shared_block_ids": shared_block_ids,
|
|
157
|
+
"hidden": hidden,
|
|
153
158
|
},
|
|
154
159
|
headers={
|
|
155
160
|
"content-type": "application/json",
|
|
@@ -502,6 +507,7 @@ class AsyncRawGroupsClient:
|
|
|
502
507
|
manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
|
|
503
508
|
project_id: typing.Optional[str] = OMIT,
|
|
504
509
|
shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
510
|
+
hidden: typing.Optional[bool] = OMIT,
|
|
505
511
|
request_options: typing.Optional[RequestOptions] = None,
|
|
506
512
|
) -> AsyncHttpResponse[Group]:
|
|
507
513
|
"""
|
|
@@ -524,6 +530,9 @@ class AsyncRawGroupsClient:
|
|
|
524
530
|
shared_block_ids : typing.Optional[typing.Sequence[str]]
|
|
525
531
|
|
|
526
532
|
|
|
533
|
+
hidden : typing.Optional[bool]
|
|
534
|
+
If set to True, the group will be hidden.
|
|
535
|
+
|
|
527
536
|
request_options : typing.Optional[RequestOptions]
|
|
528
537
|
Request-specific configuration.
|
|
529
538
|
|
|
@@ -543,6 +552,7 @@ class AsyncRawGroupsClient:
|
|
|
543
552
|
),
|
|
544
553
|
"project_id": project_id,
|
|
545
554
|
"shared_block_ids": shared_block_ids,
|
|
555
|
+
"hidden": hidden,
|
|
546
556
|
},
|
|
547
557
|
headers={
|
|
548
558
|
"content-type": "application/json",
|
letta_client/types/__init__.py
CHANGED
|
@@ -109,6 +109,8 @@ from .custom_format_grammar import CustomFormatGrammar
|
|
|
109
109
|
from .custom_format_grammar_grammar import CustomFormatGrammarGrammar
|
|
110
110
|
from .custom_format_grammar_grammar_syntax import CustomFormatGrammarGrammarSyntax
|
|
111
111
|
from .custom_format_text import CustomFormatText
|
|
112
|
+
from .delete_deployment_response import DeleteDeploymentResponse
|
|
113
|
+
from .deployment_entity import DeploymentEntity
|
|
112
114
|
from .duplicate_file_handling import DuplicateFileHandling
|
|
113
115
|
from .dynamic_manager import DynamicManager
|
|
114
116
|
from .dynamic_manager_update import DynamicManagerUpdate
|
|
@@ -198,6 +200,7 @@ from .letta_streaming_request import LettaStreamingRequest
|
|
|
198
200
|
from .letta_streaming_request_messages_item import LettaStreamingRequestMessagesItem
|
|
199
201
|
from .letta_usage_statistics import LettaUsageStatistics
|
|
200
202
|
from .letta_user_message_content_union import LettaUserMessageContentUnion
|
|
203
|
+
from .list_deployment_entities_response import ListDeploymentEntitiesResponse
|
|
201
204
|
from .llm_config import LlmConfig
|
|
202
205
|
from .llm_config_compatibility_type import LlmConfigCompatibilityType
|
|
203
206
|
from .llm_config_model_endpoint_type import LlmConfigModelEndpointType
|
|
@@ -456,6 +459,8 @@ __all__ = [
|
|
|
456
459
|
"CustomFormatGrammarGrammar",
|
|
457
460
|
"CustomFormatGrammarGrammarSyntax",
|
|
458
461
|
"CustomFormatText",
|
|
462
|
+
"DeleteDeploymentResponse",
|
|
463
|
+
"DeploymentEntity",
|
|
459
464
|
"DuplicateFileHandling",
|
|
460
465
|
"DynamicManager",
|
|
461
466
|
"DynamicManagerUpdate",
|
|
@@ -537,6 +542,7 @@ __all__ = [
|
|
|
537
542
|
"LettaStreamingRequestMessagesItem",
|
|
538
543
|
"LettaUsageStatistics",
|
|
539
544
|
"LettaUserMessageContentUnion",
|
|
545
|
+
"ListDeploymentEntitiesResponse",
|
|
540
546
|
"LlmConfig",
|
|
541
547
|
"LlmConfigCompatibilityType",
|
|
542
548
|
"LlmConfigModelEndpointType",
|
letta_client/types/block.py
CHANGED
|
@@ -88,6 +88,11 @@ class Block(UncheckedBaseModel):
|
|
|
88
88
|
Metadata of the block.
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
92
|
+
"""
|
|
93
|
+
If set to True, the block will be hidden.
|
|
94
|
+
"""
|
|
95
|
+
|
|
91
96
|
id: typing.Optional[str] = pydantic.Field(default=None)
|
|
92
97
|
"""
|
|
93
98
|
The human-friendly ID of the Block
|
|
@@ -73,6 +73,11 @@ class BlockSchema(UncheckedBaseModel):
|
|
|
73
73
|
Metadata of the block.
|
|
74
74
|
"""
|
|
75
75
|
|
|
76
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
77
|
+
"""
|
|
78
|
+
If set to True, the block will be hidden.
|
|
79
|
+
"""
|
|
80
|
+
|
|
76
81
|
id: str = pydantic.Field()
|
|
77
82
|
"""
|
|
78
83
|
Human-readable identifier for this block in the file
|
|
@@ -77,6 +77,11 @@ class BlockUpdate(UncheckedBaseModel):
|
|
|
77
77
|
Metadata of the block.
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
81
|
+
"""
|
|
82
|
+
If set to True, the block will be hidden.
|
|
83
|
+
"""
|
|
84
|
+
|
|
80
85
|
if IS_PYDANTIC_V2:
|
|
81
86
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
82
87
|
else:
|
|
@@ -73,6 +73,11 @@ class CreateBlock(UncheckedBaseModel):
|
|
|
73
73
|
Metadata of the block.
|
|
74
74
|
"""
|
|
75
75
|
|
|
76
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
77
|
+
"""
|
|
78
|
+
If set to True, the block will be hidden.
|
|
79
|
+
"""
|
|
80
|
+
|
|
76
81
|
if IS_PYDANTIC_V2:
|
|
77
82
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
78
83
|
else:
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class DeleteDeploymentResponse(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Response model for delete deployment operation.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
deleted_blocks: typing.Optional[typing.List[str]] = None
|
|
16
|
+
deleted_agents: typing.Optional[typing.List[str]] = None
|
|
17
|
+
deleted_groups: typing.Optional[typing.List[str]] = None
|
|
18
|
+
message: str
|
|
19
|
+
|
|
20
|
+
if IS_PYDANTIC_V2:
|
|
21
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
22
|
+
else:
|
|
23
|
+
|
|
24
|
+
class Config:
|
|
25
|
+
frozen = True
|
|
26
|
+
smart_union = True
|
|
27
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class DeploymentEntity(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
A deployment entity.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
id: str
|
|
16
|
+
type: str
|
|
17
|
+
name: typing.Optional[str] = None
|
|
18
|
+
description: typing.Optional[str] = None
|
|
19
|
+
|
|
20
|
+
if IS_PYDANTIC_V2:
|
|
21
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
22
|
+
else:
|
|
23
|
+
|
|
24
|
+
class Config:
|
|
25
|
+
frozen = True
|
|
26
|
+
smart_union = True
|
|
27
|
+
extra = pydantic.Extra.allow
|
letta_client/types/file_block.py
CHANGED
|
@@ -74,6 +74,11 @@ class FileBlock(UncheckedBaseModel):
|
|
|
74
74
|
Metadata of the block.
|
|
75
75
|
"""
|
|
76
76
|
|
|
77
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
78
|
+
"""
|
|
79
|
+
If set to True, the block will be hidden.
|
|
80
|
+
"""
|
|
81
|
+
|
|
77
82
|
id: typing.Optional[str] = pydantic.Field(default=None)
|
|
78
83
|
"""
|
|
79
84
|
The human-friendly ID of the Block
|
letta_client/types/group.py
CHANGED
|
@@ -94,6 +94,11 @@ class Group(UncheckedBaseModel):
|
|
|
94
94
|
The desired minimum length of messages in the context window of the convo agent. This is a best effort, and may be off-by-one due to user/assistant interleaving.
|
|
95
95
|
"""
|
|
96
96
|
|
|
97
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
98
|
+
"""
|
|
99
|
+
If set to True, the group will be hidden.
|
|
100
|
+
"""
|
|
101
|
+
|
|
97
102
|
if IS_PYDANTIC_V2:
|
|
98
103
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
99
104
|
else:
|
|
@@ -38,6 +38,11 @@ class GroupSchema(UncheckedBaseModel):
|
|
|
38
38
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
42
|
+
"""
|
|
43
|
+
If set to True, the group will be hidden.
|
|
44
|
+
"""
|
|
45
|
+
|
|
41
46
|
id: str = pydantic.Field()
|
|
42
47
|
"""
|
|
43
48
|
Human-readable identifier for this group in the file
|
|
@@ -78,6 +78,11 @@ class InternalTemplateBlockCreate(UncheckedBaseModel):
|
|
|
78
78
|
Metadata of the block.
|
|
79
79
|
"""
|
|
80
80
|
|
|
81
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
82
|
+
"""
|
|
83
|
+
If set to True, the block will be hidden.
|
|
84
|
+
"""
|
|
85
|
+
|
|
81
86
|
if IS_PYDANTIC_V2:
|
|
82
87
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
83
88
|
else:
|
|
@@ -38,6 +38,11 @@ class InternalTemplateGroupCreate(UncheckedBaseModel):
|
|
|
38
38
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
+
hidden: typing.Optional[bool] = pydantic.Field(default=None)
|
|
42
|
+
"""
|
|
43
|
+
If set to True, the group will be hidden.
|
|
44
|
+
"""
|
|
45
|
+
|
|
41
46
|
base_template_id: str = pydantic.Field()
|
|
42
47
|
"""
|
|
43
48
|
The id of the base template.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
+
from .deployment_entity import DeploymentEntity
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ListDeploymentEntitiesResponse(UncheckedBaseModel):
|
|
12
|
+
"""
|
|
13
|
+
Response model for listing deployment entities.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
entities: typing.Optional[typing.List[DeploymentEntity]] = None
|
|
17
|
+
total_count: int
|
|
18
|
+
deployment_id: str
|
|
19
|
+
message: str
|
|
20
|
+
|
|
21
|
+
if IS_PYDANTIC_V2:
|
|
22
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
23
|
+
else:
|
|
24
|
+
|
|
25
|
+
class Config:
|
|
26
|
+
frozen = True
|
|
27
|
+
smart_union = True
|
|
28
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=xc0nY1n5HLlX3pzH-xIvxHYTuY97N9uOrqb2E9Zo2hc,28359
|
|
2
2
|
letta_client/agents/__init__.py,sha256=6U2CPqYOtgufFoEhev61AzE-oOqgAQPUBsN8H7YJDbg,2081
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
4
|
-
letta_client/agents/blocks/client.py,sha256=
|
|
5
|
-
letta_client/agents/blocks/raw_client.py,sha256=
|
|
4
|
+
letta_client/agents/blocks/client.py,sha256=WAKaFGx76QqDG1Ygd2hlvyXHTjV-ObjnvQSMKK6h1SM,16143
|
|
5
|
+
letta_client/agents/blocks/raw_client.py,sha256=sYWCzx2HRrBsCt4XUW3fVsoQodqzGyg1d_Atl6WxUqw,25918
|
|
6
6
|
letta_client/agents/client.py,sha256=Vbp6YR8VGA47BZdPx-sB3TP8ziFqCcR97_NBK54jiF0,74128
|
|
7
7
|
letta_client/agents/context/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
8
8
|
letta_client/agents/context/client.py,sha256=fhpJFWRs6INGreRyEw9gsFnlUWR48vIHbN_jVIHIBrw,3052
|
|
@@ -72,8 +72,8 @@ letta_client/blocks/__init__.py,sha256=OK5uayItv4zSbrTkGOcJTg_18SteMmhDkY9W1wXAB
|
|
|
72
72
|
letta_client/blocks/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
73
73
|
letta_client/blocks/agents/client.py,sha256=b03IICHfrBToWFjSsfp_ZUN0RBJIAZh0zkV2PVuYbzg,4143
|
|
74
74
|
letta_client/blocks/agents/raw_client.py,sha256=aiatfKp8iVtXRL1aSpxoCW_JhWljqLRRQtRz964vGMA,5936
|
|
75
|
-
letta_client/blocks/client.py,sha256=
|
|
76
|
-
letta_client/blocks/raw_client.py,sha256=
|
|
75
|
+
letta_client/blocks/client.py,sha256=E4-vslCVlwbMmSoA4qNh_5nmuBuGeDSJo5l4NIkyoHw,28034
|
|
76
|
+
letta_client/blocks/raw_client.py,sha256=9_Bw1YBoOWW8uPfb1SJ33ChiSuLCorVvr8uOa--072Q,40577
|
|
77
77
|
letta_client/client.py,sha256=tW5VYkenZUTQ77Z9gyMWEswEYZpyO3jAaacFk5FfXos,24940
|
|
78
78
|
letta_client/client_side_access_tokens/__init__.py,sha256=28nrPumub-n2rjse3XCDcwjN6gRZveEh-8CC1PQsdo8,1581
|
|
79
79
|
letta_client/client_side_access_tokens/client.py,sha256=8JRdcMMSWVFpf6dd54tX7wSSBkjpejzveqiGGRddz40,11051
|
|
@@ -92,7 +92,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
92
92
|
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
|
|
93
93
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
94
94
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
95
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
95
|
+
letta_client/core/client_wrapper.py,sha256=zkros2oImaRFhnK1GCuFEv0NLLHvDujI-xPagf-jgK4,2776
|
|
96
96
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
97
97
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
98
98
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -125,7 +125,7 @@ letta_client/folders/passages/client.py,sha256=Z7iefTFmudpKV-JoSW3mLNoJoU2K53Cto
|
|
|
125
125
|
letta_client/folders/passages/raw_client.py,sha256=xpDddxeKOxTcvB-qtHfP2p8e4T1hZSAYwp-smrJNhc8,5901
|
|
126
126
|
letta_client/folders/raw_client.py,sha256=bd5th49qJBEdmDMB5ugVEzP_mXUeZsCo3Kxn6KnugYU,41600
|
|
127
127
|
letta_client/groups/__init__.py,sha256=qrGge7rHzMf1V10ZpxL3rbxmpx9esxUCoQ29gV3Nwhk,454
|
|
128
|
-
letta_client/groups/client.py,sha256=
|
|
128
|
+
letta_client/groups/client.py,sha256=63NtCAe4OEn1abqYliI6RnfkbfumiPd33G9BhoOfJ9I,17191
|
|
129
129
|
letta_client/groups/messages/__init__.py,sha256=sX6KPOYCrwTCyzKGNBxejgOvDNFopOJkWd037ei6Uik,263
|
|
130
130
|
letta_client/groups/messages/client.py,sha256=_Bj44n8PBTRvPhU3AdBDL8QGOeI2UDH-d4B-Q5BbHLI,25670
|
|
131
131
|
letta_client/groups/messages/raw_client.py,sha256=gt9f3ntwa7qmdUfvxVIZOMlCeTBiT8kUavzPY-qcjH4,37893
|
|
@@ -133,7 +133,7 @@ letta_client/groups/messages/types/__init__.py,sha256=8WRhpu-Xkvw1oqY-n0vptOO46B
|
|
|
133
133
|
letta_client/groups/messages/types/letta_streaming_response.py,sha256=IFJSwCiedThHyMYhK4CqLV01HqS8JZ1KZDs4V13Yc0w,666
|
|
134
134
|
letta_client/groups/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
135
135
|
letta_client/groups/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
|
|
136
|
-
letta_client/groups/raw_client.py,sha256=
|
|
136
|
+
letta_client/groups/raw_client.py,sha256=gfT4hD2HEvBtteZu2tMZPucOwwHS-zg72SdFRxX1hyM,29943
|
|
137
137
|
letta_client/groups/types/__init__.py,sha256=o7_cyVEMWvswE9WmTCYiJEVqKhPgtLPw398JkHzF7ro,285
|
|
138
138
|
letta_client/groups/types/group_create_manager_config.py,sha256=AelsYFpwlqpI9VeRvW7WE_Y5OTBxv97psgCybDubD8c,514
|
|
139
139
|
letta_client/groups/types/group_update_manager_config.py,sha256=ZE9HGu_7M9Zc9qa0RhCuXlxxUcE90MYzXj97M7cpiEU,626
|
|
@@ -262,7 +262,7 @@ letta_client/tools/types/streaming_response.py,sha256=V1qT-XAqm-z7zffJ7W1JKPCaxZ
|
|
|
262
262
|
letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzuBSKv8O3Y7qSUFrCiXEvSRk,373
|
|
263
263
|
letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
|
|
264
264
|
letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
|
|
265
|
-
letta_client/types/__init__.py,sha256=
|
|
265
|
+
letta_client/types/__init__.py,sha256=nWIk1pbnp4v0dKh4Bx2AeNmRBKnoXcC2DbCq0IUlrfI,31239
|
|
266
266
|
letta_client/types/action_model.py,sha256=VTXavHB6J2d4MjjTMEpkuEyVaiTHyj1FGfa4j8kN6hQ,1241
|
|
267
267
|
letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
|
|
268
268
|
letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
|
|
@@ -291,9 +291,9 @@ letta_client/types/bad_request_error_body.py,sha256=FXRnHlblilUaHvShh1ia8TgLy5Z1
|
|
|
291
291
|
letta_client/types/base_64_image.py,sha256=Ta6vR3od9sYQGrWgOSrFq7cS0-mm6cGTa2gWdFpSmo0,965
|
|
292
292
|
letta_client/types/base_tool_rule_schema.py,sha256=e2pHhj1fdWmuBfkyD_MODwCQnM_MrN6LL2CEx0SqKvY,583
|
|
293
293
|
letta_client/types/batch_job.py,sha256=TvfC7eXlkRgWaVp0jBE72uUEYsyNacgB1dSv-KaTfhc,2631
|
|
294
|
-
letta_client/types/block.py,sha256=
|
|
295
|
-
letta_client/types/block_schema.py,sha256=
|
|
296
|
-
letta_client/types/block_update.py,sha256=
|
|
294
|
+
letta_client/types/block.py,sha256=g-uYemwR0gGBgJIad4cMj8gx3gVI8EfhHiLOvrZ_Kv8,3793
|
|
295
|
+
letta_client/types/block_schema.py,sha256=iCXe0NHt_HQFOoc8rwplIE2GQehgArOotIecrtKKsD4,2304
|
|
296
|
+
letta_client/types/block_update.py,sha256=jauNp2WlyKT96FgAIpbzWGq4d8oKNWVbxZvepetvl8c,2389
|
|
297
297
|
letta_client/types/body_export_agent_serialized.py,sha256=KPLEf_PQpSRWdjDF6etcdtzo4WfHmQOdXwY7SktoDhM,880
|
|
298
298
|
letta_client/types/chat_completion_allowed_tool_choice_param.py,sha256=CrdImk8trUU-LFi-MmzvfufqcGcbjmcnosJ6LLbjHBU,760
|
|
299
299
|
letta_client/types/chat_completion_allowed_tools_param.py,sha256=CgzJpK31hM_3CwdbVNG1uvH-urRNL5xsgdKbSm2csMI,769
|
|
@@ -365,11 +365,13 @@ letta_client/types/conflict_error_body.py,sha256=XBgxHQyzZ2XDEaR9xZl_mGBuSnXeJUi
|
|
|
365
365
|
letta_client/types/context_window_overview.py,sha256=1rWCBJvgJkkyMVPjgbhx1y26WbRScMORK8PgVvFiv8s,2816
|
|
366
366
|
letta_client/types/continue_tool_rule.py,sha256=NsinYb8PMKFnBmQALOH_AzQ4c5yKxiqw7b7SxVWPXsE,1036
|
|
367
367
|
letta_client/types/core_memory_block_schema.py,sha256=5_k2XFEsPDwldGfPdzHW3j_7IJOBqTVscq89lXTD4d8,985
|
|
368
|
-
letta_client/types/create_block.py,sha256=
|
|
368
|
+
letta_client/types/create_block.py,sha256=ZWieozFojBRfecUNo0RnA6jI_juXykSAQ1TBq2Xa5g8,2170
|
|
369
369
|
letta_client/types/custom_format_grammar.py,sha256=l16BZsFb3wPxhl-S6Q93RCBajoActOSQg6PIjTlAAuU,709
|
|
370
370
|
letta_client/types/custom_format_grammar_grammar.py,sha256=8skLshQW2sHV41OJrdTJX1SRbA5rjRGrqAbetf4YK14,706
|
|
371
371
|
letta_client/types/custom_format_grammar_grammar_syntax.py,sha256=8xsJRq0D02hhMGCQ55owIE-w7i4wu1ymWGNaKjg3cO4,173
|
|
372
372
|
letta_client/types/custom_format_text.py,sha256=JZQHhuuMfqvlI82NZ3364Nhu1gCfmJOps2xFykEg5Mw,590
|
|
373
|
+
letta_client/types/delete_deployment_response.py,sha256=Sa6HkM8f-uh4SnlXKpDfnTk_T7giKOZpzTTfAd0_chA,825
|
|
374
|
+
letta_client/types/deployment_entity.py,sha256=00Dye8J0WWYH91J2z2EfCrBlPFW5V4SklT7d0TvkAI4,699
|
|
373
375
|
letta_client/types/duplicate_file_handling.py,sha256=xIYYN3qYtFaWHerE9KHGmXtyQb54pyE5xLREzAFakxI,183
|
|
374
376
|
letta_client/types/dynamic_manager.py,sha256=B-GwXKSD_-vvYPOx27OW6Jzp11ev2IPz6zr5dY3dJzA,854
|
|
375
377
|
letta_client/types/dynamic_manager_update.py,sha256=73luQ0zJ2__wghe-OVEJ-f4JIfrEwytpf5NGpTumS9k,889
|
|
@@ -379,7 +381,7 @@ letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=KGUZl9cAQN
|
|
|
379
381
|
letta_client/types/feedback_type.py,sha256=sDfsniSnnpSwzZqfIkRL7vYPxYqdwURpI6LMI7eDkoQ,160
|
|
380
382
|
letta_client/types/file.py,sha256=YPkTYb8V_XsvuQ6qXUzzDsp4iQMlZxPormZWoy7ROnI,629
|
|
381
383
|
letta_client/types/file_agent_schema.py,sha256=I0uHseeqx-FDK5pVAb6-0zrqpfNdXcjDTb4_LS2QmGw,1890
|
|
382
|
-
letta_client/types/file_block.py,sha256=
|
|
384
|
+
letta_client/types/file_block.py,sha256=0uRgIMwZDZuLZ-QklPts62aNTDglQeumSLtpwP6TWQ4,3268
|
|
383
385
|
letta_client/types/file_file.py,sha256=JEE9Aa0puZ4j6wZUI6HbZfF8keB_-qoPh4C-Mn6oOQ0,666
|
|
384
386
|
letta_client/types/file_metadata.py,sha256=RH11HWwyMyO2hmZzboTJzrLaOt7r7-I8pExUkXv0ja4,2831
|
|
385
387
|
letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
|
|
@@ -393,8 +395,8 @@ letta_client/types/function_output.py,sha256=PmcCPw239hjzoP32ynV-9UDQRNpDhrkpICp
|
|
|
393
395
|
letta_client/types/function_tool.py,sha256=X4yY7kSNSlDM4srYifeajOuwJkmBj26AW6Jlo5E-fvw,698
|
|
394
396
|
letta_client/types/generate_tool_input.py,sha256=9eqavChO3e0hXmovp1GvRIsNd8N11pBCiFjKpbG-WG8,1096
|
|
395
397
|
letta_client/types/generate_tool_output.py,sha256=0Heilco0ySpWaKsSGF0JIYHCRblVhYrcppBfhlpy98E,861
|
|
396
|
-
letta_client/types/group.py,sha256=
|
|
397
|
-
letta_client/types/group_schema.py,sha256=
|
|
398
|
+
letta_client/types/group.py,sha256=4UxeKdj3CjXCdiWLHj_RK29s_VX97ZAjppRy3uJiUIQ,2700
|
|
399
|
+
letta_client/types/group_schema.py,sha256=gbW0JfOnuVD_I4jnXBqdBgElcrLHFyXbeC7M5czU50M,1381
|
|
398
400
|
letta_client/types/group_schema_manager_config.py,sha256=3kIh_FoLwKOA5JDcZbHmpF8j1Ld0w7-kk9pRugVdWvw,474
|
|
399
401
|
letta_client/types/health.py,sha256=M5qOOKBb6PET3M4VrdHZ4_6643I0GNKq6WldhzkilJI,619
|
|
400
402
|
letta_client/types/hidden_reasoning_message.py,sha256=qbzaXbCp19cqaCRQaw2EWaqdxWSrRwohiLFfpY298JA,1691
|
|
@@ -416,8 +418,8 @@ letta_client/types/input_audio_format.py,sha256=QQFfndI9w66wIbGyHwfmJnk2bEJDPmEs
|
|
|
416
418
|
letta_client/types/internal_template_agent_create.py,sha256=q1qgpCpfHbkAMGZfJTw1SGS2EeKzPtLA6raygY70bls,8255
|
|
417
419
|
letta_client/types/internal_template_agent_create_response_format.py,sha256=4SOu2jhF5qZDlDorGrZ2cdyUF2do0IOtslZ_219qtzk,401
|
|
418
420
|
letta_client/types/internal_template_agent_create_tool_rules_item.py,sha256=zAZ1RbQnzI0K9YAP3OcBxRyi2WRx6G60lOnt6sekiS8,842
|
|
419
|
-
letta_client/types/internal_template_block_create.py,sha256=
|
|
420
|
-
letta_client/types/internal_template_group_create.py,sha256=
|
|
421
|
+
letta_client/types/internal_template_block_create.py,sha256=zxyp52nkcFrWzgM4IhHqehSwMcSSBSb6f5oD3XHE60c,2199
|
|
422
|
+
letta_client/types/internal_template_group_create.py,sha256=nTFITl4Q6sRlYe4heRL7p55ZxVc1FD0nG3O96d0UHTw,1588
|
|
421
423
|
letta_client/types/internal_template_group_create_manager_config.py,sha256=zAX6KW-UB6dyqXSm2Wtp30wRfitANePpuoulLzsQm7M,490
|
|
422
424
|
letta_client/types/job.py,sha256=dQLV9NM5mTYnS5iER8f-MvNAcC2CD7NXBBwQvbJN77c,3193
|
|
423
425
|
letta_client/types/job_status.py,sha256=hfkoSxAxkPegq1FSzzCTWQCBzoJwlvyrYnxtC0LzfUs,219
|
|
@@ -451,6 +453,7 @@ letta_client/types/letta_streaming_request.py,sha256=cNs5JlBn7OJWbQK3cwIuRSfBo1g
|
|
|
451
453
|
letta_client/types/letta_streaming_request_messages_item.py,sha256=1uUqT_cli1mJBgYh0aR_WOsHt-EgMTbikpgkYOJaJG4,247
|
|
452
454
|
letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
|
|
453
455
|
letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
|
|
456
|
+
letta_client/types/list_deployment_entities_response.py,sha256=0LMKw1XooxJy_h_Glmkyz0t-crHkI02j4UqWP4nJb-w,808
|
|
454
457
|
letta_client/types/llm_config.py,sha256=-fyzSmnQpkQ1vqqQOSyuIvMDfgSMMdrDtj-0Tbsw42I,3989
|
|
455
458
|
letta_client/types/llm_config_compatibility_type.py,sha256=m6E90W-R9-Oi3EGSV_GdPIuVC2rmAH7TsUKbl79EiAQ,165
|
|
456
459
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=o59NDg3-3ud2mqAPYze40G7kyVD7pkRRbdT_vdTqL24,602
|
|
@@ -590,6 +593,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
590
593
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
591
594
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
592
595
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
593
|
-
letta_client-0.1.
|
|
594
|
-
letta_client-0.1.
|
|
595
|
-
letta_client-0.1.
|
|
596
|
+
letta_client-0.1.312.dist-info/METADATA,sha256=OLitUTP11ZbrDSrXK0Nfpw5b4_Et3vAK_B0SzDApXvg,5782
|
|
597
|
+
letta_client-0.1.312.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
598
|
+
letta_client-0.1.312.dist-info/RECORD,,
|
|
File without changes
|