letta-client 0.1.294__py3-none-any.whl → 0.1.299__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 +16 -0
- letta_client/agents/__init__.py +2 -0
- letta_client/agents/client.py +100 -0
- letta_client/agents/messages/__init__.py +2 -0
- letta_client/agents/messages/client.py +17 -15
- letta_client/agents/messages/raw_client.py +23 -21
- letta_client/agents/messages/types/__init__.py +2 -0
- letta_client/agents/messages/types/letta_async_request_messages_item.py +8 -0
- letta_client/agents/messages/types/messages_modify_response.py +4 -0
- letta_client/agents/raw_client.py +122 -0
- letta_client/agents/tools/client.py +74 -0
- letta_client/agents/tools/raw_client.py +60 -0
- letta_client/agents/types/create_agent_request_tool_rules_item.py +2 -0
- letta_client/agents/types/update_agent_tool_rules_item.py +2 -0
- letta_client/core/client_wrapper.py +2 -2
- letta_client/groups/messages/client.py +12 -11
- letta_client/groups/messages/raw_client.py +16 -15
- letta_client/groups/messages/types/messages_modify_response.py +4 -0
- letta_client/templates/__init__.py +2 -0
- letta_client/templates/client.py +20 -0
- letta_client/templates/raw_client.py +20 -0
- letta_client/templates/types/__init__.py +4 -0
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py +4 -0
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template.py +22 -0
- letta_client/tools/client.py +30 -0
- letta_client/tools/raw_client.py +30 -0
- letta_client/types/__init__.py +14 -0
- letta_client/types/agent_state_tool_rules_item.py +2 -0
- letta_client/types/approval_create.py +42 -0
- letta_client/types/approval_request_message.py +45 -0
- letta_client/types/approval_response_message.py +56 -0
- letta_client/types/letta_batch_request.py +2 -2
- letta_client/types/letta_batch_request_messages_item.py +8 -0
- letta_client/types/letta_message_union.py +4 -0
- letta_client/types/letta_request.py +2 -2
- letta_client/types/letta_request_messages_item.py +8 -0
- letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py +2 -0
- letta_client/types/letta_schemas_agent_file_message_schema.py +5 -0
- letta_client/types/letta_schemas_agent_file_tool_schema.py +5 -0
- letta_client/types/letta_streaming_request.py +3 -3
- letta_client/types/letta_streaming_request_messages_item.py +8 -0
- letta_client/types/message_create.py +5 -0
- letta_client/types/message_role.py +1 -1
- letta_client/types/message_type.py +2 -0
- letta_client/types/passage.py +5 -0
- letta_client/types/requires_approval_tool_rule.py +33 -0
- letta_client/types/stop_reason_type.py +1 -0
- letta_client/types/tool.py +5 -0
- letta_client/types/tool_create.py +5 -0
- {letta_client-0.1.294.dist-info → letta_client-0.1.299.dist-info}/METADATA +1 -1
- {letta_client-0.1.294.dist-info → letta_client-0.1.299.dist-info}/RECORD +52 -43
- {letta_client-0.1.294.dist-info → letta_client-0.1.299.dist-info}/WHEEL +0 -0
|
@@ -5,12 +5,12 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
-
from .
|
|
8
|
+
from .letta_batch_request_messages_item import LettaBatchRequestMessagesItem
|
|
9
9
|
from .message_type import MessageType
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class LettaBatchRequest(UncheckedBaseModel):
|
|
13
|
-
messages: typing.List[
|
|
13
|
+
messages: typing.List[LettaBatchRequestMessagesItem] = pydantic.Field()
|
|
14
14
|
"""
|
|
15
15
|
The messages to be sent to the agent.
|
|
16
16
|
"""
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
|
+
from .approval_request_message import ApprovalRequestMessage
|
|
6
|
+
from .approval_response_message import ApprovalResponseMessage
|
|
5
7
|
from .assistant_message import AssistantMessage
|
|
6
8
|
from .hidden_reasoning_message import HiddenReasoningMessage
|
|
7
9
|
from .reasoning_message import ReasoningMessage
|
|
@@ -18,4 +20,6 @@ LettaMessageUnion = typing.Union[
|
|
|
18
20
|
ToolCallMessage,
|
|
19
21
|
ToolReturnMessage,
|
|
20
22
|
AssistantMessage,
|
|
23
|
+
ApprovalRequestMessage,
|
|
24
|
+
ApprovalResponseMessage,
|
|
21
25
|
]
|
|
@@ -5,12 +5,12 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
-
from .
|
|
8
|
+
from .letta_request_messages_item import LettaRequestMessagesItem
|
|
9
9
|
from .message_type import MessageType
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class LettaRequest(UncheckedBaseModel):
|
|
13
|
-
messages: typing.List[
|
|
13
|
+
messages: typing.List[LettaRequestMessagesItem] = pydantic.Field()
|
|
14
14
|
"""
|
|
15
15
|
The messages to be sent to the agent.
|
|
16
16
|
"""
|
|
@@ -9,6 +9,7 @@ from .init_tool_rule import InitToolRule
|
|
|
9
9
|
from .max_count_per_step_tool_rule import MaxCountPerStepToolRule
|
|
10
10
|
from .parent_tool_rule import ParentToolRule
|
|
11
11
|
from .required_before_exit_tool_rule import RequiredBeforeExitToolRule
|
|
12
|
+
from .requires_approval_tool_rule import RequiresApprovalToolRule
|
|
12
13
|
from .terminal_tool_rule import TerminalToolRule
|
|
13
14
|
|
|
14
15
|
LettaSchemasAgentFileAgentSchemaToolRulesItem = typing.Union[
|
|
@@ -19,5 +20,6 @@ LettaSchemasAgentFileAgentSchemaToolRulesItem = typing.Union[
|
|
|
19
20
|
MaxCountPerStepToolRule,
|
|
20
21
|
ParentToolRule,
|
|
21
22
|
RequiredBeforeExitToolRule,
|
|
23
|
+
RequiresApprovalToolRule,
|
|
22
24
|
InitToolRule,
|
|
23
25
|
]
|
|
@@ -17,6 +17,11 @@ class LettaSchemasAgentFileMessageSchema(UncheckedBaseModel):
|
|
|
17
17
|
Message with human-readable ID for agent file
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
|
+
type: typing.Optional[typing.Literal["message"]] = pydantic.Field(default=None)
|
|
21
|
+
"""
|
|
22
|
+
The message type to be created.
|
|
23
|
+
"""
|
|
24
|
+
|
|
20
25
|
role: MessageRole = pydantic.Field()
|
|
21
26
|
"""
|
|
22
27
|
The role of the participant.
|
|
@@ -77,6 +77,11 @@ class LettaSchemasAgentFileToolSchema(UncheckedBaseModel):
|
|
|
77
77
|
Optional list of npm packages required by this tool.
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
|
+
default_requires_approval: typing.Optional[bool] = pydantic.Field(default=None)
|
|
81
|
+
"""
|
|
82
|
+
Default value for whether or not executing this tool requires approval.
|
|
83
|
+
"""
|
|
84
|
+
|
|
80
85
|
created_by_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
81
86
|
"""
|
|
82
87
|
The id of the user that made this Tool.
|
|
@@ -5,12 +5,12 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
8
|
-
from .
|
|
8
|
+
from .letta_streaming_request_messages_item import LettaStreamingRequestMessagesItem
|
|
9
9
|
from .message_type import MessageType
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class LettaStreamingRequest(UncheckedBaseModel):
|
|
13
|
-
messages: typing.List[
|
|
13
|
+
messages: typing.List[LettaStreamingRequestMessagesItem] = pydantic.Field()
|
|
14
14
|
"""
|
|
15
15
|
The messages to be sent to the agent.
|
|
16
16
|
"""
|
|
@@ -47,7 +47,7 @@ class LettaStreamingRequest(UncheckedBaseModel):
|
|
|
47
47
|
|
|
48
48
|
stream_tokens: typing.Optional[bool] = pydantic.Field(default=None)
|
|
49
49
|
"""
|
|
50
|
-
Flag to determine if individual tokens should be streamed
|
|
50
|
+
Flag to determine if individual tokens should be streamed, rather than streaming per step.
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
53
|
include_pings: typing.Optional[bool] = pydantic.Field(default=None)
|
|
@@ -14,6 +14,11 @@ class MessageCreate(UncheckedBaseModel):
|
|
|
14
14
|
Request to create a message
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
type: typing.Optional[typing.Literal["message"]] = pydantic.Field(default=None)
|
|
18
|
+
"""
|
|
19
|
+
The message type to be created.
|
|
20
|
+
"""
|
|
21
|
+
|
|
17
22
|
role: MessageCreateRole = pydantic.Field()
|
|
18
23
|
"""
|
|
19
24
|
The role of the participant.
|
letta_client/types/passage.py
CHANGED
|
@@ -74,6 +74,11 @@ class Passage(UncheckedBaseModel):
|
|
|
74
74
|
The metadata of the passage.
|
|
75
75
|
"""
|
|
76
76
|
|
|
77
|
+
tags: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
|
|
78
|
+
"""
|
|
79
|
+
Tags associated with this passage.
|
|
80
|
+
"""
|
|
81
|
+
|
|
77
82
|
id: typing.Optional[str] = pydantic.Field(default=None)
|
|
78
83
|
"""
|
|
79
84
|
The human-friendly ID of the Passage
|
|
@@ -0,0 +1,33 @@
|
|
|
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 RequiresApprovalToolRule(UncheckedBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Represents a tool rule configuration which requires approval before the tool can be invoked.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
tool_name: str = pydantic.Field()
|
|
16
|
+
"""
|
|
17
|
+
The name of the tool. Must exist in the database for the user's organization.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
type: typing.Literal["requires_approval"] = "requires_approval"
|
|
21
|
+
prompt_template: typing.Optional[str] = pydantic.Field(default=None)
|
|
22
|
+
"""
|
|
23
|
+
Optional Jinja2 template for generating agent prompt about this tool rule. Template can use variables like 'tool_name' and rule-specific attributes.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
if IS_PYDANTIC_V2:
|
|
27
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
28
|
+
else:
|
|
29
|
+
|
|
30
|
+
class Config:
|
|
31
|
+
frozen = True
|
|
32
|
+
smart_union = True
|
|
33
|
+
extra = pydantic.Extra.allow
|
letta_client/types/tool.py
CHANGED
|
@@ -84,6 +84,11 @@ class Tool(UncheckedBaseModel):
|
|
|
84
84
|
Optional list of npm packages required by this tool.
|
|
85
85
|
"""
|
|
86
86
|
|
|
87
|
+
default_requires_approval: typing.Optional[bool] = pydantic.Field(default=None)
|
|
88
|
+
"""
|
|
89
|
+
Default value for whether or not executing this tool requires approval.
|
|
90
|
+
"""
|
|
91
|
+
|
|
87
92
|
created_by_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
88
93
|
"""
|
|
89
94
|
The id of the user that made this Tool.
|
|
@@ -55,6 +55,11 @@ class ToolCreate(UncheckedBaseModel):
|
|
|
55
55
|
Optional list of npm packages required by this tool.
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
|
+
default_requires_approval: typing.Optional[bool] = pydantic.Field(default=None)
|
|
59
|
+
"""
|
|
60
|
+
Whether or not to require approval before executing this tool.
|
|
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:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=5zuBCbEolWRe3lWOHAaRJhOJlf5nhzaBBx-QcyOAGyQ,27077
|
|
2
|
+
letta_client/agents/__init__.py,sha256=_Pbfo96Sq78LfmkAYzx3nnkcobGfEKOx95AL1JswReY,1984
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=CUwVh5FHgD0YP3VNhUrWdkedMWk49yH3IiDD589AWEM,15809
|
|
5
5
|
letta_client/agents/blocks/raw_client.py,sha256=Cx_85c78oqIOPZIPfCOsIa8WOL2EUNRwXJRGbOqn2AA,25570
|
|
6
|
-
letta_client/agents/client.py,sha256=
|
|
6
|
+
letta_client/agents/client.py,sha256=msRxy3o9lIuJcUQ01gRW2g7e8zx5Zuy2A8wQ29EvCs4,76486
|
|
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
|
|
9
9
|
letta_client/agents/context/raw_client.py,sha256=j2gko-oEFWuCgPkcX9jCv31OWvR6sTOtAYcSWllXYDs,4747
|
|
@@ -24,18 +24,19 @@ letta_client/agents/memory_variables/client.py,sha256=VfK4O6mBEuA9mDb_sj5ed9e2Ng
|
|
|
24
24
|
letta_client/agents/memory_variables/raw_client.py,sha256=lwWJQlKh4InQgrCH8iHPBwHweda7fxcNpXFWUhzg980,4887
|
|
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
|
-
letta_client/agents/messages/__init__.py,sha256=
|
|
28
|
-
letta_client/agents/messages/client.py,sha256=
|
|
29
|
-
letta_client/agents/messages/raw_client.py,sha256=
|
|
30
|
-
letta_client/agents/messages/types/__init__.py,sha256=
|
|
27
|
+
letta_client/agents/messages/__init__.py,sha256=QSgqQ3MhwsMPIMxD_xAKVK8zRrjb56LR33wTG_SVDIY,445
|
|
28
|
+
letta_client/agents/messages/client.py,sha256=vBMNxqc43blNJursqzxewWxZMR-Su0bdIPhGUrEuB8o,40443
|
|
29
|
+
letta_client/agents/messages/raw_client.py,sha256=PFmgjAHmMIWR761hmSKU-WlhbNs9X4DbuTYGwjF84HI,58434
|
|
30
|
+
letta_client/agents/messages/types/__init__.py,sha256=h2f7Jwr7hrN7Bw6P5LZMl0MR5B5tMlSeLBJ3Ozh6uKg,607
|
|
31
|
+
letta_client/agents/messages/types/letta_async_request_messages_item.py,sha256=ENCLYOoBskZ23fPYAc5UKEa2CH9_k8UWWp-l-92PFIE,261
|
|
31
32
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=TEqXH71L621ToSXJpmJk8QUJE71QhXuZOVk4AMeWgFc,801
|
|
32
33
|
letta_client/agents/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
33
|
-
letta_client/agents/messages/types/messages_modify_response.py,sha256=
|
|
34
|
+
letta_client/agents/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
|
|
34
35
|
letta_client/agents/messages/types/messages_preview_raw_payload_request.py,sha256=ncI14H-30FLJujezUyk2yS7Jfqf7TqqhcWejWXQ4pcE,283
|
|
35
36
|
letta_client/agents/passages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
36
37
|
letta_client/agents/passages/client.py,sha256=AJvkZDBFHBxPxP0acxcZ7ugfv-y32y7wyyJiK-uQch4,11839
|
|
37
38
|
letta_client/agents/passages/raw_client.py,sha256=_LCdUryyZrLYRdZeCmHChcS3nqwUKG4X4369YF3Cops,18644
|
|
38
|
-
letta_client/agents/raw_client.py,sha256=
|
|
39
|
+
letta_client/agents/raw_client.py,sha256=RSM4cTbqzfLf0nF8ZK0TQ696mXcanL6zV3Emieiw69c,102189
|
|
39
40
|
letta_client/agents/sources/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
40
41
|
letta_client/agents/sources/client.py,sha256=lCqB6FF9svrwf0oZSFs41WKlMXc-YRhUeb4FZkHbicM,6868
|
|
41
42
|
letta_client/agents/sources/raw_client.py,sha256=ts4c5UBuXzrHU-lFWWrYniQqrMEc8SN0rfiqNXJLP5Y,12399
|
|
@@ -45,8 +46,8 @@ letta_client/agents/templates/raw_client.py,sha256=31Octb_klpQJ61Kkv7Xvl3euF4oaS
|
|
|
45
46
|
letta_client/agents/templates/types/__init__.py,sha256=kalMrvEN0SnhXNKN1gMIVMp5MICLlEz1XK-ZksOatXQ,190
|
|
46
47
|
letta_client/agents/templates/types/templates_migrate_response.py,sha256=hxcCvKw08iV7vaHFFm3ti9qlwDmiUtRl30A8DShu99Y,578
|
|
47
48
|
letta_client/agents/tools/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
48
|
-
letta_client/agents/tools/client.py,sha256=
|
|
49
|
-
letta_client/agents/tools/raw_client.py,sha256=
|
|
49
|
+
letta_client/agents/tools/client.py,sha256=46PGF5ETI_ykSEDnDVmPVJO87CL1Mo4iEGnyD3SWH1g,8554
|
|
50
|
+
letta_client/agents/tools/raw_client.py,sha256=FdF2AEDEpz20uZaYz_AcdSfCj8yckJpK_KNdq-IHb1k,14558
|
|
50
51
|
letta_client/agents/types/__init__.py,sha256=9Ex37_4WN3YYNiCnShrT5NSwCe5IUzOLcnn_l7glJPI,1629
|
|
51
52
|
letta_client/agents/types/agents_search_request_search_item.py,sha256=0Nr_B-Ngq3ixrggAIf_iBRAvK6ZEbVCugUJOJeZcYjM,754
|
|
52
53
|
letta_client/agents/types/agents_search_request_search_item_field.py,sha256=DxejFdgU5OCBJ43u6WZPTVfAhSPmPh8E2QnrIfL30RA,684
|
|
@@ -58,9 +59,9 @@ letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=rgwRm
|
|
|
58
59
|
letta_client/agents/types/agents_search_request_sort_by.py,sha256=svlezWF0A2JQlEnjjIXTMJnkrCjRot1r7ITCP1nQ4iQ,186
|
|
59
60
|
letta_client/agents/types/agents_search_response.py,sha256=MQwHnZgk0p2Eb85smfWE6qpKAIrOKijbjKcaHpKpfjI,816
|
|
60
61
|
letta_client/agents/types/create_agent_request_response_format.py,sha256=KelhhSSmhjllSbI4NxxY7MVdII28-KLI6DC9-BMRomo,410
|
|
61
|
-
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=
|
|
62
|
+
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=CUKSYO0ZpKjtpiITefr14AajfQwkzGF60kT8vCQD8oI,905
|
|
62
63
|
letta_client/agents/types/update_agent_response_format.py,sha256=31HEHo0H99dzGPi4m3U0LAoGpWrzjEx_t4b72kVhBYI,403
|
|
63
|
-
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=
|
|
64
|
+
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=H9sgZurQhGAIUvuFNNrcKldyDKCtGtHc9KyiOZugvxM,898
|
|
64
65
|
letta_client/base_client.py,sha256=5zKvhW_CnSDY1TRvAMcX_iYbIBbLob6NRrd7ezom37w,10698
|
|
65
66
|
letta_client/batches/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
66
67
|
letta_client/batches/client.py,sha256=hvgUXvClZjuNiJu0J3u9X35W6Z7DZlZXaSjnl1-pIk0,10886
|
|
@@ -89,7 +90,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
89
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
|
|
90
91
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
91
92
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
92
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
93
|
+
letta_client/core/client_wrapper.py,sha256=U_l-NpoEbUtWIBvuBmsspSIHOu6kv-71c_actjIBxaA,2776
|
|
93
94
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
94
95
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
95
96
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -124,12 +125,12 @@ letta_client/folders/raw_client.py,sha256=bd5th49qJBEdmDMB5ugVEzP_mXUeZsCo3Kxn6K
|
|
|
124
125
|
letta_client/groups/__init__.py,sha256=qrGge7rHzMf1V10ZpxL3rbxmpx9esxUCoQ29gV3Nwhk,454
|
|
125
126
|
letta_client/groups/client.py,sha256=TRiW1CNfMzrxJyHLAiryVLEuPGdWKQ76xb8f_u_4cRc,16857
|
|
126
127
|
letta_client/groups/messages/__init__.py,sha256=sX6KPOYCrwTCyzKGNBxejgOvDNFopOJkWd037ei6Uik,263
|
|
127
|
-
letta_client/groups/messages/client.py,sha256=
|
|
128
|
-
letta_client/groups/messages/raw_client.py,sha256=
|
|
128
|
+
letta_client/groups/messages/client.py,sha256=_Bj44n8PBTRvPhU3AdBDL8QGOeI2UDH-d4B-Q5BbHLI,25670
|
|
129
|
+
letta_client/groups/messages/raw_client.py,sha256=gt9f3ntwa7qmdUfvxVIZOMlCeTBiT8kUavzPY-qcjH4,37893
|
|
129
130
|
letta_client/groups/messages/types/__init__.py,sha256=8WRhpu-Xkvw1oqY-n0vptOO46BddTEt68L1kVVClvNM,355
|
|
130
131
|
letta_client/groups/messages/types/letta_streaming_response.py,sha256=IFJSwCiedThHyMYhK4CqLV01HqS8JZ1KZDs4V13Yc0w,666
|
|
131
132
|
letta_client/groups/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
132
|
-
letta_client/groups/messages/types/messages_modify_response.py,sha256=
|
|
133
|
+
letta_client/groups/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
|
|
133
134
|
letta_client/groups/raw_client.py,sha256=Y7F3ToHgkONWmloEJCdt5cKkYrRRbg5xr3xlq1jahFU,29595
|
|
134
135
|
letta_client/groups/types/__init__.py,sha256=o7_cyVEMWvswE9WmTCYiJEVqKhPgtLPw398JkHzF7ro,285
|
|
135
136
|
letta_client/groups/types/group_create_manager_config.py,sha256=AelsYFpwlqpI9VeRvW7WE_Y5OTBxv97psgCybDubD8c,514
|
|
@@ -199,7 +200,7 @@ letta_client/tags/raw_client.py,sha256=DQXEgzOuCygBMbzX63Sc9UwfueALa5rUHH3c8jb4O
|
|
|
199
200
|
letta_client/telemetry/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
200
201
|
letta_client/telemetry/client.py,sha256=cHMxfLAFjbT-XLtG0o04tGMaRnabrPuixbfHV3HFitE,3042
|
|
201
202
|
letta_client/telemetry/raw_client.py,sha256=Zxs3KkYCfs6M1b4vJbzHunZs7SzSiYAiy4Nb7tFAKC8,4962
|
|
202
|
-
letta_client/templates/__init__.py,sha256=
|
|
203
|
+
letta_client/templates/__init__.py,sha256=G3ToD1RUnDkj2rZV3M82hiudHSGhcf2XI-EpIzImUMQ,3896
|
|
203
204
|
letta_client/templates/agents/__init__.py,sha256=Nb3AeDuJhSba_DbgHKuCUY1b3PT1jj3-YMJ7uW7RIAk,393
|
|
204
205
|
letta_client/templates/agents/client.py,sha256=HCCEZZ3b0tGonxDNbiPuXadoZu_x1G_OtBdTHRBpG4M,7088
|
|
205
206
|
letta_client/templates/agents/raw_client.py,sha256=RGf_8ZaBbkS3sE7qrKqirL8Mu-E7CDRZNEKFWCJ3v4E,9552
|
|
@@ -207,9 +208,9 @@ letta_client/templates/agents/types/__init__.py,sha256=gDThrVEf3npLrxCqHWKgJLwB6
|
|
|
207
208
|
letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item.py,sha256=0--NEWDhbw-1WBF5wr5tl25ucWkqHvhmSm8iuQOr6tw,986
|
|
208
209
|
letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item_role.py,sha256=Xp6uU0_CfWtIBtHdwicF9b4yAcrCYXQyYvxtNKyq-K4,210
|
|
209
210
|
letta_client/templates/agents/types/agents_create_response.py,sha256=P5sppbD_qW7I9suv5Ykm7tlgnh5a3omYggA8JgLw2RY,637
|
|
210
|
-
letta_client/templates/client.py,sha256=
|
|
211
|
-
letta_client/templates/raw_client.py,sha256=
|
|
212
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
211
|
+
letta_client/templates/client.py,sha256=jSMC0kubRHe5hsrozDYJqnQW6nPPEX4W2fOkHmABnwk,27533
|
|
212
|
+
letta_client/templates/raw_client.py,sha256=UHqX47RgBL3hDl-Tq_OKLl_6g1FfiyOJg3gTTRPTMkY,44444
|
|
213
|
+
letta_client/templates/types/__init__.py,sha256=gbQnd4ODVSObpyIJGiJ2n8EY1TgYpDbeq6hphxhysJY,5670
|
|
213
214
|
letta_client/templates/types/templates_create_template_response.py,sha256=UKaNiwW7WNX4Q3_IqGkFJaatMcdSS-Tsf8gDT2i677w,1082
|
|
214
215
|
letta_client/templates/types/templates_delete_template_response.py,sha256=_DUyWh9jtgw8u_U_JsV8N-RhPcY32QLAQZsUCSXDCTY,583
|
|
215
216
|
letta_client/templates/types/templates_fork_template_response.py,sha256=zX8aCR5Z8sEgXJHHzxsPeYRNMW2HfD26EN5Mlwrt-ZI,1080
|
|
@@ -218,12 +219,13 @@ letta_client/templates/types/templates_get_template_snapshot_response_agents_ite
|
|
|
218
219
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables.py,sha256=POh1PTstz0UC_rOnkpEyIQI0yHrANeM6Y5vuJlJAruU,877
|
|
219
220
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables_data_item.py,sha256=TNgE_92wCm2MEGERb_q24_GKzvbh1z1I3pchuwowowA,816
|
|
220
221
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties.py,sha256=9s-Abzd4QfGjeOyzrdwrPLad4mZx7z4cvX7aOKbeyHs,1084
|
|
221
|
-
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=
|
|
222
|
+
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=_fQY5-2x_-A0v5hho_jRUeZrvowovjuzVy9ZHlGST0w,2321
|
|
222
223
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_output_mapping.py,sha256=LLnaNqnXFnoLRTZo2O9nCFlkLTkdj2Re1h6ItsM-_RQ,895
|
|
223
224
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_five.py,sha256=6yyJTWEoTy6UVFHqqzbvfY_i1VmWLuZVaRBWU8EbKx8,738
|
|
224
225
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_four.py,sha256=f6ocdxac6oeozltoJK9JyDRf2mSlxC4iYkOoXx5iQRk,731
|
|
225
226
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_max_count_limit.py,sha256=SfDBej2crgo7Bp9vksmT-abkCBJTDWJ9fC5zmZ0Tz7U,772
|
|
226
227
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_one.py,sha256=hCBKI3NoMG3ka0nE_DxScubJuyCKmvTBpk916BLygfo,726
|
|
228
|
+
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_prompt_template.py,sha256=rscHsbtUlHbzfxz5QUcLd85ny-8AEq81TFrCvDVDjiM,745
|
|
227
229
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_seven.py,sha256=q66qeWM8QE-ySyWv2mnkEnO8pntQrXkifw-zLvtqVns,766
|
|
228
230
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_two.py,sha256=LNzwnMLjyskkT4-2WoRD3D9-JYZXpfcLAB91LAqzwxc,726
|
|
229
231
|
letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_zero.py,sha256=1vTNmInW_YrU9H9Ik361lMnzHSKjd48J1KE5eY3n0r8,770
|
|
@@ -240,8 +242,8 @@ letta_client/templates/types/templates_list_template_versions_response_versions_
|
|
|
240
242
|
letta_client/templates/types/templates_rename_template_response.py,sha256=iH8paSt5k0jzqTDezOw2PJbgbDJIqVkA4zWnsa64JX4,583
|
|
241
243
|
letta_client/templates/types/templates_save_template_version_response.py,sha256=gmRwrpCk5UM1TH2Sru4iX_ybTAMftVsHI0DOVGxdFrw,1087
|
|
242
244
|
letta_client/tools/__init__.py,sha256=ZR4ev9ZmyWZl9iJPXK_FRk79YjgIytkA_2TlNS1PaQI,725
|
|
243
|
-
letta_client/tools/client.py,sha256=
|
|
244
|
-
letta_client/tools/raw_client.py,sha256=
|
|
245
|
+
letta_client/tools/client.py,sha256=DNbMIqRMaTP2Sfu6veaIbp_n_pgp9uHD0J3Of9uEcnk,60735
|
|
246
|
+
letta_client/tools/raw_client.py,sha256=SNBrkjiJrsuxTOVEM1IKmCa0yYMjRSy_6dvLhQ_j5Yo,107115
|
|
245
247
|
letta_client/tools/types/__init__.py,sha256=A6LN4Xvy2t4O23X5AihXMQwRs1iLnYrA6HOwFqBL720,1055
|
|
246
248
|
letta_client/tools/types/add_mcp_server_request.py,sha256=N9WDntHlIAxRQafdSnIydUNEEaOwnDISqGLMyHBrWr8,372
|
|
247
249
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=LryGwJSSLAX6crN_EctrRlJo0OCOUOK5mEGsgR4hONg,377
|
|
@@ -253,7 +255,7 @@ letta_client/tools/types/streaming_response.py,sha256=V1qT-XAqm-z7zffJ7W1JKPCaxZ
|
|
|
253
255
|
letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzuBSKv8O3Y7qSUFrCiXEvSRk,373
|
|
254
256
|
letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
|
|
255
257
|
letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
|
|
256
|
-
letta_client/types/__init__.py,sha256=
|
|
258
|
+
letta_client/types/__init__.py,sha256=P_vKYIsnDYKlOrTtXSg3Gc4ry6c4VdeHQ72Qf0PBq0Q,29971
|
|
257
259
|
letta_client/types/action_model.py,sha256=VTXavHB6J2d4MjjTMEpkuEyVaiTHyj1FGfa4j8kN6hQ,1241
|
|
258
260
|
letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
|
|
259
261
|
letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
|
|
@@ -262,11 +264,14 @@ letta_client/types/agent_file_attachment.py,sha256=J8zj7RkNkKr2ikgY1nbtcMNiBzZch
|
|
|
262
264
|
letta_client/types/agent_file_schema.py,sha256=yD3QqRVWQr7T9M7OXL9KWNCP9BiR9wZC48xKnGzqsxQ,2212
|
|
263
265
|
letta_client/types/agent_state.py,sha256=gnAIpQvmKbkJoOJNp6Udj2Z8SCmER9-UPurnCKvUapw,6923
|
|
264
266
|
letta_client/types/agent_state_response_format.py,sha256=EsaiTnlxRPkGPBc67DCsVAARsGubFQM7Xbs12jtsvWw,378
|
|
265
|
-
letta_client/types/agent_state_tool_rules_item.py,sha256=
|
|
267
|
+
letta_client/types/agent_state_tool_rules_item.py,sha256=m0DKEipSMed98rueO2oqqBNhNp5-l-mfBvUGHSS0Ibg,825
|
|
266
268
|
letta_client/types/agent_type.py,sha256=4_JSgy0zfiqtUcKh5XMfRDYaablo4RuzUmIstRZ2FsI,370
|
|
267
269
|
letta_client/types/app_auth_scheme.py,sha256=A1ha3TmjgFw3-mW8r44LPB_Go3pdbGxJ_LHrDChSG14,1243
|
|
268
270
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
|
|
269
271
|
letta_client/types/app_model.py,sha256=6QlEj1uFSnUMDEkmM1XF1umO-X6AHq5oBGzVTZeZeEo,1520
|
|
272
|
+
letta_client/types/approval_create.py,sha256=cB5zRgOYzcyAM_ZTKELeCy8SIWTzPQUNcMd1uLjXB_I,1092
|
|
273
|
+
letta_client/types/approval_request_message.py,sha256=goqIU7BQEdOy5DEurCmtdROCxWWjw8BM4938bgUhS5w,1499
|
|
274
|
+
letta_client/types/approval_response_message.py,sha256=mtY_Je8CEOeO78-dcg0aSG3mqRx9afIe_xqcrJcLBDs,1846
|
|
270
275
|
letta_client/types/assistant_message.py,sha256=iFCIXRIndpEfBpdv5jX1IMBOWKJsciQF12lfB4I9bHI,1631
|
|
271
276
|
letta_client/types/assistant_message_content.py,sha256=rJZePqcZN74tqx-FbArUF1FaqvATOYAn87mvdpqyINA,242
|
|
272
277
|
letta_client/types/audio.py,sha256=1HlHjJ1FEv4J5G4jQY24G0H91T5LT3K6e-dnQ1Di7i8,549
|
|
@@ -406,26 +411,29 @@ letta_client/types/json_object_response_format.py,sha256=POxWWP3fHht3VcaQfpoMJ1H
|
|
|
406
411
|
letta_client/types/json_schema.py,sha256=lChgj4n8vBqAWwWIDReoPGgPos9cSNnv7V09nOcr1XU,871
|
|
407
412
|
letta_client/types/json_schema_response_format.py,sha256=D-MVRL01fwariUWGU5_OHGUMRrjFOy4NnQg-OiL5jLs,817
|
|
408
413
|
letta_client/types/letta_batch_messages.py,sha256=hGkufnFNXeqf79h9OV-ooVe3BEcZQ221Jeg7KPqJ7f8,614
|
|
409
|
-
letta_client/types/letta_batch_request.py,sha256=
|
|
414
|
+
letta_client/types/letta_batch_request.py,sha256=dkPRVNPpOK2iaPUecDoqPjT4BCSig7ti9jDwThngnGw,2000
|
|
415
|
+
letta_client/types/letta_batch_request_messages_item.py,sha256=8waZxciQ5o2z-OQ1eFRjttWdsudVdWeQNg6R2ACSeiE,243
|
|
410
416
|
letta_client/types/letta_image.py,sha256=yixSoRgIrBAx4rlYEdm0QjMD6wGUR4dAZcnYvoGGClY,1139
|
|
411
417
|
letta_client/types/letta_message_content_union.py,sha256=TgjxWQ-7UJ5n_VhxN29xoQ9u5Ru3eEEZ4vJCj4GepDo,541
|
|
412
|
-
letta_client/types/letta_message_union.py,sha256=
|
|
418
|
+
letta_client/types/letta_message_union.py,sha256=zsFTL177KggSE-t3HbgZp8mEjYfDOGhu-eq1smIIq5s,785
|
|
413
419
|
letta_client/types/letta_ping.py,sha256=NN8Md0w6A_R5kmFllvH8DgFFrCW7wdJiB5vqyj8vP0Q,781
|
|
414
|
-
letta_client/types/letta_request.py,sha256=
|
|
420
|
+
letta_client/types/letta_request.py,sha256=mPwcdsa_QtDkoDk3cspY870DQKZL6hKHPezYBc0EhLM,1870
|
|
415
421
|
letta_client/types/letta_request_config.py,sha256=7Jxvs4Vja2GguDvESB5YxbpOCHBpJNP0LZ4u8ErMQLU,1347
|
|
422
|
+
letta_client/types/letta_request_messages_item.py,sha256=nZdjVqfS6X6STADIqgRPqn6tL_RIBxTZU7PDaQdhNU0,238
|
|
416
423
|
letta_client/types/letta_response.py,sha256=XsdGEunygyUZc-jegfZ0dqmERToeFQShvJY5JNmGTHM,1396
|
|
417
424
|
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=VGnQ-6FJAV0c4UGs-FgKoHPjwdpt83qN10W1aiUJ1Ts,9129
|
|
418
425
|
letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py,sha256=ZXsdcfac2W9-vcdCAmdCT6YX1n59LKTbdNHfWkykGm8,406
|
|
419
|
-
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=
|
|
420
|
-
letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=
|
|
426
|
+
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=vjLR2zQtZl__7v6WNY-NtaxF2UBqiTiorO-Gw6B9rbc,847
|
|
427
|
+
letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=XffiSNyiPc5CGIIlltczTgeLUY1QDHx3SyZsfwvfNy8,3007
|
|
421
428
|
letta_client/types/letta_schemas_agent_file_message_schema_content.py,sha256=7Co1Px87C9iREMZ3882Pt2NJCufjU5bOp0JgDnf46DQ,248
|
|
422
|
-
letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=
|
|
429
|
+
letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=nqDj-w95igSNiRyYe7X62lvnNfFJb9laL4RyUhTU850,3150
|
|
423
430
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema.py,sha256=lfuVF1g3x3MtgW6Ed1glJJ0OBRZtMuuYPDbt6sm7hFc,2230
|
|
424
431
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_agent_schema_tool_rules_item.py,sha256=emnqbk3YjJpbdObglJCYuiLLnR-p657UmDEbZygDxv8,523
|
|
425
432
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_message_schema.py,sha256=RPwPiGzs8TU1JwkQIRm1wFHLt8a5KU4WFFvuDvh_NII,1037
|
|
426
433
|
letta_client/types/letta_serialize_schemas_pydantic_agent_schema_tool_schema.py,sha256=qBuwEw6yao9zihtGIdruSG6SFiVYDwyzumW8V4YJJmc,1163
|
|
427
434
|
letta_client/types/letta_stop_reason.py,sha256=jYkXBnAKsdPS8tmdv_xumyVVQk9OoHKFypAgNZejCyo,932
|
|
428
|
-
letta_client/types/letta_streaming_request.py,sha256=
|
|
435
|
+
letta_client/types/letta_streaming_request.py,sha256=cNs5JlBn7OJWbQK3cwIuRSfBo1gaTBbDL_O8JJHoTD4,2422
|
|
436
|
+
letta_client/types/letta_streaming_request_messages_item.py,sha256=1uUqT_cli1mJBgYh0aR_WOsHt-EgMTbikpgkYOJaJG4,247
|
|
429
437
|
letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
|
|
430
438
|
letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
|
|
431
439
|
letta_client/types/llm_config.py,sha256=-fyzSmnQpkQ1vqqQOSyuIvMDfgSMMdrDtj-0Tbsw42I,3989
|
|
@@ -445,11 +453,11 @@ letta_client/types/mcp_tool_health.py,sha256=ToG3Ut-9nvPkdFNL4gzu1LMv4bNmD7yFZ-b
|
|
|
445
453
|
letta_client/types/memory.py,sha256=VduNAXj6OQ9lbPKcC5mLUZmnM2yUCiWLTISbvcfs93U,1257
|
|
446
454
|
letta_client/types/message.py,sha256=ElThmDE3A1b8akYUCsIzOSW8T1ZJ_DvdZ5u5WENZpBQ,4779
|
|
447
455
|
letta_client/types/message_content_item.py,sha256=mu9j_dp-XAHQjbE0bv5wxMH3fTRW_dCtiIzbhdCMauw,630
|
|
448
|
-
letta_client/types/message_create.py,sha256=
|
|
456
|
+
letta_client/types/message_create.py,sha256=OCmj0ZZLk2v48I4w3vZOXAmt7tySBG6U0iYZv4vsXEo,1739
|
|
449
457
|
letta_client/types/message_create_content.py,sha256=pKppl-N8IdqR-ShWCZ0HN-3b13plPE2vSi6YcRM3w8o,227
|
|
450
458
|
letta_client/types/message_create_role.py,sha256=PWbew2WtK-36P4d3Nuvq4QNLDAPntsGpasS_WzivyXg,172
|
|
451
|
-
letta_client/types/message_role.py,sha256=
|
|
452
|
-
letta_client/types/message_type.py,sha256=
|
|
459
|
+
letta_client/types/message_role.py,sha256=Y9DhyB9tRNvRQvq2dvjrBzqDmM8SoWcK0mLpRUCCxmc,198
|
|
460
|
+
letta_client/types/message_type.py,sha256=QWldT6K922wmITVKdSbdIeGWZ6V-W5O2TdAsuRTHaBo,430
|
|
453
461
|
letta_client/types/modal_sandbox_config.py,sha256=QBGbV1563_tr6Fep0uBy1oboERRQC-pl4mfZmyueIgc,1138
|
|
454
462
|
letta_client/types/modal_sandbox_config_language.py,sha256=RHJmtMZwO-kcYqHIWFel0R2LwKZbAw19V-bhEUguDI0,174
|
|
455
463
|
letta_client/types/not_found_error_body.py,sha256=yE3-m6hzUyibPfMU09MqPOfairn7WtqdrqRpybnfsxk,566
|
|
@@ -471,7 +479,7 @@ letta_client/types/paginated_agent_files.py,sha256=olgJMJ_MxsIstpqMino2oIto9a15A
|
|
|
471
479
|
letta_client/types/parameter_properties.py,sha256=bDVR3EsnqLvKidHyYpDYJnD66p5jueA-5_v_Ckc1apo,610
|
|
472
480
|
letta_client/types/parameters_schema.py,sha256=GVeAO7gTpvMsOWoIELwbC2M-j8k11hpsxxJz_yx36kg,749
|
|
473
481
|
letta_client/types/parent_tool_rule.py,sha256=UKTLrRUeNI8TwTmwUsvBurbpLZKsoqF-7ZIOag_OiZM,1134
|
|
474
|
-
letta_client/types/passage.py,sha256=
|
|
482
|
+
letta_client/types/passage.py,sha256=dgVQ3S8Knf8u9Pj2pteird2J3DsiDgm3sj8Y2bQI0AA,3319
|
|
475
483
|
letta_client/types/payment_required_error_body.py,sha256=ODQ2fA8EF1Y_pfZocseOg1Ryyj9WfgjS5QeSC7WTIbc,590
|
|
476
484
|
letta_client/types/pip_requirement.py,sha256=A9mFgoz-yAlVHsy8vljtYdtJInfN7qL1JePPaPuTr2Y,774
|
|
477
485
|
letta_client/types/provider.py,sha256=hUTNL8HIolqPtKwPdSxjElEhENIYh05nB12ma9pcZ1g,1890
|
|
@@ -483,6 +491,7 @@ letta_client/types/reasoning_message.py,sha256=-eZpuDwFkRjNcfrebI3u_7HIP62sxXnZl
|
|
|
483
491
|
letta_client/types/reasoning_message_source.py,sha256=GYOWGm2mje1yYbR8E2kbAeQS--VDrGlpsobEBQHE2cU,186
|
|
484
492
|
letta_client/types/redacted_reasoning_content.py,sha256=d3L2OoswodrCBaeCsP9VSDd7VUmVFEMN9ORPCUGsz6c,736
|
|
485
493
|
letta_client/types/required_before_exit_tool_rule.py,sha256=QAoqKyCXkGyIRuHeIE3WW86XQYAn1U6_5QMcUiCCrZY,1058
|
|
494
|
+
letta_client/types/requires_approval_tool_rule.py,sha256=kygEgrWtbtOFcFnBrjP10ZINyICukh4bwK_tPFTae9A,1117
|
|
486
495
|
letta_client/types/response_format_json_object.py,sha256=84tj2_clAPEqC4vrFJoGlh1EqodNMiLckPeXGKPWnww,612
|
|
487
496
|
letta_client/types/response_format_json_schema.py,sha256=Yxz8QL1_s7vIAuzap82IPfylT0cTrR3BLrpp7Wn8VVc,676
|
|
488
497
|
letta_client/types/response_format_text.py,sha256=q9U4VDi57FPpqCVVPk-_21e0fbIohBPLDqWR-tAV2ls,592
|
|
@@ -511,7 +520,7 @@ letta_client/types/step.py,sha256=r0RWvPiLUDstHKakLjMFC6SajsMNisPhiBuo32F48U4,41
|
|
|
511
520
|
letta_client/types/step_feedback.py,sha256=JXUkclvJ6C-6ZTgd2lteOxqEyO5KRDNQ8ronBPYMdbo,160
|
|
512
521
|
letta_client/types/step_metrics.py,sha256=yR_CQL3rH7S9p5NUUzIUwUVfUxtzR99s5eSsKV3TOzg,1870
|
|
513
522
|
letta_client/types/step_status.py,sha256=OruAXMfFrCL0Bgoj7Wfjr8400ok5jcV4busa9NV-KIw,179
|
|
514
|
-
letta_client/types/stop_reason_type.py,sha256
|
|
523
|
+
letta_client/types/stop_reason_type.py,sha256=2vBs9hBbDlJL736KIwyocEqcaa8Tyy1c-L10wwOz1jc,370
|
|
515
524
|
letta_client/types/streamable_http_server_config.py,sha256=GNbt2KO9VepHUtiMoK6htJLpFHcGoFJaoH1Az6zkt-Q,1776
|
|
516
525
|
letta_client/types/supervisor_manager.py,sha256=tq3WDIxiyJJe4zf1Pf7UkMqTXcMF7NETLgFr-DCTNIc,677
|
|
517
526
|
letta_client/types/supervisor_manager_update.py,sha256=srC_cYti3h_DdWRmcrLMgWnMS07Rpwo_U0tjCD19cb0,712
|
|
@@ -520,14 +529,14 @@ letta_client/types/tag_schema.py,sha256=TtqUHpKMxiMD-k-4vQgCOxiwzKRFBjEGhaq8cd0h
|
|
|
520
529
|
letta_client/types/terminal_tool_rule.py,sha256=WgJQdVd6sTGqcWBDL3Dow09CsjohhM96gO6m3bv6p6A,1032
|
|
521
530
|
letta_client/types/text_content.py,sha256=ivADxvqhZUBBr8XGv3ODB1Ll8GYdQ74c0wlIp31xQHk,671
|
|
522
531
|
letta_client/types/text_response_format.py,sha256=MQ2iTTuJCzvk9qc4BEp6j9JvdZ_c7kiO_CnIqe6r_GU,655
|
|
523
|
-
letta_client/types/tool.py,sha256=
|
|
532
|
+
letta_client/types/tool.py,sha256=9ReKkcZEXTsKYjGb4G3pAL9gBzo35KA90V94ErKPyEQ,3448
|
|
524
533
|
letta_client/types/tool_annotations.py,sha256=gOUNd0gxzHvSz57G5c8gxK45VTxzk2yoB1PBfJoQlvU,1505
|
|
525
534
|
letta_client/types/tool_call.py,sha256=nIC6Tew85oekAwM7TWuD1nh-wMMSbwnHkDRIPh9znDk,595
|
|
526
535
|
letta_client/types/tool_call_content.py,sha256=ahSG2qf-hy3kM0L0OC5Yz9Xco_2B5fnPA6Wrb1FD9hw,996
|
|
527
536
|
letta_client/types/tool_call_delta.py,sha256=BDXIgt8R_kNy6A2j-O5e-6LUD1CoRVQ78xZpdfy9G_I,672
|
|
528
537
|
letta_client/types/tool_call_message.py,sha256=9WzXDFsusL2lDt9LFmeXcBhCfHliiMc6gUAtglTKUQ8,1440
|
|
529
538
|
letta_client/types/tool_call_message_tool_call.py,sha256=d9RPFSB8CXdANdNi7EoHYvRYpK-ETkTUSI5EWm71UlQ,220
|
|
530
|
-
letta_client/types/tool_create.py,sha256=
|
|
539
|
+
letta_client/types/tool_create.py,sha256=u_WTFafiHtCzXSAoEcket5qdhTl3yAw8nWnuLVuBrwY,2123
|
|
531
540
|
letta_client/types/tool_env_var_schema.py,sha256=0LXRU-zRlBvMq9OZBnRHeZZvre3U3u3OF0zlBfgEXTo,661
|
|
532
541
|
letta_client/types/tool_json_schema.py,sha256=HFQvRiMLY1wWtAnnxgWA0hLKntgfPr-JLUdHoeKarj0,755
|
|
533
542
|
letta_client/types/tool_return.py,sha256=P0hvUOPtIYs0y6yzDRPtY86JOZn-W75Hi4efUyc7CDI,985
|
|
@@ -566,6 +575,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
566
575
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
567
576
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
568
577
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
569
|
-
letta_client-0.1.
|
|
570
|
-
letta_client-0.1.
|
|
571
|
-
letta_client-0.1.
|
|
578
|
+
letta_client-0.1.299.dist-info/METADATA,sha256=FpvsprYUmSx00nW1pHriM62qUWOi9YLfC_hyQNMtMg0,5782
|
|
579
|
+
letta_client-0.1.299.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
580
|
+
letta_client-0.1.299.dist-info/RECORD,,
|
|
File without changes
|