letta-client 1.0.0a3__py3-none-any.whl → 1.0.0a5__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 +10 -0
- letta_client/agents/blocks/client.py +28 -14
- letta_client/agents/blocks/raw_client.py +14 -0
- letta_client/agents/client.py +36 -8
- letta_client/agents/context/client.py +4 -2
- letta_client/agents/context/raw_client.py +2 -0
- letta_client/agents/core_memory/client.py +4 -2
- letta_client/agents/core_memory/raw_client.py +2 -0
- letta_client/agents/files/client.py +24 -12
- letta_client/agents/files/raw_client.py +12 -0
- letta_client/agents/folders/client.py +20 -10
- letta_client/agents/folders/raw_client.py +10 -0
- letta_client/agents/groups/client.py +4 -2
- letta_client/agents/groups/raw_client.py +2 -0
- letta_client/agents/messages/client.py +40 -20
- letta_client/agents/messages/raw_client.py +20 -0
- letta_client/agents/passages/client.py +16 -8
- letta_client/agents/passages/raw_client.py +8 -0
- letta_client/agents/raw_client.py +28 -0
- letta_client/agents/sources/client.py +20 -10
- letta_client/agents/sources/raw_client.py +10 -0
- letta_client/agents/tools/client.py +24 -12
- letta_client/agents/tools/raw_client.py +12 -0
- letta_client/archives/client.py +4 -2
- letta_client/archives/raw_client.py +2 -0
- letta_client/blocks/agents/client.py +4 -2
- letta_client/blocks/agents/raw_client.py +2 -0
- letta_client/blocks/client.py +12 -6
- letta_client/blocks/raw_client.py +6 -0
- letta_client/core/client_wrapper.py +2 -2
- letta_client/groups/client.py +12 -6
- letta_client/groups/messages/client.py +24 -12
- letta_client/groups/messages/raw_client.py +12 -0
- letta_client/groups/raw_client.py +6 -0
- letta_client/identities/agents/client.py +4 -2
- letta_client/identities/agents/raw_client.py +2 -0
- letta_client/identities/blocks/client.py +4 -2
- letta_client/identities/blocks/raw_client.py +2 -0
- letta_client/identities/client.py +12 -6
- letta_client/identities/properties/client.py +4 -2
- letta_client/identities/properties/raw_client.py +2 -0
- letta_client/identities/raw_client.py +6 -0
- letta_client/jobs/client.py +12 -6
- letta_client/jobs/raw_client.py +6 -0
- letta_client/providers/client.py +16 -8
- letta_client/providers/raw_client.py +8 -0
- letta_client/sources/client.py +24 -12
- letta_client/sources/files/client.py +16 -8
- letta_client/sources/files/raw_client.py +8 -0
- letta_client/sources/passages/client.py +4 -2
- letta_client/sources/passages/raw_client.py +2 -0
- letta_client/sources/raw_client.py +12 -0
- letta_client/steps/client.py +4 -2
- letta_client/steps/feedback/client.py +4 -2
- letta_client/steps/feedback/raw_client.py +2 -0
- letta_client/steps/messages/client.py +4 -2
- letta_client/steps/messages/raw_client.py +2 -0
- letta_client/steps/metrics/client.py +4 -2
- letta_client/steps/metrics/raw_client.py +2 -0
- letta_client/steps/raw_client.py +2 -0
- letta_client/steps/trace/client.py +4 -2
- letta_client/steps/trace/raw_client.py +2 -0
- letta_client/templates/__init__.py +8 -0
- letta_client/templates/types/__init__.py +16 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py +6 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_parallel_tool_calls.py +14 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_parallel_tool_calls_item.py +7 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item.py +6 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_enable_parallel_execution.py +15 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_enable_parallel_execution_item.py +7 -0
- letta_client/tools/client.py +42 -6
- letta_client/tools/raw_client.py +36 -0
- letta_client/types/__init__.py +2 -0
- letta_client/types/approval_request_message.py +6 -0
- letta_client/types/approval_request_message_tool_calls.py +8 -0
- letta_client/types/internal_template_agent_create.py +5 -0
- letta_client/types/letta_schemas_agent_file_agent_schema.py +5 -0
- letta_client/types/letta_schemas_agent_file_tool_schema.py +5 -0
- letta_client/types/llm_config.py +5 -0
- letta_client/types/run_metrics.py +5 -0
- letta_client/types/tool.py +5 -0
- letta_client/types/tool_create.py +5 -0
- {letta_client-1.0.0a3.dist-info → letta_client-1.0.0a5.dist-info}/METADATA +1 -1
- {letta_client-1.0.0a3.dist-info → letta_client-1.0.0a5.dist-info}/RECORD +85 -80
- {letta_client-1.0.0a3.dist-info → letta_client-1.0.0a5.dist-info}/WHEEL +0 -0
letta_client/types/__init__.py
CHANGED
|
@@ -15,6 +15,7 @@ from .approval_create import ApprovalCreate
|
|
|
15
15
|
from .approval_create_approvals_item import ApprovalCreateApprovalsItem
|
|
16
16
|
from .approval_request_message import ApprovalRequestMessage
|
|
17
17
|
from .approval_request_message_tool_call import ApprovalRequestMessageToolCall
|
|
18
|
+
from .approval_request_message_tool_calls import ApprovalRequestMessageToolCalls
|
|
18
19
|
from .approval_response_message import ApprovalResponseMessage
|
|
19
20
|
from .approval_response_message_approvals_item import ApprovalResponseMessageApprovalsItem
|
|
20
21
|
from .approval_return import ApprovalReturn
|
|
@@ -329,6 +330,7 @@ __all__ = [
|
|
|
329
330
|
"ApprovalCreateApprovalsItem",
|
|
330
331
|
"ApprovalRequestMessage",
|
|
331
332
|
"ApprovalRequestMessageToolCall",
|
|
333
|
+
"ApprovalRequestMessageToolCalls",
|
|
332
334
|
"ApprovalResponseMessage",
|
|
333
335
|
"ApprovalResponseMessageApprovalsItem",
|
|
334
336
|
"ApprovalReturn",
|
|
@@ -7,6 +7,7 @@ import pydantic
|
|
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
8
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
9
9
|
from .approval_request_message_tool_call import ApprovalRequestMessageToolCall
|
|
10
|
+
from .approval_request_message_tool_calls import ApprovalRequestMessageToolCalls
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
class ApprovalRequestMessage(UncheckedBaseModel):
|
|
@@ -35,6 +36,11 @@ class ApprovalRequestMessage(UncheckedBaseModel):
|
|
|
35
36
|
The tool call that has been requested by the llm to run
|
|
36
37
|
"""
|
|
37
38
|
|
|
39
|
+
tool_calls: typing.Optional[ApprovalRequestMessageToolCalls] = pydantic.Field(default=None)
|
|
40
|
+
"""
|
|
41
|
+
The tool calls that have been requested by the llm to run, which are pending approval
|
|
42
|
+
"""
|
|
43
|
+
|
|
38
44
|
if IS_PYDANTIC_V2:
|
|
39
45
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
40
46
|
else:
|
|
@@ -241,6 +241,11 @@ class InternalTemplateAgentCreate(UncheckedBaseModel):
|
|
|
241
241
|
If set to True, the agent will be hidden.
|
|
242
242
|
"""
|
|
243
243
|
|
|
244
|
+
parallel_tool_calls: typing.Optional[bool] = pydantic.Field(default=None)
|
|
245
|
+
"""
|
|
246
|
+
If set to True, enables parallel tool calling. Defaults to False.
|
|
247
|
+
"""
|
|
248
|
+
|
|
244
249
|
deployment_id: str = pydantic.Field()
|
|
245
250
|
"""
|
|
246
251
|
The id of the deployment.
|
|
@@ -245,6 +245,11 @@ class LettaSchemasAgentFileAgentSchema(UncheckedBaseModel):
|
|
|
245
245
|
If set to True, the agent will be hidden.
|
|
246
246
|
"""
|
|
247
247
|
|
|
248
|
+
parallel_tool_calls: typing.Optional[bool] = pydantic.Field(default=None)
|
|
249
|
+
"""
|
|
250
|
+
If set to True, enables parallel tool calling. Defaults to False.
|
|
251
|
+
"""
|
|
252
|
+
|
|
248
253
|
id: str = pydantic.Field()
|
|
249
254
|
"""
|
|
250
255
|
Human-readable identifier for this agent in the file
|
|
@@ -82,6 +82,11 @@ class LettaSchemasAgentFileToolSchema(UncheckedBaseModel):
|
|
|
82
82
|
Default value for whether or not executing this tool requires approval.
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
|
+
enable_parallel_execution: typing.Optional[bool] = pydantic.Field(default=None)
|
|
86
|
+
"""
|
|
87
|
+
If set to True, then this tool will potentially be executed concurrently with other tools. Default False.
|
|
88
|
+
"""
|
|
89
|
+
|
|
85
90
|
created_by_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
86
91
|
"""
|
|
87
92
|
The id of the user that made this Tool.
|
letta_client/types/llm_config.py
CHANGED
|
@@ -112,6 +112,11 @@ class LlmConfig(UncheckedBaseModel):
|
|
|
112
112
|
The cost tier for the model (cloud only).
|
|
113
113
|
"""
|
|
114
114
|
|
|
115
|
+
parallel_tool_calls: typing.Optional[bool] = pydantic.Field(default=None)
|
|
116
|
+
"""
|
|
117
|
+
If set to True, enables parallel tool calling. Defaults to False.
|
|
118
|
+
"""
|
|
119
|
+
|
|
115
120
|
if IS_PYDANTIC_V2:
|
|
116
121
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
117
122
|
else:
|
|
@@ -38,6 +38,11 @@ class RunMetrics(UncheckedBaseModel):
|
|
|
38
38
|
The number of steps in the run.
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
+
tools_used: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
|
|
42
|
+
"""
|
|
43
|
+
List of tool IDs that were used in this run.
|
|
44
|
+
"""
|
|
45
|
+
|
|
41
46
|
template_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
42
47
|
"""
|
|
43
48
|
The template ID that the run belongs to (cloud only).
|
letta_client/types/tool.py
CHANGED
|
@@ -89,6 +89,11 @@ class Tool(UncheckedBaseModel):
|
|
|
89
89
|
Default value for whether or not executing this tool requires approval.
|
|
90
90
|
"""
|
|
91
91
|
|
|
92
|
+
enable_parallel_execution: typing.Optional[bool] = pydantic.Field(default=None)
|
|
93
|
+
"""
|
|
94
|
+
If set to True, then this tool will potentially be executed concurrently with other tools. Default False.
|
|
95
|
+
"""
|
|
96
|
+
|
|
92
97
|
created_by_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
93
98
|
"""
|
|
94
99
|
The id of the user that made this Tool.
|
|
@@ -60,6 +60,11 @@ class ToolCreate(UncheckedBaseModel):
|
|
|
60
60
|
Whether or not to require approval before executing this tool.
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
|
+
enable_parallel_execution: typing.Optional[bool] = pydantic.Field(default=None)
|
|
64
|
+
"""
|
|
65
|
+
If set to True, then this tool will potentially be executed concurrently with other tools. Default False.
|
|
66
|
+
"""
|
|
67
|
+
|
|
63
68
|
if IS_PYDANTIC_V2:
|
|
64
69
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
65
70
|
else:
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=22WzHKZOzyvJEKFzGnbhDg9_ioaFd103_SV5FlPbTWo,107396
|
|
2
2
|
letta_client/agents/__init__.py,sha256=aBcwQRv3HIiBGChEflelTCn_K9cvlJNVClHeKJCLAlg,2594
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=3VcniAvQZQ45JIyJRnYZPhNPH8aI_ORratv2Xx6ThLo,165
|
|
4
|
-
letta_client/agents/blocks/client.py,sha256
|
|
5
|
-
letta_client/agents/blocks/raw_client.py,sha256=
|
|
4
|
+
letta_client/agents/blocks/client.py,sha256=62F7m0yMe79LZaVckPgOYUps-Gl_pk7r-ohnUL7ey58,19997
|
|
5
|
+
letta_client/agents/blocks/raw_client.py,sha256=qu0ce5h4A26UeCur50u0B0Br9kqVFtJZvXOiajA3CpU,29146
|
|
6
6
|
letta_client/agents/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
|
|
7
7
|
letta_client/agents/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
|
|
8
|
-
letta_client/agents/client.py,sha256=
|
|
8
|
+
letta_client/agents/client.py,sha256=bRmkCEQnDGaRYId0XOYyTSkeSZShjtODRgba50EeA6I,72848
|
|
9
9
|
letta_client/agents/context/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
10
|
-
letta_client/agents/context/client.py,sha256=
|
|
11
|
-
letta_client/agents/context/raw_client.py,sha256=
|
|
10
|
+
letta_client/agents/context/client.py,sha256=IrZTFNQtzgYicztasyOCdL3XPJ6nyOfwTZz3-XNHSUo,3244
|
|
11
|
+
letta_client/agents/context/raw_client.py,sha256=sBJYYqA6ozLgdOnMhcCeaA0FA23rGfvrY5GrwrVzsjI,4871
|
|
12
12
|
letta_client/agents/core_memory/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
13
|
-
letta_client/agents/core_memory/client.py,sha256=
|
|
14
|
-
letta_client/agents/core_memory/raw_client.py,sha256=
|
|
13
|
+
letta_client/agents/core_memory/client.py,sha256=ieD37TK6GYuTdMqZJR8FuXRKdGaNF9_Q9LW1gO_Gjnc,3374
|
|
14
|
+
letta_client/agents/core_memory/raw_client.py,sha256=6pTDrUU_I8G0aAlRTsFHizzOeGjKwoYGvTnuCTI81FQ,4945
|
|
15
15
|
letta_client/agents/files/__init__.py,sha256=jysJfXF3Ikqu3WL6ZRR0vQeBxM7TBF7bS9U6tV3vmSE,163
|
|
16
|
-
letta_client/agents/files/client.py,sha256=
|
|
17
|
-
letta_client/agents/files/raw_client.py,sha256=
|
|
16
|
+
letta_client/agents/files/client.py,sha256=jgAacbG05wls0xiggQRlkmBlh3yZDdBbpbhHDkOJKS8,14430
|
|
17
|
+
letta_client/agents/files/raw_client.py,sha256=GSDzCOpqA18mC7ghJWsn_n-bQiGqL_eA3ZlA_UlE1NQ,21673
|
|
18
18
|
letta_client/agents/files/types/__init__.py,sha256=jWh4M_19PGBGO2kiEk1azwzSXVsRtJWeXadsVmdljsM,182
|
|
19
19
|
letta_client/agents/files/types/files_list_request_order.py,sha256=lGC2-_e0vGbTiPuGAejItytBjXSsd2sVpvwqzLMaJqw,160
|
|
20
20
|
letta_client/agents/folders/__init__.py,sha256=ZXoEZB_Xc3xNfqAX6Sh3emzvDyXzEZWf54sPET3mzB8,167
|
|
21
|
-
letta_client/agents/folders/client.py,sha256=
|
|
22
|
-
letta_client/agents/folders/raw_client.py,sha256=
|
|
21
|
+
letta_client/agents/folders/client.py,sha256=E4rUXeW103i_ohoUasugJEkLd4LKfONcz4nqzCtMSjI,10380
|
|
22
|
+
letta_client/agents/folders/raw_client.py,sha256=kKHLw0xix9q_Q6HL6ziT7ynWNjWtX2TARXSJXAxQ8nQ,15409
|
|
23
23
|
letta_client/agents/folders/types/__init__.py,sha256=I8LsHI-yq-amHxFTZYfBE0c5PJzwqyYY0Aamv4zY7hs,188
|
|
24
24
|
letta_client/agents/folders/types/folders_list_request_order.py,sha256=8SHNoAOmo0kz_VGjc76u5LRXWfOaHRN5-hbXcF8rLw8,162
|
|
25
25
|
letta_client/agents/groups/__init__.py,sha256=jcMHd9VhQl1h6c8LZW3EUmDxLUF4fpmgzVMMkZGFtZo,165
|
|
26
|
-
letta_client/agents/groups/client.py,sha256=
|
|
27
|
-
letta_client/agents/groups/raw_client.py,sha256=
|
|
26
|
+
letta_client/agents/groups/client.py,sha256=egdy0ta6Z0Mu_SFypXcpVK4KiHImLABGAKWOuALQF0E,6078
|
|
27
|
+
letta_client/agents/groups/raw_client.py,sha256=tFqdLaqgYWVzbhOvj_GyCqBnoVQYwH3DpyCtDr1dK70,7497
|
|
28
28
|
letta_client/agents/groups/types/__init__.py,sha256=N4vNWD8WPi0Nz6ZK5G6ciL8d0KA0Jndb-Hh4c7kHWxM,185
|
|
29
29
|
letta_client/agents/groups/types/groups_list_request_order.py,sha256=SZ3Cto7U-t-7KkMq10sRf4qYIjyPsqwTVi3PIdorRj0,161
|
|
30
30
|
letta_client/agents/memory_variables/__init__.py,sha256=Xaqg0OCMuDp5WCtzrhHB9Q56VSJHijy3fI50nh7Fi1I,175
|
|
@@ -33,8 +33,8 @@ letta_client/agents/memory_variables/raw_client.py,sha256=lwWJQlKh4InQgrCH8iHPBw
|
|
|
33
33
|
letta_client/agents/memory_variables/types/__init__.py,sha256=r_Wc0Jjyp1_Y2qC_eWsabWx1sTwoxAaV1s24y8Ep_Zg,200
|
|
34
34
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=iAXAqp-J0fnyUK4MMa3PMrYwqQfbui3tiaWaWR9_O5M,600
|
|
35
35
|
letta_client/agents/messages/__init__.py,sha256=Okn3Cd1QQ7K3xUaMMqFp4eaMnJWNqGT8QPO_m-5rKTs,561
|
|
36
|
-
letta_client/agents/messages/client.py,sha256=
|
|
37
|
-
letta_client/agents/messages/raw_client.py,sha256=
|
|
36
|
+
letta_client/agents/messages/client.py,sha256=wJy2lJ_cAQLMW2wUoW6vs2zXvsz9KFacYFpFA4dmcdU,52079
|
|
37
|
+
letta_client/agents/messages/raw_client.py,sha256=27kFPf5l-r6pzw3TBeMjvlRWhnmBfyGHHJPpDWfLTGA,72188
|
|
38
38
|
letta_client/agents/messages/types/__init__.py,sha256=qsm5NhteT7WqAgm_yFKCBI6jL5ES7ksj0K4SH4tb1tk,790
|
|
39
39
|
letta_client/agents/messages/types/letta_async_request_messages_item.py,sha256=ENCLYOoBskZ23fPYAc5UKEa2CH9_k8UWWp-l-92PFIE,261
|
|
40
40
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=iFM3SiYzMLSTzyZpxKZ0kUQdl3CcuVtiQZ5FzCCagQw,1098
|
|
@@ -44,19 +44,19 @@ letta_client/agents/messages/types/messages_modify_request.py,sha256=0NT3pgbqQIt
|
|
|
44
44
|
letta_client/agents/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
|
|
45
45
|
letta_client/agents/messages/types/messages_preview_request.py,sha256=eT0Rj6cbkvwg0cGJYQ8NRSOKOhiQQ3nrOo6mPYFMZ3o,273
|
|
46
46
|
letta_client/agents/passages/__init__.py,sha256=wA0bocGcbmgb62sL9MEWpKzP_KBVv8KHhvc6vZH6MOE,187
|
|
47
|
-
letta_client/agents/passages/client.py,sha256=
|
|
48
|
-
letta_client/agents/passages/raw_client.py,sha256=
|
|
47
|
+
letta_client/agents/passages/client.py,sha256=nFrrQXk0iKyzj1jsTziAoUNemBQ3in5HJmkG-1Y3KEI,19108
|
|
48
|
+
letta_client/agents/passages/raw_client.py,sha256=v2KmKPfHPWCVTTxoS0twP0ALQRxAZ2y6fO7xC-C39Yc,27031
|
|
49
49
|
letta_client/agents/passages/types/__init__.py,sha256=zA5psnkblMdGa_kOTKkqZmMPtryV1uGScnWFeI9fuu4,220
|
|
50
50
|
letta_client/agents/passages/types/passages_search_request_tag_match_mode.py,sha256=cgAkixKi6VCJGFHUtjEzYdgq9KJcn5nrEMbR3zKp2rE,171
|
|
51
|
-
letta_client/agents/raw_client.py,sha256=
|
|
51
|
+
letta_client/agents/raw_client.py,sha256=Lp_khY2GPYyUmPQNfANNlqQ0vB7ATmCTVRimwFR7mNo,92009
|
|
52
52
|
letta_client/agents/sources/__init__.py,sha256=Jht9nKdcCU1xA9z6x-NcmlzgTOKdNAv5680ybkLABxI,167
|
|
53
|
-
letta_client/agents/sources/client.py,sha256=
|
|
54
|
-
letta_client/agents/sources/raw_client.py,sha256
|
|
53
|
+
letta_client/agents/sources/client.py,sha256=JYQeUmWw6Pwe1cScAzxGp5qE-ormDRDxmuPVRaUol64,10380
|
|
54
|
+
letta_client/agents/sources/raw_client.py,sha256=-4ySOdczsLqTk-afNi_wMnWSM5n-ut39QCCEvRV4ev0,15409
|
|
55
55
|
letta_client/agents/sources/types/__init__.py,sha256=vAVBpXrEONCMVqwYliZJg4bmYc9CkMpiW_n7PNN3sng,188
|
|
56
56
|
letta_client/agents/sources/types/sources_list_request_order.py,sha256=7l7JtBILWHVR3c0AgWiz81OfHFmoFrYVzWEE4Nl0vHA,162
|
|
57
57
|
letta_client/agents/tools/__init__.py,sha256=_6TieIBRwM0gpK_ewJklXsnezKK-Du196qg-iBS_ZPw,163
|
|
58
|
-
letta_client/agents/tools/client.py,sha256=
|
|
59
|
-
letta_client/agents/tools/raw_client.py,sha256=
|
|
58
|
+
letta_client/agents/tools/client.py,sha256=pe8aDq8j_YzNJgkdfx5mnic1Tk_qtmADpV5DuPORVJY,12772
|
|
59
|
+
letta_client/agents/tools/raw_client.py,sha256=Hk6_dDRB9U4OEJLYs7BDxwDeBd4xcZd5wxZN2Zn2qhw,19622
|
|
60
60
|
letta_client/agents/tools/types/__init__.py,sha256=fkng1vVTlcCIQGRS-NSNewm_Zh5rYQAKP2AgzhK08vo,182
|
|
61
61
|
letta_client/agents/tools/types/tools_list_request_order.py,sha256=Gi0MwZ1KN1X3--U7NDEMQOQu1xvfJMdGIbCj5M0w8KM,160
|
|
62
62
|
letta_client/agents/types/__init__.py,sha256=j3YDdgUE9-RqVyfl0ASjjPt2-snf0NJcmmToQ08hJJw,1820
|
|
@@ -76,8 +76,8 @@ letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=CUKSYO0
|
|
|
76
76
|
letta_client/agents/types/update_agent_response_format.py,sha256=31HEHo0H99dzGPi4m3U0LAoGpWrzjEx_t4b72kVhBYI,403
|
|
77
77
|
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=H9sgZurQhGAIUvuFNNrcKldyDKCtGtHc9KyiOZugvxM,898
|
|
78
78
|
letta_client/archives/__init__.py,sha256=oeLlmsfR-BeN3sZWzzBDkVNqMHnHHZ-7NMCTds0TAss,169
|
|
79
|
-
letta_client/archives/client.py,sha256=
|
|
80
|
-
letta_client/archives/raw_client.py,sha256=
|
|
79
|
+
letta_client/archives/client.py,sha256=1Z6ODYAd6SYpM_14IwbZGe_4RVowJovCW7ZSmn0xkv0,10550
|
|
80
|
+
letta_client/archives/raw_client.py,sha256=ee1TSG30y6LwQVGKbGWBMl1oSjnfgsS6QOssL1yronk,16345
|
|
81
81
|
letta_client/archives/types/__init__.py,sha256=WLDqXavj_8_DZfDCMN9d1VMCcBN1CEnTvrlGYoyKoq0,191
|
|
82
82
|
letta_client/archives/types/list_archives_request_order.py,sha256=wXt2nvtNvH_3eAoJr4Lmm9m1MjmhqFwPMjFxshJnWvs,163
|
|
83
83
|
letta_client/base_client.py,sha256=ObhLDhwPN3AhT5H9-rl9KXKgE-NB59zosKBw_ViHhxs,10618
|
|
@@ -93,12 +93,12 @@ letta_client/batches/types/__init__.py,sha256=bMTHA9WpKwCe6XtmBvsAiN6HFSKkwsL_pY
|
|
|
93
93
|
letta_client/batches/types/batches_list_request_order.py,sha256=_59JtdasquLl5RNkiAFMBBU_7R_UhEZ1AIkvkb4dEeU,162
|
|
94
94
|
letta_client/blocks/__init__.py,sha256=Oid1cjfcmcvWYWmLSCU4TJUIBjjKeRhVuzUuTWr1oVY,265
|
|
95
95
|
letta_client/blocks/agents/__init__.py,sha256=_pRMp_tKKI9zNYSIedtCHO_CYWfHTtBj7kMoIS5dBt4,165
|
|
96
|
-
letta_client/blocks/agents/client.py,sha256=
|
|
97
|
-
letta_client/blocks/agents/raw_client.py,sha256=
|
|
96
|
+
letta_client/blocks/agents/client.py,sha256=gxvpHkZC4RPunQuH44Z1M8bO894T4eP2Vkw0jA9nUlY,6773
|
|
97
|
+
letta_client/blocks/agents/raw_client.py,sha256=axKL-T1BDOYjCfcVrf3CLcpihj0PTllYaCqxi_JI-u8,8298
|
|
98
98
|
letta_client/blocks/agents/types/__init__.py,sha256=Gs1UvTjWA7QHw4PcXtvu62Yxi_GRQ0oZV4Zphhdmgzg,185
|
|
99
99
|
letta_client/blocks/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
|
|
100
|
-
letta_client/blocks/client.py,sha256=
|
|
101
|
-
letta_client/blocks/raw_client.py,sha256=
|
|
100
|
+
letta_client/blocks/client.py,sha256=53TIip-LvolzQzE7SZ9VujMj5qgpv8TW4fPDBCWGr9c,30754
|
|
101
|
+
letta_client/blocks/raw_client.py,sha256=tUo5fDcda72ZwWECjNevdXkNC6laKBAi1JepAtFAuXk,42071
|
|
102
102
|
letta_client/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
|
|
103
103
|
letta_client/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
|
|
104
104
|
letta_client/chat/__init__.py,sha256=Z_WCHvVZhLkIJsld1fmWagOH5yyO6w2NjY7XJAhMdPk,243
|
|
@@ -125,7 +125,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
125
125
|
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
|
|
126
126
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
127
127
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
128
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
128
|
+
letta_client/core/client_wrapper.py,sha256=aCd7KPB15-yBhBIUUPEkOcGavFgntTeStOI8bHQk_2s,2776
|
|
129
129
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
130
130
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
131
131
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -168,16 +168,16 @@ letta_client/folders/raw_client.py,sha256=1z-a9rTl_SOcsx_mcFqCWg0GpfYpxJFBK3Yh0G
|
|
|
168
168
|
letta_client/folders/types/__init__.py,sha256=I8LsHI-yq-amHxFTZYfBE0c5PJzwqyYY0Aamv4zY7hs,188
|
|
169
169
|
letta_client/folders/types/folders_list_request_order.py,sha256=8SHNoAOmo0kz_VGjc76u5LRXWfOaHRN5-hbXcF8rLw8,162
|
|
170
170
|
letta_client/groups/__init__.py,sha256=scpn-EiUn86aIxK5F-UcejiNRXrP9tg_sk4vHK-jjk8,566
|
|
171
|
-
letta_client/groups/client.py,sha256=
|
|
171
|
+
letta_client/groups/client.py,sha256=rcpB787EiT0uxUOQ-g4gWN7Wg-cdgssh10wJwSZTRqw,19487
|
|
172
172
|
letta_client/groups/messages/__init__.py,sha256=_fFgOv3dsynVaf4TxZlryMVmd9Ir3I8ZWahuTr1FZak,317
|
|
173
|
-
letta_client/groups/messages/client.py,sha256=
|
|
174
|
-
letta_client/groups/messages/raw_client.py,sha256=
|
|
173
|
+
letta_client/groups/messages/client.py,sha256=FuwIABWIubiKrDa-b92FftYbzFDaZFp3kTeeWvNiyYs,28910
|
|
174
|
+
letta_client/groups/messages/raw_client.py,sha256=pkyhf56vc8402jIIbFWBqP9NtXqSReb2wJwxNN6PqwQ,39865
|
|
175
175
|
letta_client/groups/messages/types/__init__.py,sha256=wziPv3om4xc_4zxLAm8V43Ck7k-LpvQO_lnP9FlY_4g,449
|
|
176
176
|
letta_client/groups/messages/types/letta_streaming_response.py,sha256=IFJSwCiedThHyMYhK4CqLV01HqS8JZ1KZDs4V13Yc0w,666
|
|
177
177
|
letta_client/groups/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
|
|
178
178
|
letta_client/groups/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
179
179
|
letta_client/groups/messages/types/messages_modify_response.py,sha256=0nbkp7q7iaM2esLkdmIe0CYpJWY6LYtR3V-WkKaAy-g,871
|
|
180
|
-
letta_client/groups/raw_client.py,sha256=
|
|
180
|
+
letta_client/groups/raw_client.py,sha256=zxL9wzEU7wMJmAYp_jCbb4iD8_tRy30m7EexzWqQ9Rs,31659
|
|
181
181
|
letta_client/groups/types/__init__.py,sha256=WsxmnXvtUMH18ElpF4GZnqIb3_-XfKwxIzczkQmrCy8,373
|
|
182
182
|
letta_client/groups/types/group_create_manager_config.py,sha256=AelsYFpwlqpI9VeRvW7WE_Y5OTBxv97psgCybDubD8c,514
|
|
183
183
|
letta_client/groups/types/group_update_manager_config.py,sha256=ZE9HGu_7M9Zc9qa0RhCuXlxxUcE90MYzXj97M7cpiEU,626
|
|
@@ -187,25 +187,25 @@ letta_client/health/client.py,sha256=xZcZYP-qtxGmC9dk_qCgrmkcQ2r49JWaMKScKniu938
|
|
|
187
187
|
letta_client/health/raw_client.py,sha256=0KVdq5wX1HxtTkQBU8Z8OKgYl2bcMjcUnVKuiX8dZJ0,3170
|
|
188
188
|
letta_client/identities/__init__.py,sha256=o8zuUE-R9XxGBOnWP8vftfNkki6mIsK_wzunrw8hDU8,413
|
|
189
189
|
letta_client/identities/agents/__init__.py,sha256=_pRMp_tKKI9zNYSIedtCHO_CYWfHTtBj7kMoIS5dBt4,165
|
|
190
|
-
letta_client/identities/agents/client.py,sha256
|
|
191
|
-
letta_client/identities/agents/raw_client.py,sha256=
|
|
190
|
+
letta_client/identities/agents/client.py,sha256=DphKsfASSYo5XTl1ornmQ_6XBIC4Us1X7xxt7-phHMQ,5763
|
|
191
|
+
letta_client/identities/agents/raw_client.py,sha256=MZZuOlhSGpO1mqXv-dK3T9vE3Dic9wo5asoajxUWzgA,7262
|
|
192
192
|
letta_client/identities/agents/types/__init__.py,sha256=Gs1UvTjWA7QHw4PcXtvu62Yxi_GRQ0oZV4Zphhdmgzg,185
|
|
193
193
|
letta_client/identities/agents/types/agents_list_request_order.py,sha256=9S8zaNW7IGqriSzxxogii5q-sJahOU49k1XWdgiNFDs,161
|
|
194
194
|
letta_client/identities/blocks/__init__.py,sha256=3VcniAvQZQ45JIyJRnYZPhNPH8aI_ORratv2Xx6ThLo,165
|
|
195
|
-
letta_client/identities/blocks/client.py,sha256=
|
|
196
|
-
letta_client/identities/blocks/raw_client.py,sha256=
|
|
195
|
+
letta_client/identities/blocks/client.py,sha256=QLQ2Dv-EWGUmwFumphOc0MomC1tTGnVkQqLEj0SNaGc,5732
|
|
196
|
+
letta_client/identities/blocks/raw_client.py,sha256=8xeZiJCN2IH28-IJiZVmeHsVdqvqjZ_knVqXqEDnMUM,7211
|
|
197
197
|
letta_client/identities/blocks/types/__init__.py,sha256=u-p7C0I1cMIyuRwPWCCUexIFRzXX74TV51xz5fGXpy0,185
|
|
198
198
|
letta_client/identities/blocks/types/blocks_list_request_order.py,sha256=X45_ajG9sylW5kXCRK5zE42JXPj5IcoKsJNGzFSNSj8,161
|
|
199
|
-
letta_client/identities/client.py,sha256=
|
|
199
|
+
letta_client/identities/client.py,sha256=B1prSHElxcvdqyvKtLknFUp91LTTRvipAu39xacQw8M,26306
|
|
200
200
|
letta_client/identities/properties/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
201
|
-
letta_client/identities/properties/client.py,sha256=
|
|
202
|
-
letta_client/identities/properties/raw_client.py,sha256=
|
|
203
|
-
letta_client/identities/raw_client.py,sha256=
|
|
201
|
+
letta_client/identities/properties/client.py,sha256=Ouu4q_OuhOXQ9m1JlSJQxceZJftV9yCyzT8n_Un4Uzc,4050
|
|
202
|
+
letta_client/identities/properties/raw_client.py,sha256=EGcwnQNqly98SXEXSpa6AGyAZOY_4VeP0rUDAaTg-GM,6100
|
|
203
|
+
letta_client/identities/raw_client.py,sha256=PavxNJaqyzzI54HPU0W-eIWtSI3Mc3TFYagMUN-3gcg,40327
|
|
204
204
|
letta_client/identities/types/__init__.py,sha256=OLxCqa6ln7CEVk6G6cSTAQSSZLetP_Dl7y9Z13dbLK4,197
|
|
205
205
|
letta_client/identities/types/identities_list_request_order.py,sha256=L-M-TlzyR_fftABQWrFe9cwPxqYGY8nRdyjNBmD7hzg,165
|
|
206
206
|
letta_client/jobs/__init__.py,sha256=Gntv7WIGiV5-97TPhcdQtabenrnWIcVjj0wPNN1HjqU,161
|
|
207
|
-
letta_client/jobs/client.py,sha256=
|
|
208
|
-
letta_client/jobs/raw_client.py,sha256=
|
|
207
|
+
letta_client/jobs/client.py,sha256=3qxuuRLyJ5qyEegLXVq5xmaeL4pOA3W67Ha5idrTvPQ,15911
|
|
208
|
+
letta_client/jobs/raw_client.py,sha256=On2KfE8vUYBqN_9H61YWkgMlgrGOW4VkuwR3M3JBnKI,24704
|
|
209
209
|
letta_client/jobs/types/__init__.py,sha256=b0mRE9cy5TmeDYCR0Q1lSFKMyeUQhUReQaFex2HTqv0,179
|
|
210
210
|
letta_client/jobs/types/jobs_list_request_order.py,sha256=coAZOr16GpkTT9HgoSoMDJ0BuNSKKyDpxAKZGkz6pRs,159
|
|
211
211
|
letta_client/models/__init__.py,sha256=3YEKEqykt6YNfoEtsfbgB0hEHD1HbgGjLpRq1ffdnHc,136
|
|
@@ -221,8 +221,8 @@ letta_client/projects/types/__init__.py,sha256=o_1s2iqf5SY1ojqTeewCt6c7sxrn6gzka
|
|
|
221
221
|
letta_client/projects/types/projects_list_response.py,sha256=WJ_LHfEujdpeFL6wM3RP1uYgsAAwFK03-rEwmr3UU1w,859
|
|
222
222
|
letta_client/projects/types/projects_list_response_projects_item.py,sha256=VyG_OR4KlZIA3mgd7FCFk1kSM7NxAi3MNBzAgDrUddo,606
|
|
223
223
|
letta_client/providers/__init__.py,sha256=1uFjKmB6xuKqbx76R6dp9oLaWAuyWV7LBpwUdKbvgm4,171
|
|
224
|
-
letta_client/providers/client.py,sha256=
|
|
225
|
-
letta_client/providers/raw_client.py,sha256=
|
|
224
|
+
letta_client/providers/client.py,sha256=B3VEtNAeNoo_9YldUZjIyLgmYWSQv0wB2HB63godz2E,24513
|
|
225
|
+
letta_client/providers/raw_client.py,sha256=pE2XJ-HVHIFCESIORWph1Zkb8GZ6kYZXoS_VVvFUfI0,38757
|
|
226
226
|
letta_client/providers/types/__init__.py,sha256=jVDiT7mqApU4Q2VZxWEhbljTDDdKn_0Irh_ewrsoEcA,194
|
|
227
227
|
letta_client/providers/types/providers_list_request_order.py,sha256=gKYmSfL5MoQ5bI3wHkN7Ax8SDN-Niyfk4yhOFwhmiqg,164
|
|
228
228
|
letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -246,32 +246,32 @@ letta_client/runs/usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUz
|
|
|
246
246
|
letta_client/runs/usage/client.py,sha256=pTs7XvHjETe7lbSWjgy1GdLzS03j9VWHrY3TULhlcVM,2919
|
|
247
247
|
letta_client/runs/usage/raw_client.py,sha256=cNOsh9fT6MifL9Nh7sEpuNo6LmU0C0AfRv-K2HWPLFo,4628
|
|
248
248
|
letta_client/sources/__init__.py,sha256=Y43-19f7EppL3LmM4hO5LtqT2CRaDJb0LAfnHurqYxU,148
|
|
249
|
-
letta_client/sources/client.py,sha256=
|
|
249
|
+
letta_client/sources/client.py,sha256=mlrtG6KNcHO8LFtijIO_Zy6LETccDWhR-lf2u_3IRzs,27131
|
|
250
250
|
letta_client/sources/files/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
251
|
-
letta_client/sources/files/client.py,sha256=
|
|
252
|
-
letta_client/sources/files/raw_client.py,sha256=
|
|
251
|
+
letta_client/sources/files/client.py,sha256=xKSOc20TD06lBhJVXpoRXU0I1cpUiyb5Wn8pgWNaXZ0,10886
|
|
252
|
+
letta_client/sources/files/raw_client.py,sha256=UYh2N4NCLlP6UxvWinX9Ae_ktqx17hydMnZMvY42N_8,15709
|
|
253
253
|
letta_client/sources/passages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
254
|
-
letta_client/sources/passages/client.py,sha256=
|
|
255
|
-
letta_client/sources/passages/raw_client.py,sha256=
|
|
256
|
-
letta_client/sources/raw_client.py,sha256=
|
|
254
|
+
letta_client/sources/passages/client.py,sha256=4W4cdYKhQlT9uuc-xKk3cRv4eD18gEudt01mCtO10CQ,4426
|
|
255
|
+
letta_client/sources/passages/raw_client.py,sha256=wlgHYnRlUrzMns5XTiqsBslo_Ev78jwijAbn5eTA5q8,6029
|
|
256
|
+
letta_client/sources/raw_client.py,sha256=2bb-uekrdSSqic9e_W-W8JxpnGUb5M03nC8wWu63nlQ,46838
|
|
257
257
|
letta_client/steps/__init__.py,sha256=iDRZI5Cb9sPQk_QqJwWaR9VR0VkMTqsCrqwep4gsyjI,474
|
|
258
|
-
letta_client/steps/client.py,sha256=
|
|
258
|
+
letta_client/steps/client.py,sha256=pCzzvNFx1QhyviLaOLZZGvPs6pHJC8oh6sMTclN4sW0,11839
|
|
259
259
|
letta_client/steps/feedback/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
260
|
-
letta_client/steps/feedback/client.py,sha256=
|
|
261
|
-
letta_client/steps/feedback/raw_client.py,sha256=
|
|
260
|
+
letta_client/steps/feedback/client.py,sha256=UBXeeRSISKd3c5Ta_6FYEbIzg52QOwoNqM_7H18Ixw8,4017
|
|
261
|
+
letta_client/steps/feedback/raw_client.py,sha256=Ss2JBTKHgvWtvopXi8XC6y6Jv7Ph_mcYxzVPhNMMQ1U,5930
|
|
262
262
|
letta_client/steps/messages/__init__.py,sha256=RvL9e3yglxUk-wD_wi2PcWUfxyy6ebyi2KcIU1ibwQo,223
|
|
263
|
-
letta_client/steps/messages/client.py,sha256=
|
|
264
|
-
letta_client/steps/messages/raw_client.py,sha256=
|
|
263
|
+
letta_client/steps/messages/client.py,sha256=Z8a6lwEVg6Xfy3H3FwDPsli-E1LLQdaVoIFr3OKtsHg,5797
|
|
264
|
+
letta_client/steps/messages/raw_client.py,sha256=Ft4mdVR90kBHGtdxuegllAAUkQFTgBJfPJfQTGdNbx0,7352
|
|
265
265
|
letta_client/steps/messages/types/__init__.py,sha256=R4r0HRa0-y21Dy_vG_7uW8fIPsw3W_UDBAopdmKZdLw,285
|
|
266
266
|
letta_client/steps/messages/types/messages_list_request_order.py,sha256=nHSEtZeZ-uQJ668U-p24AGw7MQzJXjaY7FVJh-RHUTo,163
|
|
267
267
|
letta_client/steps/messages/types/messages_list_response_item.py,sha256=DL918uJm503Y9alDOgzawDj-4QGm8VP17XmBKHnv-0w,873
|
|
268
268
|
letta_client/steps/metrics/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
269
|
-
letta_client/steps/metrics/client.py,sha256=
|
|
270
|
-
letta_client/steps/metrics/raw_client.py,sha256=
|
|
271
|
-
letta_client/steps/raw_client.py,sha256=
|
|
269
|
+
letta_client/steps/metrics/client.py,sha256=lLS-aNWcYeIGT-NREAeIhkn4yXLpCwkCq7RAezjIHtE,3099
|
|
270
|
+
letta_client/steps/metrics/raw_client.py,sha256=E93omcdOmBMm2gKvhSnUminXfnMJOSJy_jy3ke_GFZs,4718
|
|
271
|
+
letta_client/steps/raw_client.py,sha256=JiLZ1NMvTzlJ8_z8xPSFFr-bv2_yrBedT61XoMrTjFc,14113
|
|
272
272
|
letta_client/steps/trace/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
273
|
-
letta_client/steps/trace/client.py,sha256=
|
|
274
|
-
letta_client/steps/trace/raw_client.py,sha256=
|
|
273
|
+
letta_client/steps/trace/client.py,sha256=DnfE2R1JYZl0WITqARnvDaSxbH2CbJ-B7_VJN5Zh6II,3107
|
|
274
|
+
letta_client/steps/trace/raw_client.py,sha256=QxTYpT7i753k1ibVK8Nb90LOJoI1gvCnfGT1bH7ENNg,5057
|
|
275
275
|
letta_client/steps/types/__init__.py,sha256=SbehLSkyHG4A8ZHo8uJg7zPY8Nav-7Tjc-pPI9VAdm4,276
|
|
276
276
|
letta_client/steps/types/steps_list_request_feedback.py,sha256=Au1YSn3UYRc_b4yxUT6hFqru4iJ-SX-_Ndb3PwCYGp8,172
|
|
277
277
|
letta_client/steps/types/steps_list_request_order.py,sha256=9jYRk92NLRlFR6ZspHCUGXqZ3Z7Elc5L61QEwvRsNt8,160
|
|
@@ -283,13 +283,13 @@ letta_client/tags/types/tags_list_request_order.py,sha256=RljEzb45C7Fy48a8MfalsW
|
|
|
283
283
|
letta_client/telemetry/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
284
284
|
letta_client/telemetry/client.py,sha256=w2oL-0A2U_CW8TKxVWwtg2vbEJRJpGuVLsdbAAHDvBA,3266
|
|
285
285
|
letta_client/telemetry/raw_client.py,sha256=TmsC0K_3xSVANtQLtx8IRkmjk0x7YVopXI-uNG4pQek,5186
|
|
286
|
-
letta_client/templates/__init__.py,sha256=
|
|
286
|
+
letta_client/templates/__init__.py,sha256=wj2RktXBl-_t7LJ9rzB0bXYmo9sEe64GyzCwBa8MsGk,85040
|
|
287
287
|
letta_client/templates/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
288
288
|
letta_client/templates/agents/client.py,sha256=Nk_5b_IoEvx358GyCNH3wDdRP-IgOhgRAspXuBHflMY,2957
|
|
289
289
|
letta_client/templates/agents/raw_client.py,sha256=s3RRlfd5J4MGSWTPWV9nmLTLH84_5r1C5lUJSg8bgU8,2939
|
|
290
290
|
letta_client/templates/client.py,sha256=pL_Pm8Y8xv0EFEWs_30LxTxYFmba5BdX1_GL6iz7xAk,50335
|
|
291
291
|
letta_client/templates/raw_client.py,sha256=893nUXqoddpHQQVcjkK17z2_EMywVIvWprZVo-e2RW4,84179
|
|
292
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
292
|
+
letta_client/templates/types/__init__.py,sha256=nVZy4Ro5aKsa4lTwN_K9a47DoeufUEvH184AetCqz9w,138887
|
|
293
293
|
letta_client/templates/types/templates_create_agents_from_template_request_initial_message_sequence_item.py,sha256=yazAI09lTYn8i0UbuSVH8xgU35rUOQsvi3vpO3gPgg0,1080
|
|
294
294
|
letta_client/templates/types/templates_create_agents_from_template_request_initial_message_sequence_item_role.py,sha256=IJY6sF_KsFt-e7SMT5rUdADELLz6gOCVZpBoG0ccdlw,231
|
|
295
295
|
letta_client/templates/types/templates_create_agents_from_template_response.py,sha256=S7SrVa6cfj30adzw-VpeCJlm4-ch-q4SHMJgz2JmDtM,1152
|
|
@@ -333,7 +333,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
333
333
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_run_duration_ms_item.py,sha256=dRMDuz49oOFDcKzO5AiXr6USPuLf0mSd3XV1dJQrfPE,197
|
|
334
334
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_updated_by_id.py,sha256=sUhcASCjeCwkL2Q3G95TEcmv_dfwTPVmIicvkOPOiqI,516
|
|
335
335
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_last_updated_by_id_item.py,sha256=uwyL9iG8JbHsNyYezk2IRlA0tjWWA7AaVAgqHhq-C7w,193
|
|
336
|
-
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py,sha256=
|
|
336
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config.py,sha256=GtEiK4YpKs156t68tls3t1OzaDMtKyWUxIMKiyyMTN4,6129
|
|
337
337
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_compatibility_type.py,sha256=qy94r_FWEHISUhYVBzLMbxDZQ5IUc-HC6dhAUiSFpiw,606
|
|
338
338
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_compatibility_type_item.py,sha256=qA2A9n-rk_qw64Gl_vhcSTC6CBVAeCQpcuEqattgOX8,252
|
|
339
339
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_display_name.py,sha256=hUBX5augKOletwAe_1syUhjasXTYXDkgNF3tr_bPx-Y,536
|
|
@@ -351,6 +351,8 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
351
351
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_model_endpoint_type.py,sha256=0n9bwY78UmOUCxlD2DQDmkWuTZ01cR44np_0ddT7dYc,653
|
|
352
352
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_model_wrapper.py,sha256=Pnyw6LqLuiEwtOt5lOE08yKmhDEUuouMkKmFJbsxd9Q,540
|
|
353
353
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_model_wrapper_item.py,sha256=aZ8G3AMdRpsVNLMA8fsdciID_47CHjU0UJkiYgJOYKA,199
|
|
354
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_parallel_tool_calls.py,sha256=amnGnjDOG3ZoM_bWc-DzwIQ1D5wF6u6fH2j0FKacERg,562
|
|
355
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_parallel_tool_calls_item.py,sha256=XgffTGqSzhtHscSfGDsujFKXWmb8PPKs6lKZ7oBtjk0,211
|
|
354
356
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_provider_category.py,sha256=qYrCGNbIkoeVlHROnrA5NNse6QPJINdNwEPzxSLtPfY,603
|
|
355
357
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_provider_category_item.py,sha256=4URFa8oQ67f-zg5EapOGqNMGZxSGlLlXRVt3Et3jFeQ,252
|
|
356
358
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_llm_config_provider_name.py,sha256=5JiP5DdSY2EXmFZOmP0aVwicSJgWQYuw5zyltRCoZkU,540
|
|
@@ -681,7 +683,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
681
683
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_prompt_template.py,sha256=ZwjGDK5B2ruqmmJOqc1dtAY4H--4cg8f9OkzPMTbjWE,578
|
|
682
684
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_prompt_template_item.py,sha256=-ICmMB96uY4L7x8Kv84WuHX0AU6zZsNfBysIpxxUl5w,214
|
|
683
685
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tool_rules_item_two_type.py,sha256=PZB9xNrWeDhTx8qtNfzykgXNiSI7y8n2Prl8RF4Lkeg,201
|
|
684
|
-
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item.py,sha256=
|
|
686
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item.py,sha256=mqRJylVr4EpHZEngU4vbQ5kybP0plnBCsd-1h4Xj0W8,5141
|
|
685
687
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_args_json_schema.py,sha256=hvuCYjnwNCzsWrb9PdhMzggIrIDJMCec3rA9g0Dts6Q,540
|
|
686
688
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_args_json_schema_item.py,sha256=_Gu-Y59ePdvlXxEJtIz3_qtrssqon-xaSO8mmlcp9YI,231
|
|
687
689
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_created_by_id.py,sha256=u8RyDGHbdW-tiOA_m34cykOBAbaG2dFnw8h20ar07gU,504
|
|
@@ -690,6 +692,8 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
690
692
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_default_requires_approval_item.py,sha256=bFQ6CE1X8IVYozyIDv0fGCBNXUcdSRS8gdlDkjalUs4,217
|
|
691
693
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_description.py,sha256=IhQmXj_U5iby5WLKIPuQQuePkGrLsVcc2HZL3zLiMpU,502
|
|
692
694
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_description_item.py,sha256=9CEHSEusdg38Gn9R_sw8_n2K_AOLdeXBD0hHw3QApa0,198
|
|
695
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_enable_parallel_execution.py,sha256=BS_amVLwNE3riJmJT5nt6tUDf1ELkpehHMF1_731lN4,567
|
|
696
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_enable_parallel_execution_item.py,sha256=7kIkJ-UlOzEwb_ROXMvlc1H2Rrb2mrbkGWoaTIRALDw,217
|
|
693
697
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_json_schema.py,sha256=JjdOqfo-WaKBUlHDau4Astu1pO-Msg_lHXS72wBl2I0,523
|
|
694
698
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_json_schema_item.py,sha256=9LC9e8nFOnk2MlEQIleNaoAt_dpdWhQRnXUHyT_7AZc,227
|
|
695
699
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_tools_item_last_updated_by_id.py,sha256=DsTZjQiVO0UH6nwZrPrKhfGBNT2AIo0_BiGJ-HxAph8,521
|
|
@@ -791,8 +795,8 @@ letta_client/templates/types/templates_set_current_template_from_snapshot_respon
|
|
|
791
795
|
letta_client/templates/types/templates_update_current_template_from_agent_file_response.py,sha256=bVf2X_l_UU7ofzBqhj7lrX6r344ZU8EKhEND_5VAlcg,644
|
|
792
796
|
letta_client/templates/types/templates_update_template_description_response.py,sha256=0dYH6_6EcEzMSaU9Igau0xKJPVYGXA9Pf9_ON6kY0es,594
|
|
793
797
|
letta_client/tools/__init__.py,sha256=yO09WTcaXR27yvtC7K7Sj59WVyG6ET_VkhwoAxfqFbM,781
|
|
794
|
-
letta_client/tools/client.py,sha256=
|
|
795
|
-
letta_client/tools/raw_client.py,sha256=
|
|
798
|
+
letta_client/tools/client.py,sha256=Z4W1v7PBz5Obl2C6YnEM19v8t1WPl36ya_Nk01JGaLM,65935
|
|
799
|
+
letta_client/tools/raw_client.py,sha256=CCUFTF6urjbHdTbrCBkb98jxv1HnYBEFjajvluk6cwI,105352
|
|
796
800
|
letta_client/tools/types/__init__.py,sha256=iW8f30mPe50eMV3qzE_c-yzmW7kYb8G-DVYijiaVJcQ,1144
|
|
797
801
|
letta_client/tools/types/add_mcp_server_request.py,sha256=N9WDntHlIAxRQafdSnIydUNEEaOwnDISqGLMyHBrWr8,372
|
|
798
802
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=LryGwJSSLAX6crN_EctrRlJo0OCOUOK5mEGsgR4hONg,377
|
|
@@ -805,7 +809,7 @@ letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzu
|
|
|
805
809
|
letta_client/tools/types/tools_list_request_order.py,sha256=Gi0MwZ1KN1X3--U7NDEMQOQu1xvfJMdGIbCj5M0w8KM,160
|
|
806
810
|
letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
|
|
807
811
|
letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
|
|
808
|
-
letta_client/types/__init__.py,sha256=
|
|
812
|
+
letta_client/types/__init__.py,sha256=egXI0In1jC1koaZr7hkS6EVX_4-nkMG_yY-lzbxm774,26305
|
|
809
813
|
letta_client/types/agent_environment_variable.py,sha256=kT0OcOMmOil9-tCjOhdZ_trtt_6f9DmTeabqw0Qvh0g,1820
|
|
810
814
|
letta_client/types/agent_file_attachment.py,sha256=J8zj7RkNkKr2ikgY1nbtcMNiBzZchwo_fh4j6iySqF4,1807
|
|
811
815
|
letta_client/types/agent_file_schema.py,sha256=yD3QqRVWQr7T9M7OXL9KWNCP9BiR9wZC48xKnGzqsxQ,2212
|
|
@@ -817,8 +821,9 @@ letta_client/types/annotation.py,sha256=ja0AF_iu8wnRNZtGDPxAAj6c0PGbNaEOaJNaz2of
|
|
|
817
821
|
letta_client/types/annotation_url_citation.py,sha256=n_WJXMI7pS5pF2MH6f41xjDlahHWyrov9nFCFDkqpOw,621
|
|
818
822
|
letta_client/types/approval_create.py,sha256=qe2fsyHCwfIBiLqvp086nOeYMjQH0uNmHLoXzgnz0Nw,1378
|
|
819
823
|
letta_client/types/approval_create_approvals_item.py,sha256=akwLKX55RmPeeGw8kl5g3TXrXVqtUUE-WoCtwyG6g4k,308
|
|
820
|
-
letta_client/types/approval_request_message.py,sha256=
|
|
824
|
+
letta_client/types/approval_request_message.py,sha256=bYLfD2KU-aJUxPinY3Gg5ia18sKYV5Pmn0t8mvH_Jp8,1852
|
|
821
825
|
letta_client/types/approval_request_message_tool_call.py,sha256=ddPhd_Yar8rXzf78LP-QaBgPWf3mXziPflN_qgJus0U,227
|
|
826
|
+
letta_client/types/approval_request_message_tool_calls.py,sha256=9fbwLPcvzXZBJffrJ7xBKTIUYaNzRPp9QJ-6iiRAlNU,241
|
|
822
827
|
letta_client/types/approval_response_message.py,sha256=c34jzrDuApd-0zzycWq0_lVm1OQ_XdYaWJ8_Elulmds,2160
|
|
823
828
|
letta_client/types/approval_response_message_approvals_item.py,sha256=8x5r3OcuTsMMGJ92jCIuwDAByTmsrCWxzBkShbrqR_I,317
|
|
824
829
|
letta_client/types/approval_return.py,sha256=kiH5oZIRiiS2afzKcK4SsAiiCRGFwJdZ5hcXffoJzbc,950
|
|
@@ -931,7 +936,7 @@ letta_client/types/init_tool_rule.py,sha256=KGa_DBJyhUDW4fmW0WEZEZazk7LpWENjlgZ_
|
|
|
931
936
|
letta_client/types/input_audio.py,sha256=l4T076iM05SxiqBx5TEkE4baG99rk1olL6hmVictuJQ,634
|
|
932
937
|
letta_client/types/input_audio_format.py,sha256=QQFfndI9w66wIbGyHwfmJnk2bEJDPmEs9GybkaNL6AI,154
|
|
933
938
|
letta_client/types/internal_server_error_body.py,sha256=uDNP8p8Qm44sjvt4uTvK6jbSq4jbAcLplY6zd4e8mYY,572
|
|
934
|
-
letta_client/types/internal_template_agent_create.py,sha256=
|
|
939
|
+
letta_client/types/internal_template_agent_create.py,sha256=q0khvZVlMe-Yh3LXgRmiX2uuTGSqr8TxtFQUaQi5P78,8610
|
|
935
940
|
letta_client/types/internal_template_agent_create_response_format.py,sha256=4SOu2jhF5qZDlDorGrZ2cdyUF2do0IOtslZ_219qtzk,401
|
|
936
941
|
letta_client/types/internal_template_agent_create_tool_rules_item.py,sha256=zAZ1RbQnzI0K9YAP3OcBxRyi2WRx6G60lOnt6sekiS8,842
|
|
937
942
|
letta_client/types/internal_template_block_create.py,sha256=zxyp52nkcFrWzgM4IhHqehSwMcSSBSb6f5oD3XHE60c,2199
|
|
@@ -953,13 +958,13 @@ letta_client/types/letta_request.py,sha256=mPwcdsa_QtDkoDk3cspY870DQKZL6hKHPezYB
|
|
|
953
958
|
letta_client/types/letta_request_config.py,sha256=7Jxvs4Vja2GguDvESB5YxbpOCHBpJNP0LZ4u8ErMQLU,1347
|
|
954
959
|
letta_client/types/letta_request_messages_item.py,sha256=nZdjVqfS6X6STADIqgRPqn6tL_RIBxTZU7PDaQdhNU0,238
|
|
955
960
|
letta_client/types/letta_response.py,sha256=XsdGEunygyUZc-jegfZ0dqmERToeFQShvJY5JNmGTHM,1396
|
|
956
|
-
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=
|
|
961
|
+
letta_client/types/letta_schemas_agent_file_agent_schema.py,sha256=_ImMeLMdPcXvWuqPRGMnTxiDCZXqrPZD3inFtkfJOcM,9484
|
|
957
962
|
letta_client/types/letta_schemas_agent_file_agent_schema_response_format.py,sha256=ZXsdcfac2W9-vcdCAmdCT6YX1n59LKTbdNHfWkykGm8,406
|
|
958
963
|
letta_client/types/letta_schemas_agent_file_agent_schema_tool_rules_item.py,sha256=vjLR2zQtZl__7v6WNY-NtaxF2UBqiTiorO-Gw6B9rbc,847
|
|
959
964
|
letta_client/types/letta_schemas_agent_file_message_schema.py,sha256=7fMTWsPvEjsMI8JxPqTIqLR9FHTHOzocCIg6XIVUiSI,3783
|
|
960
965
|
letta_client/types/letta_schemas_agent_file_message_schema_approvals_item.py,sha256=9MnSb0u5jf9sEEcEC45Xp0irSPAVh4Yb7ju395JKoBI,312
|
|
961
966
|
letta_client/types/letta_schemas_agent_file_message_schema_content.py,sha256=7Co1Px87C9iREMZ3882Pt2NJCufjU5bOp0JgDnf46DQ,248
|
|
962
|
-
letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=
|
|
967
|
+
letta_client/types/letta_schemas_agent_file_tool_schema.py,sha256=tuZ8HzevumVwBqmwcmytFamcAchdNa7qGZm5070pun4,3361
|
|
963
968
|
letta_client/types/letta_schemas_letta_message_tool_return.py,sha256=R-SoZnBSH-gSv-ftTnx9aodFRgzFslsImlEh3OUANIk,911
|
|
964
969
|
letta_client/types/letta_schemas_letta_message_tool_return_status.py,sha256=u1JY90wi0SmH5fgRgWjPFjY828cx3GFWdeXdwabh1As,184
|
|
965
970
|
letta_client/types/letta_schemas_message_tool_return.py,sha256=52K5GpkOIOYprn6lsSGvegJKHkKEM79wb5lUL4eMp04,1255
|
|
@@ -974,7 +979,7 @@ letta_client/types/letta_streaming_request_messages_item.py,sha256=1uUqT_cli1mJB
|
|
|
974
979
|
letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
|
|
975
980
|
letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
|
|
976
981
|
letta_client/types/list_deployment_entities_response.py,sha256=0LMKw1XooxJy_h_Glmkyz0t-crHkI02j4UqWP4nJb-w,808
|
|
977
|
-
letta_client/types/llm_config.py,sha256=
|
|
982
|
+
letta_client/types/llm_config.py,sha256=tEDC69Uk9Hn01vLXFJ4S8v_SwIdoMJSio1hOCs3Pl_E,4290
|
|
978
983
|
letta_client/types/llm_config_compatibility_type.py,sha256=m6E90W-R9-Oi3EGSV_GdPIuVC2rmAH7TsUKbl79EiAQ,165
|
|
979
984
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=o59NDg3-3ud2mqAPYze40G7kyVD7pkRRbdT_vdTqL24,602
|
|
980
985
|
letta_client/types/llm_config_reasoning_effort.py,sha256=r4I3i2c7RxkBe-xXOE_XCXwjp9Y0QoaF2SVY7WYPdg4,184
|
|
@@ -1031,7 +1036,7 @@ letta_client/types/requires_approval_tool_rule.py,sha256=1mKQLGjy0NBcBgbLK0p1rBs
|
|
|
1031
1036
|
letta_client/types/round_robin_manager.py,sha256=cGnv5WFZowjguzNLX9Nv3DDfdgzDolN3onSkLLjAl6Y,701
|
|
1032
1037
|
letta_client/types/round_robin_manager_update.py,sha256=0auliO4ChHHCexaiEfXKmERz_4IWz5YvjRsQHbUqVCI,707
|
|
1033
1038
|
letta_client/types/run.py,sha256=eAbrUDxvBPrnss2vV7i62fySusUj5KvomS5amqbKQq0,3651
|
|
1034
|
-
letta_client/types/run_metrics.py,sha256
|
|
1039
|
+
letta_client/types/run_metrics.py,sha256=-BTeCwz8FAb7jlC9wVR5pL58uhGf66dTzetiuodHF8k,1749
|
|
1035
1040
|
letta_client/types/run_status.py,sha256=wgTK1qjDWWxXkolmi6q2Vc8AcnO2sCCDnj1ShO9t1Eg,191
|
|
1036
1041
|
letta_client/types/sandbox_config.py,sha256=YWQpDOHkiqEtp-xa4jjQA3QyGq4ZXNU8UDardnAvxhw,1551
|
|
1037
1042
|
letta_client/types/sandbox_config_create.py,sha256=fGMGiKbuf5ii1o-tHRHAjnAu0FB4JktMjlvu6uBRAsY,731
|
|
@@ -1066,7 +1071,7 @@ letta_client/types/tag_schema.py,sha256=TtqUHpKMxiMD-k-4vQgCOxiwzKRFBjEGhaq8cd0h
|
|
|
1066
1071
|
letta_client/types/terminal_tool_rule.py,sha256=-9AZYmPxH-cuSeIA8q6H610dC1yS4rb06MCPqwinW8s,993
|
|
1067
1072
|
letta_client/types/text_content.py,sha256=xvfTOiaa36wpVOU1LvUSr_oZdI4Qo2NNIeOyiuT7RUI,839
|
|
1068
1073
|
letta_client/types/text_response_format.py,sha256=MQ2iTTuJCzvk9qc4BEp6j9JvdZ_c7kiO_CnIqe6r_GU,655
|
|
1069
|
-
letta_client/types/tool.py,sha256=
|
|
1074
|
+
letta_client/types/tool.py,sha256=fbDGeZbIrl5YD4WicR94yh8BSuChhX8jPyYDGbrCekY,3659
|
|
1070
1075
|
letta_client/types/tool_annotations.py,sha256=gOUNd0gxzHvSz57G5c8gxK45VTxzk2yoB1PBfJoQlvU,1505
|
|
1071
1076
|
letta_client/types/tool_call.py,sha256=nIC6Tew85oekAwM7TWuD1nh-wMMSbwnHkDRIPh9znDk,595
|
|
1072
1077
|
letta_client/types/tool_call_content.py,sha256=EaIevYRAYg4ZkX2UsKDTMptydjBV7qZRYQwgg8n6lIQ,1161
|
|
@@ -1075,7 +1080,7 @@ letta_client/types/tool_call_message.py,sha256=GgiWt9NfUQZJirTujvzT85TUCowiv624e
|
|
|
1075
1080
|
letta_client/types/tool_call_message_tool_call.py,sha256=d9RPFSB8CXdANdNi7EoHYvRYpK-ETkTUSI5EWm71UlQ,220
|
|
1076
1081
|
letta_client/types/tool_call_message_tool_calls.py,sha256=bTktTSg5IAQOZutURGc0ioYjhQFaKVdOrvJzJ7tHKko,234
|
|
1077
1082
|
letta_client/types/tool_call_node.py,sha256=yO3aw5lT2pxaOHAtvTN-wfcf-QVsO0OJAGAJpuoiXnA,1216
|
|
1078
|
-
letta_client/types/tool_create.py,sha256=
|
|
1083
|
+
letta_client/types/tool_create.py,sha256=spEb2Ww8Zt2gLNi0fdTpOTpK6Ha6XwiurA21ielarL0,2334
|
|
1079
1084
|
letta_client/types/tool_env_var_schema.py,sha256=0LXRU-zRlBvMq9OZBnRHeZZvre3U3u3OF0zlBfgEXTo,661
|
|
1080
1085
|
letta_client/types/tool_json_schema.py,sha256=HFQvRiMLY1wWtAnnxgWA0hLKntgfPr-JLUdHoeKarj0,755
|
|
1081
1086
|
letta_client/types/tool_return_content.py,sha256=Z18tVJa_FZoDHw2UL04XbTz3eEeUR-Qs0iydBFv3dog,957
|
|
@@ -1110,6 +1115,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
1110
1115
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1111
1116
|
letta_client/voice/client.py,sha256=htBM9gwuGsyn3pK880QqtabE33S8eRdra1GltN08vCY,4146
|
|
1112
1117
|
letta_client/voice/raw_client.py,sha256=GQUKwqsRNTyI0N5N1R4vCqui9Qdgmi0XC3iEZPNCOn4,7190
|
|
1113
|
-
letta_client-1.0.
|
|
1114
|
-
letta_client-1.0.
|
|
1115
|
-
letta_client-1.0.
|
|
1118
|
+
letta_client-1.0.0a5.dist-info/METADATA,sha256=lRpEQQJL4cJp5ey9rRZRMl5QC32Sjzl3S8y2NnXb1X4,12235
|
|
1119
|
+
letta_client-1.0.0a5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
1120
|
+
letta_client-1.0.0a5.dist-info/RECORD,,
|
|
File without changes
|