letta-client 0.1.273__py3-none-any.whl → 0.1.275__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/agents/messages/client.py +10 -0
- letta_client/agents/messages/raw_client.py +10 -0
- letta_client/core/client_wrapper.py +2 -2
- letta_client/groups/messages/client.py +10 -0
- letta_client/groups/messages/raw_client.py +10 -0
- letta_client/types/assistant_message.py +1 -0
- letta_client/types/hidden_reasoning_message.py +1 -0
- letta_client/types/letta_streaming_request.py +5 -0
- letta_client/types/reasoning_message.py +1 -0
- letta_client/types/system_message.py +1 -0
- letta_client/types/tool_call_message.py +1 -0
- letta_client/types/tool_return_message.py +1 -0
- letta_client/types/user_message.py +1 -0
- {letta_client-0.1.273.dist-info → letta_client-0.1.275.dist-info}/METADATA +1 -1
- {letta_client-0.1.273.dist-info → letta_client-0.1.275.dist-info}/RECORD +16 -16
- {letta_client-0.1.273.dist-info → letta_client-0.1.275.dist-info}/WHEEL +0 -0
|
@@ -258,6 +258,7 @@ class MessagesClient:
|
|
|
258
258
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
259
259
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
260
260
|
include_pings: typing.Optional[bool] = OMIT,
|
|
261
|
+
background: typing.Optional[bool] = OMIT,
|
|
261
262
|
request_options: typing.Optional[RequestOptions] = None,
|
|
262
263
|
) -> typing.Iterator[LettaStreamingResponse]:
|
|
263
264
|
"""
|
|
@@ -296,6 +297,9 @@ class MessagesClient:
|
|
|
296
297
|
include_pings : typing.Optional[bool]
|
|
297
298
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
298
299
|
|
|
300
|
+
background : typing.Optional[bool]
|
|
301
|
+
Whether to process the request in the background.
|
|
302
|
+
|
|
299
303
|
request_options : typing.Optional[RequestOptions]
|
|
300
304
|
Request-specific configuration.
|
|
301
305
|
|
|
@@ -339,6 +343,7 @@ class MessagesClient:
|
|
|
339
343
|
enable_thinking=enable_thinking,
|
|
340
344
|
stream_tokens=stream_tokens,
|
|
341
345
|
include_pings=include_pings,
|
|
346
|
+
background=background,
|
|
342
347
|
request_options=request_options,
|
|
343
348
|
) as r:
|
|
344
349
|
yield from r.data
|
|
@@ -840,6 +845,7 @@ class AsyncMessagesClient:
|
|
|
840
845
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
841
846
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
842
847
|
include_pings: typing.Optional[bool] = OMIT,
|
|
848
|
+
background: typing.Optional[bool] = OMIT,
|
|
843
849
|
request_options: typing.Optional[RequestOptions] = None,
|
|
844
850
|
) -> typing.AsyncIterator[LettaStreamingResponse]:
|
|
845
851
|
"""
|
|
@@ -878,6 +884,9 @@ class AsyncMessagesClient:
|
|
|
878
884
|
include_pings : typing.Optional[bool]
|
|
879
885
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
880
886
|
|
|
887
|
+
background : typing.Optional[bool]
|
|
888
|
+
Whether to process the request in the background.
|
|
889
|
+
|
|
881
890
|
request_options : typing.Optional[RequestOptions]
|
|
882
891
|
Request-specific configuration.
|
|
883
892
|
|
|
@@ -929,6 +938,7 @@ class AsyncMessagesClient:
|
|
|
929
938
|
enable_thinking=enable_thinking,
|
|
930
939
|
stream_tokens=stream_tokens,
|
|
931
940
|
include_pings=include_pings,
|
|
941
|
+
background=background,
|
|
932
942
|
request_options=request_options,
|
|
933
943
|
) as r:
|
|
934
944
|
async for _chunk in r.data:
|
|
@@ -303,6 +303,7 @@ class RawMessagesClient:
|
|
|
303
303
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
304
304
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
305
305
|
include_pings: typing.Optional[bool] = OMIT,
|
|
306
|
+
background: typing.Optional[bool] = OMIT,
|
|
306
307
|
request_options: typing.Optional[RequestOptions] = None,
|
|
307
308
|
) -> typing.Iterator[HttpResponse[typing.Iterator[LettaStreamingResponse]]]:
|
|
308
309
|
"""
|
|
@@ -341,6 +342,9 @@ class RawMessagesClient:
|
|
|
341
342
|
include_pings : typing.Optional[bool]
|
|
342
343
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
343
344
|
|
|
345
|
+
background : typing.Optional[bool]
|
|
346
|
+
Whether to process the request in the background.
|
|
347
|
+
|
|
344
348
|
request_options : typing.Optional[RequestOptions]
|
|
345
349
|
Request-specific configuration.
|
|
346
350
|
|
|
@@ -364,6 +368,7 @@ class RawMessagesClient:
|
|
|
364
368
|
"enable_thinking": enable_thinking,
|
|
365
369
|
"stream_tokens": stream_tokens,
|
|
366
370
|
"include_pings": include_pings,
|
|
371
|
+
"background": background,
|
|
367
372
|
},
|
|
368
373
|
headers={
|
|
369
374
|
"content-type": "application/json",
|
|
@@ -983,6 +988,7 @@ class AsyncRawMessagesClient:
|
|
|
983
988
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
984
989
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
985
990
|
include_pings: typing.Optional[bool] = OMIT,
|
|
991
|
+
background: typing.Optional[bool] = OMIT,
|
|
986
992
|
request_options: typing.Optional[RequestOptions] = None,
|
|
987
993
|
) -> typing.AsyncIterator[AsyncHttpResponse[typing.AsyncIterator[LettaStreamingResponse]]]:
|
|
988
994
|
"""
|
|
@@ -1021,6 +1027,9 @@ class AsyncRawMessagesClient:
|
|
|
1021
1027
|
include_pings : typing.Optional[bool]
|
|
1022
1028
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
1023
1029
|
|
|
1030
|
+
background : typing.Optional[bool]
|
|
1031
|
+
Whether to process the request in the background.
|
|
1032
|
+
|
|
1024
1033
|
request_options : typing.Optional[RequestOptions]
|
|
1025
1034
|
Request-specific configuration.
|
|
1026
1035
|
|
|
@@ -1044,6 +1053,7 @@ class AsyncRawMessagesClient:
|
|
|
1044
1053
|
"enable_thinking": enable_thinking,
|
|
1045
1054
|
"stream_tokens": stream_tokens,
|
|
1046
1055
|
"include_pings": include_pings,
|
|
1056
|
+
"background": background,
|
|
1047
1057
|
},
|
|
1048
1058
|
headers={
|
|
1049
1059
|
"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.275",
|
|
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.275",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
|
@@ -199,6 +199,7 @@ class MessagesClient:
|
|
|
199
199
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
200
200
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
201
201
|
include_pings: typing.Optional[bool] = OMIT,
|
|
202
|
+
background: typing.Optional[bool] = OMIT,
|
|
202
203
|
request_options: typing.Optional[RequestOptions] = None,
|
|
203
204
|
) -> typing.Iterator[LettaStreamingResponse]:
|
|
204
205
|
"""
|
|
@@ -237,6 +238,9 @@ class MessagesClient:
|
|
|
237
238
|
include_pings : typing.Optional[bool]
|
|
238
239
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
239
240
|
|
|
241
|
+
background : typing.Optional[bool]
|
|
242
|
+
Whether to process the request in the background.
|
|
243
|
+
|
|
240
244
|
request_options : typing.Optional[RequestOptions]
|
|
241
245
|
Request-specific configuration.
|
|
242
246
|
|
|
@@ -280,6 +284,7 @@ class MessagesClient:
|
|
|
280
284
|
enable_thinking=enable_thinking,
|
|
281
285
|
stream_tokens=stream_tokens,
|
|
282
286
|
include_pings=include_pings,
|
|
287
|
+
background=background,
|
|
283
288
|
request_options=request_options,
|
|
284
289
|
) as r:
|
|
285
290
|
yield from r.data
|
|
@@ -562,6 +567,7 @@ class AsyncMessagesClient:
|
|
|
562
567
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
563
568
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
564
569
|
include_pings: typing.Optional[bool] = OMIT,
|
|
570
|
+
background: typing.Optional[bool] = OMIT,
|
|
565
571
|
request_options: typing.Optional[RequestOptions] = None,
|
|
566
572
|
) -> typing.AsyncIterator[LettaStreamingResponse]:
|
|
567
573
|
"""
|
|
@@ -600,6 +606,9 @@ class AsyncMessagesClient:
|
|
|
600
606
|
include_pings : typing.Optional[bool]
|
|
601
607
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
602
608
|
|
|
609
|
+
background : typing.Optional[bool]
|
|
610
|
+
Whether to process the request in the background.
|
|
611
|
+
|
|
603
612
|
request_options : typing.Optional[RequestOptions]
|
|
604
613
|
Request-specific configuration.
|
|
605
614
|
|
|
@@ -651,6 +660,7 @@ class AsyncMessagesClient:
|
|
|
651
660
|
enable_thinking=enable_thinking,
|
|
652
661
|
stream_tokens=stream_tokens,
|
|
653
662
|
include_pings=include_pings,
|
|
663
|
+
background=background,
|
|
654
664
|
request_options=request_options,
|
|
655
665
|
) as r:
|
|
656
666
|
async for _chunk in r.data:
|
|
@@ -225,6 +225,7 @@ class RawMessagesClient:
|
|
|
225
225
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
226
226
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
227
227
|
include_pings: typing.Optional[bool] = OMIT,
|
|
228
|
+
background: typing.Optional[bool] = OMIT,
|
|
228
229
|
request_options: typing.Optional[RequestOptions] = None,
|
|
229
230
|
) -> typing.Iterator[HttpResponse[typing.Iterator[LettaStreamingResponse]]]:
|
|
230
231
|
"""
|
|
@@ -263,6 +264,9 @@ class RawMessagesClient:
|
|
|
263
264
|
include_pings : typing.Optional[bool]
|
|
264
265
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
265
266
|
|
|
267
|
+
background : typing.Optional[bool]
|
|
268
|
+
Whether to process the request in the background.
|
|
269
|
+
|
|
266
270
|
request_options : typing.Optional[RequestOptions]
|
|
267
271
|
Request-specific configuration.
|
|
268
272
|
|
|
@@ -286,6 +290,7 @@ class RawMessagesClient:
|
|
|
286
290
|
"enable_thinking": enable_thinking,
|
|
287
291
|
"stream_tokens": stream_tokens,
|
|
288
292
|
"include_pings": include_pings,
|
|
293
|
+
"background": background,
|
|
289
294
|
},
|
|
290
295
|
headers={
|
|
291
296
|
"content-type": "application/json",
|
|
@@ -652,6 +657,7 @@ class AsyncRawMessagesClient:
|
|
|
652
657
|
enable_thinking: typing.Optional[str] = OMIT,
|
|
653
658
|
stream_tokens: typing.Optional[bool] = OMIT,
|
|
654
659
|
include_pings: typing.Optional[bool] = OMIT,
|
|
660
|
+
background: typing.Optional[bool] = OMIT,
|
|
655
661
|
request_options: typing.Optional[RequestOptions] = None,
|
|
656
662
|
) -> typing.AsyncIterator[AsyncHttpResponse[typing.AsyncIterator[LettaStreamingResponse]]]:
|
|
657
663
|
"""
|
|
@@ -690,6 +696,9 @@ class AsyncRawMessagesClient:
|
|
|
690
696
|
include_pings : typing.Optional[bool]
|
|
691
697
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
692
698
|
|
|
699
|
+
background : typing.Optional[bool]
|
|
700
|
+
Whether to process the request in the background.
|
|
701
|
+
|
|
693
702
|
request_options : typing.Optional[RequestOptions]
|
|
694
703
|
Request-specific configuration.
|
|
695
704
|
|
|
@@ -713,6 +722,7 @@ class AsyncRawMessagesClient:
|
|
|
713
722
|
"enable_thinking": enable_thinking,
|
|
714
723
|
"stream_tokens": stream_tokens,
|
|
715
724
|
"include_pings": include_pings,
|
|
725
|
+
"background": background,
|
|
716
726
|
},
|
|
717
727
|
headers={
|
|
718
728
|
"content-type": "application/json",
|
|
@@ -28,6 +28,7 @@ class AssistantMessage(UncheckedBaseModel):
|
|
|
28
28
|
sender_id: typing.Optional[str] = None
|
|
29
29
|
step_id: typing.Optional[str] = None
|
|
30
30
|
is_err: typing.Optional[bool] = None
|
|
31
|
+
seq_id: typing.Optional[int] = None
|
|
31
32
|
content: AssistantMessageContent = pydantic.Field()
|
|
32
33
|
"""
|
|
33
34
|
The message content sent by the agent (can be a string or an array of content parts)
|
|
@@ -31,6 +31,7 @@ class HiddenReasoningMessage(UncheckedBaseModel):
|
|
|
31
31
|
sender_id: typing.Optional[str] = None
|
|
32
32
|
step_id: typing.Optional[str] = None
|
|
33
33
|
is_err: typing.Optional[bool] = None
|
|
34
|
+
seq_id: typing.Optional[int] = None
|
|
34
35
|
state: HiddenReasoningMessageState
|
|
35
36
|
hidden_reasoning: typing.Optional[str] = None
|
|
36
37
|
|
|
@@ -55,6 +55,11 @@ class LettaStreamingRequest(UncheckedBaseModel):
|
|
|
55
55
|
Whether to include periodic keepalive ping messages in the stream to prevent connection timeouts.
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
|
+
background: typing.Optional[bool] = pydantic.Field(default=None)
|
|
59
|
+
"""
|
|
60
|
+
Whether to process the request in the background.
|
|
61
|
+
"""
|
|
62
|
+
|
|
58
63
|
if IS_PYDANTIC_V2:
|
|
59
64
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
60
65
|
else:
|
|
@@ -31,6 +31,7 @@ class ReasoningMessage(UncheckedBaseModel):
|
|
|
31
31
|
sender_id: typing.Optional[str] = None
|
|
32
32
|
step_id: typing.Optional[str] = None
|
|
33
33
|
is_err: typing.Optional[bool] = None
|
|
34
|
+
seq_id: typing.Optional[int] = None
|
|
34
35
|
source: typing.Optional[ReasoningMessageSource] = None
|
|
35
36
|
reasoning: str
|
|
36
37
|
signature: typing.Optional[str] = None
|
|
@@ -27,6 +27,7 @@ class SystemMessage(UncheckedBaseModel):
|
|
|
27
27
|
sender_id: typing.Optional[str] = None
|
|
28
28
|
step_id: typing.Optional[str] = None
|
|
29
29
|
is_err: typing.Optional[bool] = None
|
|
30
|
+
seq_id: typing.Optional[int] = None
|
|
30
31
|
content: str = pydantic.Field()
|
|
31
32
|
"""
|
|
32
33
|
The message content sent by the system
|
|
@@ -28,6 +28,7 @@ class ToolCallMessage(UncheckedBaseModel):
|
|
|
28
28
|
sender_id: typing.Optional[str] = None
|
|
29
29
|
step_id: typing.Optional[str] = None
|
|
30
30
|
is_err: typing.Optional[bool] = None
|
|
31
|
+
seq_id: typing.Optional[int] = None
|
|
31
32
|
tool_call: ToolCallMessageToolCall
|
|
32
33
|
|
|
33
34
|
if IS_PYDANTIC_V2:
|
|
@@ -32,6 +32,7 @@ class ToolReturnMessage(UncheckedBaseModel):
|
|
|
32
32
|
sender_id: typing.Optional[str] = None
|
|
33
33
|
step_id: typing.Optional[str] = None
|
|
34
34
|
is_err: typing.Optional[bool] = None
|
|
35
|
+
seq_id: typing.Optional[int] = None
|
|
35
36
|
tool_return: str
|
|
36
37
|
status: ToolReturnMessageStatus
|
|
37
38
|
tool_call_id: str
|
|
@@ -28,6 +28,7 @@ class UserMessage(UncheckedBaseModel):
|
|
|
28
28
|
sender_id: typing.Optional[str] = None
|
|
29
29
|
step_id: typing.Optional[str] = None
|
|
30
30
|
is_err: typing.Optional[bool] = None
|
|
31
|
+
seq_id: typing.Optional[int] = None
|
|
31
32
|
content: UserMessageContent = pydantic.Field()
|
|
32
33
|
"""
|
|
33
34
|
The message content sent by the user (can be a string or an array of multi-modal content parts)
|
|
@@ -25,8 +25,8 @@ letta_client/agents/memory_variables/raw_client.py,sha256=lwWJQlKh4InQgrCH8iHPBw
|
|
|
25
25
|
letta_client/agents/memory_variables/types/__init__.py,sha256=r_Wc0Jjyp1_Y2qC_eWsabWx1sTwoxAaV1s24y8Ep_Zg,200
|
|
26
26
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=iAXAqp-J0fnyUK4MMa3PMrYwqQfbui3tiaWaWR9_O5M,600
|
|
27
27
|
letta_client/agents/messages/__init__.py,sha256=e8v77Rj3x-BqXX_NKI1ON66_rDZwbb7ub2nGivPuxnM,373
|
|
28
|
-
letta_client/agents/messages/client.py,sha256=
|
|
29
|
-
letta_client/agents/messages/raw_client.py,sha256=
|
|
28
|
+
letta_client/agents/messages/client.py,sha256=cpEUzOGduqnxWm85iqGuemdHTwNpEBVoLBxLiHZS4E8,40119
|
|
29
|
+
letta_client/agents/messages/raw_client.py,sha256=z5MvQqOINMm5mk8mKvg5v71x1OKwQjISeS32_7y_s38,58016
|
|
30
30
|
letta_client/agents/messages/types/__init__.py,sha256=UVYgxnuengkOnW2BzXKiWodjQxdBEuwtJd7U83-TIbk,493
|
|
31
31
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=TEqXH71L621ToSXJpmJk8QUJE71QhXuZOVk4AMeWgFc,801
|
|
32
32
|
letta_client/agents/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
@@ -90,7 +90,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
90
90
|
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
|
|
91
91
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
92
92
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
93
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
93
|
+
letta_client/core/client_wrapper.py,sha256=iRiDk7L8K2lk9Ie0YES_9TLAJpnIvbwf7zWe4-gs2bg,2776
|
|
94
94
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
95
95
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
96
96
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -125,8 +125,8 @@ letta_client/folders/raw_client.py,sha256=bd5th49qJBEdmDMB5ugVEzP_mXUeZsCo3Kxn6K
|
|
|
125
125
|
letta_client/groups/__init__.py,sha256=qrGge7rHzMf1V10ZpxL3rbxmpx9esxUCoQ29gV3Nwhk,454
|
|
126
126
|
letta_client/groups/client.py,sha256=TRiW1CNfMzrxJyHLAiryVLEuPGdWKQ76xb8f_u_4cRc,16857
|
|
127
127
|
letta_client/groups/messages/__init__.py,sha256=sX6KPOYCrwTCyzKGNBxejgOvDNFopOJkWd037ei6Uik,263
|
|
128
|
-
letta_client/groups/messages/client.py,sha256=
|
|
129
|
-
letta_client/groups/messages/raw_client.py,sha256=
|
|
128
|
+
letta_client/groups/messages/client.py,sha256=ju1VUWbIQzqd4DqcX7Ksbu-iFk_mA-iA_3_GkPcmL4E,25493
|
|
129
|
+
letta_client/groups/messages/raw_client.py,sha256=3rgQhKlxtWBjBX489PQrT4DaqIJJc4sDfnibTqpjTsI,37654
|
|
130
130
|
letta_client/groups/messages/types/__init__.py,sha256=8WRhpu-Xkvw1oqY-n0vptOO46BddTEt68L1kVVClvNM,355
|
|
131
131
|
letta_client/groups/messages/types/letta_streaming_response.py,sha256=IFJSwCiedThHyMYhK4CqLV01HqS8JZ1KZDs4V13Yc0w,666
|
|
132
132
|
letta_client/groups/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
@@ -265,7 +265,7 @@ letta_client/types/agent_type.py,sha256=4_JSgy0zfiqtUcKh5XMfRDYaablo4RuzUmIstRZ2
|
|
|
265
265
|
letta_client/types/app_auth_scheme.py,sha256=A1ha3TmjgFw3-mW8r44LPB_Go3pdbGxJ_LHrDChSG14,1243
|
|
266
266
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
|
|
267
267
|
letta_client/types/app_model.py,sha256=6QlEj1uFSnUMDEkmM1XF1umO-X6AHq5oBGzVTZeZeEo,1520
|
|
268
|
-
letta_client/types/assistant_message.py,sha256=
|
|
268
|
+
letta_client/types/assistant_message.py,sha256=BL_6zm8ZKqAHBQ6fysELItziUfBb0oJ5oPQK-Y2nwMg,1591
|
|
269
269
|
letta_client/types/assistant_message_content.py,sha256=rJZePqcZN74tqx-FbArUF1FaqvATOYAn87mvdpqyINA,242
|
|
270
270
|
letta_client/types/audio.py,sha256=1HlHjJ1FEv4J5G4jQY24G0H91T5LT3K6e-dnQ1Di7i8,549
|
|
271
271
|
letta_client/types/auth_request.py,sha256=kIiQTHpCLr0UPAt6SVL60cPnFjRW1x4tpazupclHSkk,684
|
|
@@ -381,7 +381,7 @@ letta_client/types/group.py,sha256=tjBeaPlVtR6m6VfImqh506QfTR1fvnLwRXGj1BnRDXw,2
|
|
|
381
381
|
letta_client/types/group_schema.py,sha256=xNW28jXZ1npZZ3B7yUpRGx1uetcj80EQZxHpgUSoEGQ,1253
|
|
382
382
|
letta_client/types/group_schema_manager_config.py,sha256=3kIh_FoLwKOA5JDcZbHmpF8j1Ld0w7-kk9pRugVdWvw,474
|
|
383
383
|
letta_client/types/health.py,sha256=M5qOOKBb6PET3M4VrdHZ4_6643I0GNKq6WldhzkilJI,619
|
|
384
|
-
letta_client/types/hidden_reasoning_message.py,sha256=
|
|
384
|
+
letta_client/types/hidden_reasoning_message.py,sha256=Xb-MT9Oa6Mzg23rI_4B9_RYcjqjPirpr4G3zufYevqk,1651
|
|
385
385
|
letta_client/types/hidden_reasoning_message_state.py,sha256=qotAgF_P4T7OEHzbhGDVFaLZYOs1ULMPVHmiFvoRIfM,174
|
|
386
386
|
letta_client/types/http_validation_error.py,sha256=LTr0zWUWfG2-2lTgDwRtrEo0CYdOvF5jkH4h40YGP1g,662
|
|
387
387
|
letta_client/types/identity.py,sha256=h7Yn795wOyvXBNzBBUJToC6GlDife4h7tKRx2mOBKXs,1592
|
|
@@ -423,7 +423,7 @@ letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema_to
|
|
|
423
423
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_message_schema.py,sha256=RPwPiGzs8TU1JwkQIRm1wFHLt8a5KU4WFFvuDvh_NII,1037
|
|
424
424
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_tool_schema.py,sha256=qBuwEw6yao9zihtGIdruSG6SFiVYDwyzumW8V4YJJmc,1163
|
|
425
425
|
letta_client/types/letta_stop_reason.py,sha256=jYkXBnAKsdPS8tmdv_xumyVVQk9OoHKFypAgNZejCyo,932
|
|
426
|
-
letta_client/types/letta_streaming_request.py,sha256=
|
|
426
|
+
letta_client/types/letta_streaming_request.py,sha256=NX8WMPMUWiWJyM3bNBBpdy-cw61VIZQMm6iJcUjhr38,2391
|
|
427
427
|
letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
|
|
428
428
|
letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
|
|
429
429
|
letta_client/types/llm_config.py,sha256=QxVLfO04egVhKg1J3nB-FkrrMpyK124HpgAyVD-_zk0,3864
|
|
@@ -477,7 +477,7 @@ letta_client/types/provider_category.py,sha256=St4tSc_Wc5huF79kb088-L-tRz9Cj2_b5
|
|
|
477
477
|
letta_client/types/provider_trace.py,sha256=d7_IpoEgLeqnPaElWjOp6iAL8SbeI4DZsBaaaFtkorM,2201
|
|
478
478
|
letta_client/types/provider_type.py,sha256=NwBjRytkZr9uOxRgXATflyDcxchus2xjBb5kKtJ9aQ8,463
|
|
479
479
|
letta_client/types/reasoning_content.py,sha256=YPmNwwSH_toPAThpE5gq7gaxBlvvjh33csKBRdFI_iY,996
|
|
480
|
-
letta_client/types/reasoning_message.py,sha256=
|
|
480
|
+
letta_client/types/reasoning_message.py,sha256=byw5JyxIPzJr8DHMC_favCZkxaDka0b_Zw3-wYnQRUs,1688
|
|
481
481
|
letta_client/types/reasoning_message_source.py,sha256=GYOWGm2mje1yYbR8E2kbAeQS--VDrGlpsobEBQHE2cU,186
|
|
482
482
|
letta_client/types/redacted_reasoning_content.py,sha256=d3L2OoswodrCBaeCsP9VSDd7VUmVFEMN9ORPCUGsz6c,736
|
|
483
483
|
letta_client/types/required_before_exit_tool_rule.py,sha256=QAoqKyCXkGyIRuHeIE3WW86XQYAn1U6_5QMcUiCCrZY,1058
|
|
@@ -513,7 +513,7 @@ letta_client/types/stop_reason_type.py,sha256=BgrPBP-v9YBOpGmpusQvVQqCLPNOQFl57k
|
|
|
513
513
|
letta_client/types/streamable_http_server_config.py,sha256=GNbt2KO9VepHUtiMoK6htJLpFHcGoFJaoH1Az6zkt-Q,1776
|
|
514
514
|
letta_client/types/supervisor_manager.py,sha256=tq3WDIxiyJJe4zf1Pf7UkMqTXcMF7NETLgFr-DCTNIc,677
|
|
515
515
|
letta_client/types/supervisor_manager_update.py,sha256=srC_cYti3h_DdWRmcrLMgWnMS07Rpwo_U0tjCD19cb0,712
|
|
516
|
-
letta_client/types/system_message.py,sha256=
|
|
516
|
+
letta_client/types/system_message.py,sha256=nXl7UZV9K-W0yTag6JNz-9-58qRZtIlf6FDP02V9w-I,1384
|
|
517
517
|
letta_client/types/tag_schema.py,sha256=TtqUHpKMxiMD-k-4vQgCOxiwzKRFBjEGhaq8cd0hhtQ,554
|
|
518
518
|
letta_client/types/terminal_tool_rule.py,sha256=WgJQdVd6sTGqcWBDL3Dow09CsjohhM96gO6m3bv6p6A,1032
|
|
519
519
|
letta_client/types/text_content.py,sha256=ivADxvqhZUBBr8XGv3ODB1Ll8GYdQ74c0wlIp31xQHk,671
|
|
@@ -523,14 +523,14 @@ letta_client/types/tool_annotations.py,sha256=gOUNd0gxzHvSz57G5c8gxK45VTxzk2yoB1
|
|
|
523
523
|
letta_client/types/tool_call.py,sha256=nIC6Tew85oekAwM7TWuD1nh-wMMSbwnHkDRIPh9znDk,595
|
|
524
524
|
letta_client/types/tool_call_content.py,sha256=ahSG2qf-hy3kM0L0OC5Yz9Xco_2B5fnPA6Wrb1FD9hw,996
|
|
525
525
|
letta_client/types/tool_call_delta.py,sha256=BDXIgt8R_kNy6A2j-O5e-6LUD1CoRVQ78xZpdfy9G_I,672
|
|
526
|
-
letta_client/types/tool_call_message.py,sha256=
|
|
526
|
+
letta_client/types/tool_call_message.py,sha256=2uqEd-yp3uzaYQHwtzd56XS85QQ4JOrIaxtdCUiFg04,1400
|
|
527
527
|
letta_client/types/tool_call_message_tool_call.py,sha256=d9RPFSB8CXdANdNi7EoHYvRYpK-ETkTUSI5EWm71UlQ,220
|
|
528
528
|
letta_client/types/tool_create.py,sha256=jR1HKTkwbHacfUW5S2OMlTLOxRT_5feR9q9s94316gw,1955
|
|
529
529
|
letta_client/types/tool_env_var_schema.py,sha256=0LXRU-zRlBvMq9OZBnRHeZZvre3U3u3OF0zlBfgEXTo,661
|
|
530
530
|
letta_client/types/tool_json_schema.py,sha256=HFQvRiMLY1wWtAnnxgWA0hLKntgfPr-JLUdHoeKarj0,755
|
|
531
531
|
letta_client/types/tool_return.py,sha256=P0hvUOPtIYs0y6yzDRPtY86JOZn-W75Hi4efUyc7CDI,985
|
|
532
532
|
letta_client/types/tool_return_content.py,sha256=Z18tVJa_FZoDHw2UL04XbTz3eEeUR-Qs0iydBFv3dog,957
|
|
533
|
-
letta_client/types/tool_return_message.py,sha256=
|
|
533
|
+
letta_client/types/tool_return_message.py,sha256=H39RWrMewav8JbP93JPeIAk4-4eaIuWYKnWAGtC61Ks,1895
|
|
534
534
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
535
535
|
letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
|
|
536
536
|
letta_client/types/tool_type.py,sha256=Lrced4b0gDW3IWOhyCPC_dZX6dRUReI8VsutrgRTCzM,459
|
|
@@ -549,7 +549,7 @@ letta_client/types/usage_statistics_completion_token_details.py,sha256=LSyXm35vq
|
|
|
549
549
|
letta_client/types/usage_statistics_prompt_token_details.py,sha256=Nevoj7tMsA6N8IkEykyk3RSDocbcXb3ILdqcaJAs3b0,612
|
|
550
550
|
letta_client/types/user.py,sha256=jWL92p1yE91PpAmr8GSYpC9RECBq8pfJNOelCgEQm74,1350
|
|
551
551
|
letta_client/types/user_create.py,sha256=f0Tpag3Hhopr4UC0G0tvhkD-2fCkG-Cojf-3IZ8MKmA,617
|
|
552
|
-
letta_client/types/user_message.py,sha256=
|
|
552
|
+
letta_client/types/user_message.py,sha256=ysgpZAidJn4p9ZXANRgIJAgno7oRQEfJcq2wrEsBxhA,1596
|
|
553
553
|
letta_client/types/user_message_content.py,sha256=2sDDlXGGOrwJEFDmU0CziH8SE4JG9z-wV24PEDYlC4s,238
|
|
554
554
|
letta_client/types/user_update.py,sha256=s3QyERsCqx8QlcimGuoBJWIKH5b7AZ1-35btlSQqxr8,732
|
|
555
555
|
letta_client/types/validation_error.py,sha256=jftGp9JtEt1bO2z9pFqhfq02Vu-0gGX9vz4AGM_pabg,681
|
|
@@ -564,6 +564,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
564
564
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
565
565
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
566
566
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
567
|
-
letta_client-0.1.
|
|
568
|
-
letta_client-0.1.
|
|
569
|
-
letta_client-0.1.
|
|
567
|
+
letta_client-0.1.275.dist-info/METADATA,sha256=53Hu69viZUy-yEO2jGr_MvWdQNt0OIRWvrIuRjls2j4,5781
|
|
568
|
+
letta_client-0.1.275.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
569
|
+
letta_client-0.1.275.dist-info/RECORD,,
|
|
File without changes
|