letta-client 0.1.56__py3-none-any.whl → 0.1.58__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 +18 -6
- letta_client/agents/__init__.py +3 -2
- letta_client/agents/client.py +18 -8
- letta_client/agents/messages/__init__.py +2 -2
- letta_client/agents/messages/client.py +28 -84
- letta_client/agents/messages/types/__init__.py +3 -2
- letta_client/agents/messages/types/messages_modify_request.py +11 -0
- letta_client/agents/messages/types/messages_modify_response.py +11 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/types/__init__.py +18 -8
- letta_client/types/{chat_completion_message_tool_call_output.py → chat_completion_message_tool_call.py} +1 -1
- letta_client/types/message.py +2 -2
- letta_client/types/{chat_completion_message_tool_call_input.py → update_assistant_message.py} +4 -7
- letta_client/types/update_assistant_message_content.py +6 -0
- letta_client/types/update_reasoning_message.py +21 -0
- letta_client/types/update_reasoning_message_reasoning.py +6 -0
- letta_client/types/update_system_message.py +21 -0
- letta_client/types/update_system_message_content.py +6 -0
- letta_client/types/{openai_types_chat_chat_completion_message_tool_call_function.py → update_user_message.py} +5 -4
- letta_client/types/update_user_message_content.py +6 -0
- {letta_client-0.1.56.dist-info → letta_client-0.1.58.dist-info}/METADATA +1 -1
- {letta_client-0.1.56.dist-info → letta_client-0.1.58.dist-info}/RECORD +23 -16
- letta_client/agents/messages/types/message_update_content.py +0 -6
- {letta_client-0.1.56.dist-info → letta_client-0.1.58.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -33,8 +33,7 @@ from .types import (
|
|
|
33
33
|
ChatCompletionDeveloperMessageParamContent,
|
|
34
34
|
ChatCompletionFunctionCallOptionParam,
|
|
35
35
|
ChatCompletionFunctionMessageParam,
|
|
36
|
-
|
|
37
|
-
ChatCompletionMessageToolCallOutput,
|
|
36
|
+
ChatCompletionMessageToolCall,
|
|
38
37
|
ChatCompletionMessageToolCallParam,
|
|
39
38
|
ChatCompletionNamedToolChoiceParam,
|
|
40
39
|
ChatCompletionPredictionContentParam,
|
|
@@ -117,7 +116,6 @@ from .types import (
|
|
|
117
116
|
MessageRole,
|
|
118
117
|
NotFoundErrorBody,
|
|
119
118
|
NotFoundErrorBodyMessage,
|
|
120
|
-
OpenaiTypesChatChatCompletionMessageToolCallFunction,
|
|
121
119
|
OpenaiTypesChatChatCompletionMessageToolCallParamFunction,
|
|
122
120
|
OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction,
|
|
123
121
|
OpenaiTypesChatCompletionCreateParamsFunction,
|
|
@@ -157,6 +155,14 @@ from .types import (
|
|
|
157
155
|
ToolReturnMessageStatus,
|
|
158
156
|
ToolReturnStatus,
|
|
159
157
|
ToolType,
|
|
158
|
+
UpdateAssistantMessage,
|
|
159
|
+
UpdateAssistantMessageContent,
|
|
160
|
+
UpdateReasoningMessage,
|
|
161
|
+
UpdateReasoningMessageReasoning,
|
|
162
|
+
UpdateSystemMessage,
|
|
163
|
+
UpdateSystemMessageContent,
|
|
164
|
+
UpdateUserMessage,
|
|
165
|
+
UpdateUserMessageContent,
|
|
160
166
|
UsageStatistics,
|
|
161
167
|
User,
|
|
162
168
|
UserCreate,
|
|
@@ -742,8 +748,7 @@ __all__ = [
|
|
|
742
748
|
"ChatCompletionDeveloperMessageParamContent",
|
|
743
749
|
"ChatCompletionFunctionCallOptionParam",
|
|
744
750
|
"ChatCompletionFunctionMessageParam",
|
|
745
|
-
"
|
|
746
|
-
"ChatCompletionMessageToolCallOutput",
|
|
751
|
+
"ChatCompletionMessageToolCall",
|
|
747
752
|
"ChatCompletionMessageToolCallParam",
|
|
748
753
|
"ChatCompletionNamedToolChoiceParam",
|
|
749
754
|
"ChatCompletionPredictionContentParam",
|
|
@@ -833,7 +838,6 @@ __all__ = [
|
|
|
833
838
|
"NotFoundError",
|
|
834
839
|
"NotFoundErrorBody",
|
|
835
840
|
"NotFoundErrorBodyMessage",
|
|
836
|
-
"OpenaiTypesChatChatCompletionMessageToolCallFunction",
|
|
837
841
|
"OpenaiTypesChatChatCompletionMessageToolCallParamFunction",
|
|
838
842
|
"OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction",
|
|
839
843
|
"OpenaiTypesChatCompletionCreateParamsFunction",
|
|
@@ -1043,6 +1047,14 @@ __all__ = [
|
|
|
1043
1047
|
"ToolType",
|
|
1044
1048
|
"UnprocessableEntityError",
|
|
1045
1049
|
"UpdateAgentToolRulesItem",
|
|
1050
|
+
"UpdateAssistantMessage",
|
|
1051
|
+
"UpdateAssistantMessageContent",
|
|
1052
|
+
"UpdateReasoningMessage",
|
|
1053
|
+
"UpdateReasoningMessageReasoning",
|
|
1054
|
+
"UpdateSystemMessage",
|
|
1055
|
+
"UpdateSystemMessageContent",
|
|
1056
|
+
"UpdateUserMessage",
|
|
1057
|
+
"UpdateUserMessageContent",
|
|
1046
1058
|
"UsageStatistics",
|
|
1047
1059
|
"User",
|
|
1048
1060
|
"UserCreate",
|
letta_client/agents/__init__.py
CHANGED
|
@@ -179,7 +179,7 @@ from .types import (
|
|
|
179
179
|
)
|
|
180
180
|
from . import blocks, context, core_memory, memory_variables, messages, passages, sources, templates, tools
|
|
181
181
|
from .memory_variables import MemoryVariablesListResponse
|
|
182
|
-
from .messages import LettaStreamingResponse,
|
|
182
|
+
from .messages import LettaStreamingResponse, MessagesModifyRequest, MessagesModifyResponse
|
|
183
183
|
from .templates import TemplatesCreateResponse, TemplatesMigrateResponse
|
|
184
184
|
|
|
185
185
|
__all__ = [
|
|
@@ -359,7 +359,8 @@ __all__ = [
|
|
|
359
359
|
"CreateAgentRequestToolRulesItem",
|
|
360
360
|
"LettaStreamingResponse",
|
|
361
361
|
"MemoryVariablesListResponse",
|
|
362
|
-
"
|
|
362
|
+
"MessagesModifyRequest",
|
|
363
|
+
"MessagesModifyResponse",
|
|
363
364
|
"TemplatesCreateResponse",
|
|
364
365
|
"TemplatesMigrateResponse",
|
|
365
366
|
"UpdateAgentToolRulesItem",
|
letta_client/agents/client.py
CHANGED
|
@@ -477,7 +477,8 @@ class AgentsClient:
|
|
|
477
477
|
self,
|
|
478
478
|
*,
|
|
479
479
|
file: core.File,
|
|
480
|
-
|
|
480
|
+
append_copy_suffix: typing.Optional[bool] = None,
|
|
481
|
+
override_existing_tools: typing.Optional[bool] = None,
|
|
481
482
|
request_options: typing.Optional[RequestOptions] = None,
|
|
482
483
|
) -> AgentState:
|
|
483
484
|
"""
|
|
@@ -488,8 +489,11 @@ class AgentsClient:
|
|
|
488
489
|
file : core.File
|
|
489
490
|
See core.File for more documentation
|
|
490
491
|
|
|
491
|
-
|
|
492
|
-
|
|
492
|
+
append_copy_suffix : typing.Optional[bool]
|
|
493
|
+
If set to True, appends "_copy" to the end of the agent name.
|
|
494
|
+
|
|
495
|
+
override_existing_tools : typing.Optional[bool]
|
|
496
|
+
If set to True, existing tools can get their source code overwritten by the uploaded tool definitions. Note that Letta core tools can never be updated externally.
|
|
493
497
|
|
|
494
498
|
request_options : typing.Optional[RequestOptions]
|
|
495
499
|
Request-specific configuration.
|
|
@@ -512,7 +516,8 @@ class AgentsClient:
|
|
|
512
516
|
"v1/agents/upload",
|
|
513
517
|
method="POST",
|
|
514
518
|
params={
|
|
515
|
-
"
|
|
519
|
+
"append_copy_suffix": append_copy_suffix,
|
|
520
|
+
"override_existing_tools": override_existing_tools,
|
|
516
521
|
},
|
|
517
522
|
data={},
|
|
518
523
|
files={
|
|
@@ -1560,7 +1565,8 @@ class AsyncAgentsClient:
|
|
|
1560
1565
|
self,
|
|
1561
1566
|
*,
|
|
1562
1567
|
file: core.File,
|
|
1563
|
-
|
|
1568
|
+
append_copy_suffix: typing.Optional[bool] = None,
|
|
1569
|
+
override_existing_tools: typing.Optional[bool] = None,
|
|
1564
1570
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1565
1571
|
) -> AgentState:
|
|
1566
1572
|
"""
|
|
@@ -1571,8 +1577,11 @@ class AsyncAgentsClient:
|
|
|
1571
1577
|
file : core.File
|
|
1572
1578
|
See core.File for more documentation
|
|
1573
1579
|
|
|
1574
|
-
|
|
1575
|
-
|
|
1580
|
+
append_copy_suffix : typing.Optional[bool]
|
|
1581
|
+
If set to True, appends "_copy" to the end of the agent name.
|
|
1582
|
+
|
|
1583
|
+
override_existing_tools : typing.Optional[bool]
|
|
1584
|
+
If set to True, existing tools can get their source code overwritten by the uploaded tool definitions. Note that Letta core tools can never be updated externally.
|
|
1576
1585
|
|
|
1577
1586
|
request_options : typing.Optional[RequestOptions]
|
|
1578
1587
|
Request-specific configuration.
|
|
@@ -1603,7 +1612,8 @@ class AsyncAgentsClient:
|
|
|
1603
1612
|
"v1/agents/upload",
|
|
1604
1613
|
method="POST",
|
|
1605
1614
|
params={
|
|
1606
|
-
"
|
|
1615
|
+
"append_copy_suffix": append_copy_suffix,
|
|
1616
|
+
"override_existing_tools": override_existing_tools,
|
|
1607
1617
|
},
|
|
1608
1618
|
data={},
|
|
1609
1619
|
files={
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from .types import LettaStreamingResponse,
|
|
3
|
+
from .types import LettaStreamingResponse, MessagesModifyRequest, MessagesModifyResponse
|
|
4
4
|
|
|
5
|
-
__all__ = ["LettaStreamingResponse", "
|
|
5
|
+
__all__ = ["LettaStreamingResponse", "MessagesModifyRequest", "MessagesModifyResponse"]
|
|
@@ -13,10 +13,8 @@ from ...core.api_error import ApiError
|
|
|
13
13
|
from ...types.message_create import MessageCreate
|
|
14
14
|
from ...types.letta_response import LettaResponse
|
|
15
15
|
from ...core.serialization import convert_and_respect_annotation_metadata
|
|
16
|
-
from
|
|
17
|
-
from .types.
|
|
18
|
-
from ...types.chat_completion_message_tool_call_input import ChatCompletionMessageToolCallInput
|
|
19
|
-
from ...types.message import Message
|
|
16
|
+
from .types.messages_modify_request import MessagesModifyRequest
|
|
17
|
+
from .types.messages_modify_response import MessagesModifyResponse
|
|
20
18
|
from .types.letta_streaming_response import LettaStreamingResponse
|
|
21
19
|
import httpx_sse
|
|
22
20
|
import json
|
|
@@ -222,13 +220,9 @@ class MessagesClient:
|
|
|
222
220
|
agent_id: str,
|
|
223
221
|
message_id: str,
|
|
224
222
|
*,
|
|
225
|
-
|
|
226
|
-
content: typing.Optional[MessageUpdateContent] = OMIT,
|
|
227
|
-
name: typing.Optional[str] = OMIT,
|
|
228
|
-
tool_calls: typing.Optional[typing.Sequence[ChatCompletionMessageToolCallInput]] = OMIT,
|
|
229
|
-
tool_call_id: typing.Optional[str] = OMIT,
|
|
223
|
+
request: MessagesModifyRequest,
|
|
230
224
|
request_options: typing.Optional[RequestOptions] = None,
|
|
231
|
-
) ->
|
|
225
|
+
) -> MessagesModifyResponse:
|
|
232
226
|
"""
|
|
233
227
|
Update the details of a message associated with an agent.
|
|
234
228
|
|
|
@@ -238,32 +232,19 @@ class MessagesClient:
|
|
|
238
232
|
|
|
239
233
|
message_id : str
|
|
240
234
|
|
|
241
|
-
|
|
242
|
-
The role of the participant.
|
|
243
|
-
|
|
244
|
-
content : typing.Optional[MessageUpdateContent]
|
|
245
|
-
The content of the message.
|
|
246
|
-
|
|
247
|
-
name : typing.Optional[str]
|
|
248
|
-
The name of the participant.
|
|
249
|
-
|
|
250
|
-
tool_calls : typing.Optional[typing.Sequence[ChatCompletionMessageToolCallInput]]
|
|
251
|
-
The list of tool calls requested.
|
|
252
|
-
|
|
253
|
-
tool_call_id : typing.Optional[str]
|
|
254
|
-
The id of the tool call.
|
|
235
|
+
request : MessagesModifyRequest
|
|
255
236
|
|
|
256
237
|
request_options : typing.Optional[RequestOptions]
|
|
257
238
|
Request-specific configuration.
|
|
258
239
|
|
|
259
240
|
Returns
|
|
260
241
|
-------
|
|
261
|
-
|
|
242
|
+
MessagesModifyResponse
|
|
262
243
|
Successful Response
|
|
263
244
|
|
|
264
245
|
Examples
|
|
265
246
|
--------
|
|
266
|
-
from letta_client import Letta
|
|
247
|
+
from letta_client import Letta, UpdateSystemMessage
|
|
267
248
|
|
|
268
249
|
client = Letta(
|
|
269
250
|
token="YOUR_TOKEN",
|
|
@@ -271,36 +252,26 @@ class MessagesClient:
|
|
|
271
252
|
client.agents.messages.modify(
|
|
272
253
|
agent_id="agent_id",
|
|
273
254
|
message_id="message_id",
|
|
255
|
+
request=UpdateSystemMessage(
|
|
256
|
+
content="content",
|
|
257
|
+
),
|
|
274
258
|
)
|
|
275
259
|
"""
|
|
276
260
|
_response = self._client_wrapper.httpx_client.request(
|
|
277
261
|
f"v1/agents/{jsonable_encoder(agent_id)}/messages/{jsonable_encoder(message_id)}",
|
|
278
262
|
method="PATCH",
|
|
279
|
-
json=
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
object_=content, annotation=MessageUpdateContent, direction="write"
|
|
283
|
-
),
|
|
284
|
-
"name": name,
|
|
285
|
-
"tool_calls": convert_and_respect_annotation_metadata(
|
|
286
|
-
object_=tool_calls,
|
|
287
|
-
annotation=typing.Sequence[ChatCompletionMessageToolCallInput],
|
|
288
|
-
direction="write",
|
|
289
|
-
),
|
|
290
|
-
"tool_call_id": tool_call_id,
|
|
291
|
-
},
|
|
292
|
-
headers={
|
|
293
|
-
"content-type": "application/json",
|
|
294
|
-
},
|
|
263
|
+
json=convert_and_respect_annotation_metadata(
|
|
264
|
+
object_=request, annotation=MessagesModifyRequest, direction="write"
|
|
265
|
+
),
|
|
295
266
|
request_options=request_options,
|
|
296
267
|
omit=OMIT,
|
|
297
268
|
)
|
|
298
269
|
try:
|
|
299
270
|
if 200 <= _response.status_code < 300:
|
|
300
271
|
return typing.cast(
|
|
301
|
-
|
|
272
|
+
MessagesModifyResponse,
|
|
302
273
|
construct_type(
|
|
303
|
-
type_=
|
|
274
|
+
type_=MessagesModifyResponse, # type: ignore
|
|
304
275
|
object_=_response.json(),
|
|
305
276
|
),
|
|
306
277
|
)
|
|
@@ -735,13 +706,9 @@ class AsyncMessagesClient:
|
|
|
735
706
|
agent_id: str,
|
|
736
707
|
message_id: str,
|
|
737
708
|
*,
|
|
738
|
-
|
|
739
|
-
content: typing.Optional[MessageUpdateContent] = OMIT,
|
|
740
|
-
name: typing.Optional[str] = OMIT,
|
|
741
|
-
tool_calls: typing.Optional[typing.Sequence[ChatCompletionMessageToolCallInput]] = OMIT,
|
|
742
|
-
tool_call_id: typing.Optional[str] = OMIT,
|
|
709
|
+
request: MessagesModifyRequest,
|
|
743
710
|
request_options: typing.Optional[RequestOptions] = None,
|
|
744
|
-
) ->
|
|
711
|
+
) -> MessagesModifyResponse:
|
|
745
712
|
"""
|
|
746
713
|
Update the details of a message associated with an agent.
|
|
747
714
|
|
|
@@ -751,34 +718,21 @@ class AsyncMessagesClient:
|
|
|
751
718
|
|
|
752
719
|
message_id : str
|
|
753
720
|
|
|
754
|
-
|
|
755
|
-
The role of the participant.
|
|
756
|
-
|
|
757
|
-
content : typing.Optional[MessageUpdateContent]
|
|
758
|
-
The content of the message.
|
|
759
|
-
|
|
760
|
-
name : typing.Optional[str]
|
|
761
|
-
The name of the participant.
|
|
762
|
-
|
|
763
|
-
tool_calls : typing.Optional[typing.Sequence[ChatCompletionMessageToolCallInput]]
|
|
764
|
-
The list of tool calls requested.
|
|
765
|
-
|
|
766
|
-
tool_call_id : typing.Optional[str]
|
|
767
|
-
The id of the tool call.
|
|
721
|
+
request : MessagesModifyRequest
|
|
768
722
|
|
|
769
723
|
request_options : typing.Optional[RequestOptions]
|
|
770
724
|
Request-specific configuration.
|
|
771
725
|
|
|
772
726
|
Returns
|
|
773
727
|
-------
|
|
774
|
-
|
|
728
|
+
MessagesModifyResponse
|
|
775
729
|
Successful Response
|
|
776
730
|
|
|
777
731
|
Examples
|
|
778
732
|
--------
|
|
779
733
|
import asyncio
|
|
780
734
|
|
|
781
|
-
from letta_client import AsyncLetta
|
|
735
|
+
from letta_client import AsyncLetta, UpdateSystemMessage
|
|
782
736
|
|
|
783
737
|
client = AsyncLetta(
|
|
784
738
|
token="YOUR_TOKEN",
|
|
@@ -789,6 +743,9 @@ class AsyncMessagesClient:
|
|
|
789
743
|
await client.agents.messages.modify(
|
|
790
744
|
agent_id="agent_id",
|
|
791
745
|
message_id="message_id",
|
|
746
|
+
request=UpdateSystemMessage(
|
|
747
|
+
content="content",
|
|
748
|
+
),
|
|
792
749
|
)
|
|
793
750
|
|
|
794
751
|
|
|
@@ -797,31 +754,18 @@ class AsyncMessagesClient:
|
|
|
797
754
|
_response = await self._client_wrapper.httpx_client.request(
|
|
798
755
|
f"v1/agents/{jsonable_encoder(agent_id)}/messages/{jsonable_encoder(message_id)}",
|
|
799
756
|
method="PATCH",
|
|
800
|
-
json=
|
|
801
|
-
"
|
|
802
|
-
|
|
803
|
-
object_=content, annotation=MessageUpdateContent, direction="write"
|
|
804
|
-
),
|
|
805
|
-
"name": name,
|
|
806
|
-
"tool_calls": convert_and_respect_annotation_metadata(
|
|
807
|
-
object_=tool_calls,
|
|
808
|
-
annotation=typing.Sequence[ChatCompletionMessageToolCallInput],
|
|
809
|
-
direction="write",
|
|
810
|
-
),
|
|
811
|
-
"tool_call_id": tool_call_id,
|
|
812
|
-
},
|
|
813
|
-
headers={
|
|
814
|
-
"content-type": "application/json",
|
|
815
|
-
},
|
|
757
|
+
json=convert_and_respect_annotation_metadata(
|
|
758
|
+
object_=request, annotation=MessagesModifyRequest, direction="write"
|
|
759
|
+
),
|
|
816
760
|
request_options=request_options,
|
|
817
761
|
omit=OMIT,
|
|
818
762
|
)
|
|
819
763
|
try:
|
|
820
764
|
if 200 <= _response.status_code < 300:
|
|
821
765
|
return typing.cast(
|
|
822
|
-
|
|
766
|
+
MessagesModifyResponse,
|
|
823
767
|
construct_type(
|
|
824
|
-
type_=
|
|
768
|
+
type_=MessagesModifyResponse, # type: ignore
|
|
825
769
|
object_=_response.json(),
|
|
826
770
|
),
|
|
827
771
|
)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from .letta_streaming_response import LettaStreamingResponse
|
|
4
|
-
from .
|
|
4
|
+
from .messages_modify_request import MessagesModifyRequest
|
|
5
|
+
from .messages_modify_response import MessagesModifyResponse
|
|
5
6
|
|
|
6
|
-
__all__ = ["LettaStreamingResponse", "
|
|
7
|
+
__all__ = ["LettaStreamingResponse", "MessagesModifyRequest", "MessagesModifyResponse"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
from ....types.update_system_message import UpdateSystemMessage
|
|
5
|
+
from ....types.update_user_message import UpdateUserMessage
|
|
6
|
+
from ....types.update_reasoning_message import UpdateReasoningMessage
|
|
7
|
+
from ....types.update_assistant_message import UpdateAssistantMessage
|
|
8
|
+
|
|
9
|
+
MessagesModifyRequest = typing.Union[
|
|
10
|
+
UpdateSystemMessage, UpdateUserMessage, UpdateReasoningMessage, UpdateAssistantMessage
|
|
11
|
+
]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
from ....types.update_system_message import UpdateSystemMessage
|
|
5
|
+
from ....types.update_user_message import UpdateUserMessage
|
|
6
|
+
from ....types.update_reasoning_message import UpdateReasoningMessage
|
|
7
|
+
from ....types.update_assistant_message import UpdateAssistantMessage
|
|
8
|
+
|
|
9
|
+
MessagesModifyResponse = typing.Union[
|
|
10
|
+
UpdateSystemMessage, UpdateUserMessage, UpdateReasoningMessage, UpdateAssistantMessage
|
|
11
|
+
]
|
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.58",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
letta_client/types/__init__.py
CHANGED
|
@@ -32,8 +32,7 @@ from .chat_completion_developer_message_param import ChatCompletionDeveloperMess
|
|
|
32
32
|
from .chat_completion_developer_message_param_content import ChatCompletionDeveloperMessageParamContent
|
|
33
33
|
from .chat_completion_function_call_option_param import ChatCompletionFunctionCallOptionParam
|
|
34
34
|
from .chat_completion_function_message_param import ChatCompletionFunctionMessageParam
|
|
35
|
-
from .
|
|
36
|
-
from .chat_completion_message_tool_call_output import ChatCompletionMessageToolCallOutput
|
|
35
|
+
from .chat_completion_message_tool_call import ChatCompletionMessageToolCall
|
|
37
36
|
from .chat_completion_message_tool_call_param import ChatCompletionMessageToolCallParam
|
|
38
37
|
from .chat_completion_named_tool_choice_param import ChatCompletionNamedToolChoiceParam
|
|
39
38
|
from .chat_completion_prediction_content_param import ChatCompletionPredictionContentParam
|
|
@@ -116,9 +115,6 @@ from .message_create_role import MessageCreateRole
|
|
|
116
115
|
from .message_role import MessageRole
|
|
117
116
|
from .not_found_error_body import NotFoundErrorBody
|
|
118
117
|
from .not_found_error_body_message import NotFoundErrorBodyMessage
|
|
119
|
-
from .openai_types_chat_chat_completion_message_tool_call_function import (
|
|
120
|
-
OpenaiTypesChatChatCompletionMessageToolCallFunction,
|
|
121
|
-
)
|
|
122
118
|
from .openai_types_chat_chat_completion_message_tool_call_param_function import (
|
|
123
119
|
OpenaiTypesChatChatCompletionMessageToolCallParamFunction,
|
|
124
120
|
)
|
|
@@ -162,6 +158,14 @@ from .tool_return_message import ToolReturnMessage
|
|
|
162
158
|
from .tool_return_message_status import ToolReturnMessageStatus
|
|
163
159
|
from .tool_return_status import ToolReturnStatus
|
|
164
160
|
from .tool_type import ToolType
|
|
161
|
+
from .update_assistant_message import UpdateAssistantMessage
|
|
162
|
+
from .update_assistant_message_content import UpdateAssistantMessageContent
|
|
163
|
+
from .update_reasoning_message import UpdateReasoningMessage
|
|
164
|
+
from .update_reasoning_message_reasoning import UpdateReasoningMessageReasoning
|
|
165
|
+
from .update_system_message import UpdateSystemMessage
|
|
166
|
+
from .update_system_message_content import UpdateSystemMessageContent
|
|
167
|
+
from .update_user_message import UpdateUserMessage
|
|
168
|
+
from .update_user_message_content import UpdateUserMessageContent
|
|
165
169
|
from .usage_statistics import UsageStatistics
|
|
166
170
|
from .user import User
|
|
167
171
|
from .user_create import UserCreate
|
|
@@ -204,8 +208,7 @@ __all__ = [
|
|
|
204
208
|
"ChatCompletionDeveloperMessageParamContent",
|
|
205
209
|
"ChatCompletionFunctionCallOptionParam",
|
|
206
210
|
"ChatCompletionFunctionMessageParam",
|
|
207
|
-
"
|
|
208
|
-
"ChatCompletionMessageToolCallOutput",
|
|
211
|
+
"ChatCompletionMessageToolCall",
|
|
209
212
|
"ChatCompletionMessageToolCallParam",
|
|
210
213
|
"ChatCompletionNamedToolChoiceParam",
|
|
211
214
|
"ChatCompletionPredictionContentParam",
|
|
@@ -288,7 +291,6 @@ __all__ = [
|
|
|
288
291
|
"MessageRole",
|
|
289
292
|
"NotFoundErrorBody",
|
|
290
293
|
"NotFoundErrorBodyMessage",
|
|
291
|
-
"OpenaiTypesChatChatCompletionMessageToolCallFunction",
|
|
292
294
|
"OpenaiTypesChatChatCompletionMessageToolCallParamFunction",
|
|
293
295
|
"OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction",
|
|
294
296
|
"OpenaiTypesChatCompletionCreateParamsFunction",
|
|
@@ -328,6 +330,14 @@ __all__ = [
|
|
|
328
330
|
"ToolReturnMessageStatus",
|
|
329
331
|
"ToolReturnStatus",
|
|
330
332
|
"ToolType",
|
|
333
|
+
"UpdateAssistantMessage",
|
|
334
|
+
"UpdateAssistantMessageContent",
|
|
335
|
+
"UpdateReasoningMessage",
|
|
336
|
+
"UpdateReasoningMessageReasoning",
|
|
337
|
+
"UpdateSystemMessage",
|
|
338
|
+
"UpdateSystemMessageContent",
|
|
339
|
+
"UpdateUserMessage",
|
|
340
|
+
"UpdateUserMessageContent",
|
|
331
341
|
"UsageStatistics",
|
|
332
342
|
"User",
|
|
333
343
|
"UserCreate",
|
|
@@ -7,7 +7,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
10
|
+
class ChatCompletionMessageToolCall(UncheckedBaseModel):
|
|
11
11
|
id: str
|
|
12
12
|
function: FunctionOutput
|
|
13
13
|
type: typing.Literal["function"] = "function"
|
letta_client/types/message.py
CHANGED
|
@@ -6,7 +6,7 @@ import pydantic
|
|
|
6
6
|
import datetime as dt
|
|
7
7
|
from .message_role import MessageRole
|
|
8
8
|
from .text_content import TextContent
|
|
9
|
-
from .
|
|
9
|
+
from .chat_completion_message_tool_call import ChatCompletionMessageToolCall
|
|
10
10
|
from .tool_return import ToolReturn
|
|
11
11
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
12
12
|
|
|
@@ -78,7 +78,7 @@ class Message(UncheckedBaseModel):
|
|
|
78
78
|
The name of the participant.
|
|
79
79
|
"""
|
|
80
80
|
|
|
81
|
-
tool_calls: typing.Optional[typing.List[
|
|
81
|
+
tool_calls: typing.Optional[typing.List[ChatCompletionMessageToolCall]] = pydantic.Field(default=None)
|
|
82
82
|
"""
|
|
83
83
|
The list of tool calls requested.
|
|
84
84
|
"""
|
letta_client/types/{chat_completion_message_tool_call_input.py → update_assistant_message.py}
RENAMED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
-
from .
|
|
5
|
-
OpenaiTypesChatChatCompletionMessageToolCallFunction,
|
|
6
|
-
)
|
|
4
|
+
from .update_assistant_message_content import UpdateAssistantMessageContent
|
|
7
5
|
import typing
|
|
8
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
9
7
|
import pydantic
|
|
10
8
|
|
|
11
9
|
|
|
12
|
-
class
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
type: typing.Literal["function"] = "function"
|
|
10
|
+
class UpdateAssistantMessage(UncheckedBaseModel):
|
|
11
|
+
content: UpdateAssistantMessageContent
|
|
12
|
+
message_type: typing.Literal["assistant_message"] = "assistant_message"
|
|
16
13
|
|
|
17
14
|
if IS_PYDANTIC_V2:
|
|
18
15
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
from .update_reasoning_message_reasoning import UpdateReasoningMessageReasoning
|
|
5
|
+
import typing
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
import pydantic
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class UpdateReasoningMessage(UncheckedBaseModel):
|
|
11
|
+
reasoning: UpdateReasoningMessageReasoning
|
|
12
|
+
message_type: typing.Literal["reasoning_message"] = "reasoning_message"
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
frozen = True
|
|
20
|
+
smart_union = True
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
from .update_system_message_content import UpdateSystemMessageContent
|
|
5
|
+
import typing
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
import pydantic
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class UpdateSystemMessage(UncheckedBaseModel):
|
|
11
|
+
content: UpdateSystemMessageContent
|
|
12
|
+
message_type: typing.Literal["system_message"] = "system_message"
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
frozen = True
|
|
20
|
+
smart_union = True
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
-
from
|
|
4
|
+
from .update_user_message_content import UpdateUserMessageContent
|
|
5
5
|
import typing
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
7
|
import pydantic
|
|
7
8
|
|
|
8
9
|
|
|
9
|
-
class
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
class UpdateUserMessage(UncheckedBaseModel):
|
|
11
|
+
content: UpdateUserMessageContent
|
|
12
|
+
message_type: typing.Literal["user_message"] = "user_message"
|
|
12
13
|
|
|
13
14
|
if IS_PYDANTIC_V2:
|
|
14
15
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=2cOFHMqO22-puFRZq7_HpLGRsNdILRTIAhxbtr-BpqU,56880
|
|
2
|
+
letta_client/agents/__init__.py,sha256=ePMwPIgzTgDIbCr1wR1Zch36fvKau2B1mOFmjt47CsE,22440
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=u5zvutxoH_DqfSLWhRtNSRBC9_ezQDx682cxkxDz3JA,23822
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
5
|
+
letta_client/agents/client.py,sha256=1z1dQuyRENb23yV-IqAlQRZ3zlUIXTW-dlPZwrWcUKs,83441
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=GKKvoG4N_K8Biz9yDjeIHpFG0C8Cwc7tHmEX3pTL_9U,4815
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -11,11 +11,12 @@ letta_client/agents/memory_variables/__init__.py,sha256=goz3kTaLM-v8g-hYEhzyqBYz
|
|
|
11
11
|
letta_client/agents/memory_variables/client.py,sha256=6qFVbR_tdfqj4HQ1h1HXR8DZCVzzJ8I82R92i35iadY,4965
|
|
12
12
|
letta_client/agents/memory_variables/types/__init__.py,sha256=EoznK0WvhCyFYd4KDdU-cGDQWpSXmq79BSkqVHN-j7A,180
|
|
13
13
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=bsF__n_B4ZXEHzg--OVD6tHHXt_aM-FjHm2x1ZXPnL0,599
|
|
14
|
-
letta_client/agents/messages/__init__.py,sha256=
|
|
15
|
-
letta_client/agents/messages/client.py,sha256=
|
|
16
|
-
letta_client/agents/messages/types/__init__.py,sha256=
|
|
14
|
+
letta_client/agents/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
|
|
15
|
+
letta_client/agents/messages/client.py,sha256=3YX76s_SWWeHiIvztFKYe7W4VMzo4u9bt4EdOchZ1nA,36065
|
|
16
|
+
letta_client/agents/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
|
|
17
17
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1AviakHXsWVcFv97a3RchzzzIiD77w4EC8,665
|
|
18
|
-
letta_client/agents/messages/types/
|
|
18
|
+
letta_client/agents/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
|
|
19
|
+
letta_client/agents/messages/types/messages_modify_response.py,sha256=CoyNyKec3DdPUSl2TlYk5_HsVbrvOtmxoUKCrTZ8UuQ,476
|
|
19
20
|
letta_client/agents/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
20
21
|
letta_client/agents/passages/client.py,sha256=aNaeyQU8AQHozFWkTbNH8MxpOUea-uiZ_RgdyFEFD2w,14818
|
|
21
22
|
letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -209,7 +210,7 @@ letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU
|
|
|
209
210
|
letta_client/client.py,sha256=xdSrD4IkWokZHujowd1r7zESBoVgKGNvo6RqgZ3f0Fg,12808
|
|
210
211
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
211
212
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
212
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
213
|
+
letta_client/core/client_wrapper.py,sha256=c8IFslbOlaJR5hAVcUaCemlWR51hxyNv0SzLE9iml_w,1997
|
|
213
214
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
214
215
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
215
216
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -422,7 +423,7 @@ letta_client/templates/types/templates_create_agents_response_agents_item_update
|
|
|
422
423
|
letta_client/templates/types/templates_create_agents_response_agents_item_updated_at_item.py,sha256=T3rYnv5m_cBAEPBnEjUkkHJLYtFZfXNMbb7a9FrIwKY,175
|
|
423
424
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
424
425
|
letta_client/tools/client.py,sha256=Oyds2HAtLITB0vGiSjAgJhv2EhJP_7JHj9X7zCAgJDk,55555
|
|
425
|
-
letta_client/types/__init__.py,sha256=
|
|
426
|
+
letta_client/types/__init__.py,sha256=uf7VVVNPY6IfMLi8KlYnQ-jck-enxJtJZGnmr5mCdyM,15951
|
|
426
427
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
427
428
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
428
429
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
@@ -455,8 +456,7 @@ letta_client/types/chat_completion_developer_message_param.py,sha256=co0ZSmW8yed
|
|
|
455
456
|
letta_client/types/chat_completion_developer_message_param_content.py,sha256=ki8osLfDmRKfam7122BOrhkQq0KtiiTEYdaqe097rBk,280
|
|
456
457
|
letta_client/types/chat_completion_function_call_option_param.py,sha256=xI734_RNiFTG_TGQt5I-g6gcB7RWQIPnfhm-NelqclI,582
|
|
457
458
|
letta_client/types/chat_completion_function_message_param.py,sha256=P9egbiOtT2-9RWidM42mYfN8TR99JcyNguKe13IjUVI,670
|
|
458
|
-
letta_client/types/
|
|
459
|
-
letta_client/types/chat_completion_message_tool_call_output.py,sha256=OPQFNZJzHjBC69X22Lia1oGQRt3qsby3OVZcfrnO2Sw,701
|
|
459
|
+
letta_client/types/chat_completion_message_tool_call.py,sha256=Gnwu6bej868eETxD7CaNIkxsGQuD9UnQaqDsbYY4oh0,695
|
|
460
460
|
letta_client/types/chat_completion_message_tool_call_param.py,sha256=UO5VuQMursyD3z5cpK2XElqKIJvN8Vln7U9ynyydUMc,846
|
|
461
461
|
letta_client/types/chat_completion_named_tool_choice_param.py,sha256=nTghUPEh6DlweUDhUaMyK5o92_FRe1gslK0zHfnGEDk,834
|
|
462
462
|
letta_client/types/chat_completion_prediction_content_param.py,sha256=lpK7Pe8iDcTx3QvgFnkyc0u9ntBGztWBFdGbgZLK0-4,778
|
|
@@ -532,14 +532,13 @@ letta_client/types/llm_config.py,sha256=B-LJpzPB5RNSPG-cag65yTIWc0mbD7iKg77N6ejP
|
|
|
532
532
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=HOSM5kIZDCNAVCWmASvAk52K819plqGlD66yKQ1xFkI,620
|
|
533
533
|
letta_client/types/local_sandbox_config.py,sha256=jfe7akG_YrJJ8csLaLdev04Zg1x-PTN0XCAL4KifaZI,1387
|
|
534
534
|
letta_client/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
|
|
535
|
-
letta_client/types/message.py,sha256=
|
|
535
|
+
letta_client/types/message.py,sha256=X4TSKPKJn97RcjCdZts96Yfoo78sGqJXAlrYIot9DRk,3457
|
|
536
536
|
letta_client/types/message_create.py,sha256=x80xQYxC3IUHs7PKCqHfeJkHRh02dx0oOc0PoJO8krc,1011
|
|
537
537
|
letta_client/types/message_create_content.py,sha256=N3W7IzbUk2RqEbL88noLCu4Bmbli5-yq35d0nfscGl8,185
|
|
538
538
|
letta_client/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
|
|
539
539
|
letta_client/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
|
|
540
540
|
letta_client/types/not_found_error_body.py,sha256=_1esSlUdkBx6CRs6aAIJrxzh3VZKEG0xzeLbxebBuy0,615
|
|
541
541
|
letta_client/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
|
|
542
|
-
letta_client/types/openai_types_chat_chat_completion_message_tool_call_function.py,sha256=HG7I1l5jl7eZRx3-Z8EfZdnKB4Oz5yUmRq9ej9OCQ28,616
|
|
543
542
|
letta_client/types/openai_types_chat_chat_completion_message_tool_call_param_function.py,sha256=glG5tG6g2uxP4R5jwsChkf3F0sb208uEbR-25dnrTiM,621
|
|
544
543
|
letta_client/types/openai_types_chat_chat_completion_named_tool_choice_param_function.py,sha256=20aPdyj3_-cD_p33yZ0ca3IbU9Apq1UrnxCSaU6OgYg,602
|
|
545
544
|
letta_client/types/openai_types_chat_completion_create_params_function.py,sha256=oTjYqRv8z6SMSdFgTl4W9oI-QUQxz8Unf4yn90sByss,721
|
|
@@ -579,6 +578,14 @@ letta_client/types/tool_return_message.py,sha256=hQ-17bvNGoSaCow4AvWSGLTa80fKuXP
|
|
|
579
578
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
580
579
|
letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
|
|
581
580
|
letta_client/types/tool_type.py,sha256=Br4Lk5nEsc8wcWP1leTqGPaYnNVWo4xMmoAksUTVqOA,271
|
|
581
|
+
letta_client/types/update_assistant_message.py,sha256=Kcp9B45eKIOmgpRW1PiMbkSLJ4axyFVW40bhHAE4os4,748
|
|
582
|
+
letta_client/types/update_assistant_message_content.py,sha256=iRX42-mdpRrRXeG4KKpZZpfUWGbhUZJYRQQLPiiZuHQ,194
|
|
583
|
+
letta_client/types/update_reasoning_message.py,sha256=bTcD0dB4yKhmRMA6tc-6FEPvqvCI7wnTsJ792aQravg,756
|
|
584
|
+
letta_client/types/update_reasoning_message_reasoning.py,sha256=sgrYNjckNurwNcInrkrDofTR43aSUnGe_Zj9TtL0t_8,196
|
|
585
|
+
letta_client/types/update_system_message.py,sha256=EEZa69qd_KoStdd6PvOphvlDCHZ2M0dCUQmMwUrpiEc,730
|
|
586
|
+
letta_client/types/update_system_message_content.py,sha256=a12Buz3WBq5n-mogPHExMNZGqsVmfsV_1J6sHnFoKD0,191
|
|
587
|
+
letta_client/types/update_user_message.py,sha256=PqMjFJN8r7GbmEe3Jbu276qsroCCWhqBqzmcmd0wq7c,718
|
|
588
|
+
letta_client/types/update_user_message_content.py,sha256=1KQtCr0yeO-jge1cBKe7vKPb0UcW7NdUaR94Q7jVz18,189
|
|
582
589
|
letta_client/types/usage_statistics.py,sha256=btEmMUxFVu7oQQtBCdQqFJ6XddgmR84799-AdlsHh0w,690
|
|
583
590
|
letta_client/types/user.py,sha256=z_v1uqQ6HYwV_Pp7wDDqS6QWhslHgdUH-AldV-jnmKQ,1349
|
|
584
591
|
letta_client/types/user_create.py,sha256=prQea3xb2-Cm64wv6Y84OfhWNWrA2P8SH5yhUxejzOI,616
|
|
@@ -592,6 +599,6 @@ letta_client/voice/__init__.py,sha256=ZrZEuXIukVGhsfM-i0dIFfqjeSOBMPeEgDva7Vvnip
|
|
|
592
599
|
letta_client/voice/client.py,sha256=j3feSlNzeTVFXE7RUKEHGeMl_w0TJFBRUI3pXpLpUEI,6148
|
|
593
600
|
letta_client/voice/types/__init__.py,sha256=hBLJcrom99DkDxxsVRU2ni8kPx6SsCy8gtAJvNOz26w,199
|
|
594
601
|
letta_client/voice/types/create_voice_chat_completions_request.py,sha256=K4__83rXRCshfdobyAmH-5fUDJQ_PeSQetTUeC4Abk0,381
|
|
595
|
-
letta_client-0.1.
|
|
596
|
-
letta_client-0.1.
|
|
597
|
-
letta_client-0.1.
|
|
602
|
+
letta_client-0.1.58.dist-info/METADATA,sha256=OJ3HHKzpB7y379cJJifraRkKyltx4SVHdV6q5uPf_Zc,4942
|
|
603
|
+
letta_client-0.1.58.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
604
|
+
letta_client-0.1.58.dist-info/RECORD,,
|
|
File without changes
|