letta-client 0.1.146__py3-none-any.whl → 0.1.148__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 +4 -0
- letta_client/agents/blocks/client.py +10 -0
- letta_client/agents/client.py +144 -0
- letta_client/agents/messages/client.py +31 -0
- letta_client/agents/passages/client.py +10 -0
- letta_client/blocks/client.py +20 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/groups/messages/client.py +21 -0
- letta_client/jobs/client.py +18 -2
- letta_client/sources/files/client.py +10 -0
- letta_client/steps/client.py +10 -0
- letta_client/tools/types/add_mcp_server_response_item.py +2 -2
- letta_client/tools/types/delete_mcp_server_response_item.py +2 -2
- letta_client/types/__init__.py +4 -0
- letta_client/types/agent_type.py +6 -1
- letta_client/types/block.py +5 -0
- letta_client/types/block_update.py +5 -0
- letta_client/types/create_block.py +5 -0
- letta_client/types/file_metadata.py +16 -0
- letta_client/types/file_processing_status.py +5 -0
- letta_client/types/letta_batch_request.py +6 -0
- letta_client/types/letta_request.py +6 -0
- letta_client/types/letta_streaming_request.py +6 -0
- letta_client/types/memory.py +5 -0
- letta_client/types/message_type.py +16 -0
- letta_client/types/passage.py +5 -0
- letta_client/types/tool_type.py +1 -0
- {letta_client-0.1.146.dist-info → letta_client-0.1.148.dist-info}/METADATA +2 -2
- {letta_client-0.1.146.dist-info → letta_client-0.1.148.dist-info}/RECORD +30 -28
- {letta_client-0.1.146.dist-info → letta_client-0.1.148.dist-info}/WHEEL +0 -0
letta_client/jobs/client.py
CHANGED
|
@@ -77,12 +77,17 @@ class JobsClient:
|
|
|
77
77
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
78
78
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
79
79
|
|
|
80
|
-
def list_active(
|
|
80
|
+
def list_active(
|
|
81
|
+
self, *, source_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
|
|
82
|
+
) -> typing.List[Job]:
|
|
81
83
|
"""
|
|
82
84
|
List all active jobs.
|
|
83
85
|
|
|
84
86
|
Parameters
|
|
85
87
|
----------
|
|
88
|
+
source_id : typing.Optional[str]
|
|
89
|
+
Only list jobs associated with the source.
|
|
90
|
+
|
|
86
91
|
request_options : typing.Optional[RequestOptions]
|
|
87
92
|
Request-specific configuration.
|
|
88
93
|
|
|
@@ -103,6 +108,9 @@ class JobsClient:
|
|
|
103
108
|
_response = self._client_wrapper.httpx_client.request(
|
|
104
109
|
"v1/jobs/active",
|
|
105
110
|
method="GET",
|
|
111
|
+
params={
|
|
112
|
+
"source_id": source_id,
|
|
113
|
+
},
|
|
106
114
|
request_options=request_options,
|
|
107
115
|
)
|
|
108
116
|
try:
|
|
@@ -314,12 +322,17 @@ class AsyncJobsClient:
|
|
|
314
322
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
315
323
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
316
324
|
|
|
317
|
-
async def list_active(
|
|
325
|
+
async def list_active(
|
|
326
|
+
self, *, source_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
|
|
327
|
+
) -> typing.List[Job]:
|
|
318
328
|
"""
|
|
319
329
|
List all active jobs.
|
|
320
330
|
|
|
321
331
|
Parameters
|
|
322
332
|
----------
|
|
333
|
+
source_id : typing.Optional[str]
|
|
334
|
+
Only list jobs associated with the source.
|
|
335
|
+
|
|
323
336
|
request_options : typing.Optional[RequestOptions]
|
|
324
337
|
Request-specific configuration.
|
|
325
338
|
|
|
@@ -348,6 +361,9 @@ class AsyncJobsClient:
|
|
|
348
361
|
_response = await self._client_wrapper.httpx_client.request(
|
|
349
362
|
"v1/jobs/active",
|
|
350
363
|
method="GET",
|
|
364
|
+
params={
|
|
365
|
+
"source_id": source_id,
|
|
366
|
+
},
|
|
351
367
|
request_options=request_options,
|
|
352
368
|
)
|
|
353
369
|
try:
|
|
@@ -94,6 +94,7 @@ class FilesClient:
|
|
|
94
94
|
*,
|
|
95
95
|
limit: typing.Optional[int] = None,
|
|
96
96
|
after: typing.Optional[str] = None,
|
|
97
|
+
include_content: typing.Optional[bool] = None,
|
|
97
98
|
request_options: typing.Optional[RequestOptions] = None,
|
|
98
99
|
) -> typing.List[FileMetadata]:
|
|
99
100
|
"""
|
|
@@ -109,6 +110,9 @@ class FilesClient:
|
|
|
109
110
|
after : typing.Optional[str]
|
|
110
111
|
Pagination cursor to fetch the next set of results
|
|
111
112
|
|
|
113
|
+
include_content : typing.Optional[bool]
|
|
114
|
+
Whether to include full file content
|
|
115
|
+
|
|
112
116
|
request_options : typing.Optional[RequestOptions]
|
|
113
117
|
Request-specific configuration.
|
|
114
118
|
|
|
@@ -134,6 +138,7 @@ class FilesClient:
|
|
|
134
138
|
params={
|
|
135
139
|
"limit": limit,
|
|
136
140
|
"after": after,
|
|
141
|
+
"include_content": include_content,
|
|
137
142
|
},
|
|
138
143
|
request_options=request_options,
|
|
139
144
|
)
|
|
@@ -298,6 +303,7 @@ class AsyncFilesClient:
|
|
|
298
303
|
*,
|
|
299
304
|
limit: typing.Optional[int] = None,
|
|
300
305
|
after: typing.Optional[str] = None,
|
|
306
|
+
include_content: typing.Optional[bool] = None,
|
|
301
307
|
request_options: typing.Optional[RequestOptions] = None,
|
|
302
308
|
) -> typing.List[FileMetadata]:
|
|
303
309
|
"""
|
|
@@ -313,6 +319,9 @@ class AsyncFilesClient:
|
|
|
313
319
|
after : typing.Optional[str]
|
|
314
320
|
Pagination cursor to fetch the next set of results
|
|
315
321
|
|
|
322
|
+
include_content : typing.Optional[bool]
|
|
323
|
+
Whether to include full file content
|
|
324
|
+
|
|
316
325
|
request_options : typing.Optional[RequestOptions]
|
|
317
326
|
Request-specific configuration.
|
|
318
327
|
|
|
@@ -346,6 +355,7 @@ class AsyncFilesClient:
|
|
|
346
355
|
params={
|
|
347
356
|
"limit": limit,
|
|
348
357
|
"after": after,
|
|
358
|
+
"include_content": include_content,
|
|
349
359
|
},
|
|
350
360
|
request_options=request_options,
|
|
351
361
|
)
|
letta_client/steps/client.py
CHANGED
|
@@ -28,6 +28,7 @@ class StepsClient:
|
|
|
28
28
|
end_date: typing.Optional[str] = None,
|
|
29
29
|
model: typing.Optional[str] = None,
|
|
30
30
|
agent_id: typing.Optional[str] = None,
|
|
31
|
+
trace_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
31
32
|
request_options: typing.Optional[RequestOptions] = None,
|
|
32
33
|
) -> typing.List[Step]:
|
|
33
34
|
"""
|
|
@@ -60,6 +61,9 @@ class StepsClient:
|
|
|
60
61
|
agent_id : typing.Optional[str]
|
|
61
62
|
Filter by the ID of the agent that performed the step
|
|
62
63
|
|
|
64
|
+
trace_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
65
|
+
Filter by trace ids returned by the server
|
|
66
|
+
|
|
63
67
|
request_options : typing.Optional[RequestOptions]
|
|
64
68
|
Request-specific configuration.
|
|
65
69
|
|
|
@@ -89,6 +93,7 @@ class StepsClient:
|
|
|
89
93
|
"end_date": end_date,
|
|
90
94
|
"model": model,
|
|
91
95
|
"agent_id": agent_id,
|
|
96
|
+
"trace_ids": trace_ids,
|
|
92
97
|
},
|
|
93
98
|
request_options=request_options,
|
|
94
99
|
)
|
|
@@ -188,6 +193,7 @@ class AsyncStepsClient:
|
|
|
188
193
|
end_date: typing.Optional[str] = None,
|
|
189
194
|
model: typing.Optional[str] = None,
|
|
190
195
|
agent_id: typing.Optional[str] = None,
|
|
196
|
+
trace_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
191
197
|
request_options: typing.Optional[RequestOptions] = None,
|
|
192
198
|
) -> typing.List[Step]:
|
|
193
199
|
"""
|
|
@@ -220,6 +226,9 @@ class AsyncStepsClient:
|
|
|
220
226
|
agent_id : typing.Optional[str]
|
|
221
227
|
Filter by the ID of the agent that performed the step
|
|
222
228
|
|
|
229
|
+
trace_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
230
|
+
Filter by trace ids returned by the server
|
|
231
|
+
|
|
223
232
|
request_options : typing.Optional[RequestOptions]
|
|
224
233
|
Request-specific configuration.
|
|
225
234
|
|
|
@@ -257,6 +266,7 @@ class AsyncStepsClient:
|
|
|
257
266
|
"end_date": end_date,
|
|
258
267
|
"model": model,
|
|
259
268
|
"agent_id": agent_id,
|
|
269
|
+
"trace_ids": trace_ids,
|
|
260
270
|
},
|
|
261
271
|
request_options=request_options,
|
|
262
272
|
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
|
-
from ...types.sse_server_config import SseServerConfig
|
|
5
4
|
from ...types.stdio_server_config import StdioServerConfig
|
|
5
|
+
from ...types.sse_server_config import SseServerConfig
|
|
6
6
|
|
|
7
|
-
AddMcpServerResponseItem = typing.Union[
|
|
7
|
+
AddMcpServerResponseItem = typing.Union[StdioServerConfig, SseServerConfig]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
|
-
from ...types.sse_server_config import SseServerConfig
|
|
5
4
|
from ...types.stdio_server_config import StdioServerConfig
|
|
5
|
+
from ...types.sse_server_config import SseServerConfig
|
|
6
6
|
|
|
7
|
-
DeleteMcpServerResponseItem = typing.Union[
|
|
7
|
+
DeleteMcpServerResponseItem = typing.Union[StdioServerConfig, SseServerConfig]
|
letta_client/types/__init__.py
CHANGED
|
@@ -90,6 +90,7 @@ from .embedding_config_embedding_endpoint_type import EmbeddingConfigEmbeddingEn
|
|
|
90
90
|
from .file import File
|
|
91
91
|
from .file_file import FileFile
|
|
92
92
|
from .file_metadata import FileMetadata
|
|
93
|
+
from .file_processing_status import FileProcessingStatus
|
|
93
94
|
from .function_call import FunctionCall
|
|
94
95
|
from .function_definition_input import FunctionDefinitionInput
|
|
95
96
|
from .function_definition_output import FunctionDefinitionOutput
|
|
@@ -143,6 +144,7 @@ from .message_create_content import MessageCreateContent
|
|
|
143
144
|
from .message_create_role import MessageCreateRole
|
|
144
145
|
from .message_role import MessageRole
|
|
145
146
|
from .message_schema import MessageSchema
|
|
147
|
+
from .message_type import MessageType
|
|
146
148
|
from .not_found_error_body import NotFoundErrorBody
|
|
147
149
|
from .not_found_error_body_message import NotFoundErrorBodyMessage
|
|
148
150
|
from .omitted_reasoning_content import OmittedReasoningContent
|
|
@@ -328,6 +330,7 @@ __all__ = [
|
|
|
328
330
|
"File",
|
|
329
331
|
"FileFile",
|
|
330
332
|
"FileMetadata",
|
|
333
|
+
"FileProcessingStatus",
|
|
331
334
|
"FunctionCall",
|
|
332
335
|
"FunctionDefinitionInput",
|
|
333
336
|
"FunctionDefinitionOutput",
|
|
@@ -381,6 +384,7 @@ __all__ = [
|
|
|
381
384
|
"MessageCreateRole",
|
|
382
385
|
"MessageRole",
|
|
383
386
|
"MessageSchema",
|
|
387
|
+
"MessageType",
|
|
384
388
|
"NotFoundErrorBody",
|
|
385
389
|
"NotFoundErrorBodyMessage",
|
|
386
390
|
"OmittedReasoningContent",
|
letta_client/types/agent_type.py
CHANGED
|
@@ -4,7 +4,12 @@ import typing
|
|
|
4
4
|
|
|
5
5
|
AgentType = typing.Union[
|
|
6
6
|
typing.Literal[
|
|
7
|
-
"memgpt_agent",
|
|
7
|
+
"memgpt_agent",
|
|
8
|
+
"memgpt_v2_agent",
|
|
9
|
+
"split_thread_agent",
|
|
10
|
+
"sleeptime_agent",
|
|
11
|
+
"voice_convo_agent",
|
|
12
|
+
"voice_sleeptime_agent",
|
|
8
13
|
],
|
|
9
14
|
typing.Any,
|
|
10
15
|
]
|
letta_client/types/block.py
CHANGED
|
@@ -42,6 +42,11 @@ class Block(UncheckedBaseModel):
|
|
|
42
42
|
Whether the block is a template (e.g. saved human/persona options).
|
|
43
43
|
"""
|
|
44
44
|
|
|
45
|
+
preserve_on_migration: typing.Optional[bool] = pydantic.Field(default=None)
|
|
46
|
+
"""
|
|
47
|
+
Preserve the block on template migration.
|
|
48
|
+
"""
|
|
49
|
+
|
|
45
50
|
label: typing.Optional[str] = pydantic.Field(default=None)
|
|
46
51
|
"""
|
|
47
52
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
@@ -31,6 +31,11 @@ class BlockUpdate(UncheckedBaseModel):
|
|
|
31
31
|
Whether the block is a template (e.g. saved human/persona options).
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
preserve_on_migration: typing.Optional[bool] = pydantic.Field(default=None)
|
|
35
|
+
"""
|
|
36
|
+
Preserve the block on template migration.
|
|
37
|
+
"""
|
|
38
|
+
|
|
34
39
|
label: typing.Optional[str] = pydantic.Field(default=None)
|
|
35
40
|
"""
|
|
36
41
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
@@ -27,6 +27,11 @@ class CreateBlock(UncheckedBaseModel):
|
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
29
|
is_template: typing.Optional[bool] = None
|
|
30
|
+
preserve_on_migration: typing.Optional[bool] = pydantic.Field(default=None)
|
|
31
|
+
"""
|
|
32
|
+
Preserve the block on template migration.
|
|
33
|
+
"""
|
|
34
|
+
|
|
30
35
|
label: str = pydantic.Field()
|
|
31
36
|
"""
|
|
32
37
|
Label of the block.
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
import pydantic
|
|
6
|
+
from .file_processing_status import FileProcessingStatus
|
|
6
7
|
import datetime as dt
|
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
9
|
|
|
@@ -52,6 +53,16 @@ class FileMetadata(UncheckedBaseModel):
|
|
|
52
53
|
The last modified date of the file.
|
|
53
54
|
"""
|
|
54
55
|
|
|
56
|
+
processing_status: typing.Optional[FileProcessingStatus] = pydantic.Field(default=None)
|
|
57
|
+
"""
|
|
58
|
+
The current processing status of the file (e.g. pending, parsing, embedding, completed, error).
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
error_message: typing.Optional[str] = pydantic.Field(default=None)
|
|
62
|
+
"""
|
|
63
|
+
Optional error message if the file failed processing.
|
|
64
|
+
"""
|
|
65
|
+
|
|
55
66
|
created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
56
67
|
"""
|
|
57
68
|
The creation date of the file.
|
|
@@ -67,6 +78,11 @@ class FileMetadata(UncheckedBaseModel):
|
|
|
67
78
|
Whether this file is deleted or not.
|
|
68
79
|
"""
|
|
69
80
|
|
|
81
|
+
content: typing.Optional[str] = pydantic.Field(default=None)
|
|
82
|
+
"""
|
|
83
|
+
Optional full-text content of the file; only populated on demand due to its size.
|
|
84
|
+
"""
|
|
85
|
+
|
|
70
86
|
if IS_PYDANTIC_V2:
|
|
71
87
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
72
88
|
else:
|
|
@@ -4,6 +4,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
4
4
|
import typing
|
|
5
5
|
from .message_create import MessageCreate
|
|
6
6
|
import pydantic
|
|
7
|
+
from .message_type import MessageType
|
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
9
|
|
|
9
10
|
|
|
@@ -28,6 +29,11 @@ class LettaBatchRequest(UncheckedBaseModel):
|
|
|
28
29
|
The name of the message argument in the designated message tool.
|
|
29
30
|
"""
|
|
30
31
|
|
|
32
|
+
include_return_message_types: typing.Optional[typing.List[MessageType]] = pydantic.Field(default=None)
|
|
33
|
+
"""
|
|
34
|
+
Only return specified message types in the response. If `None` (default) returns all messages.
|
|
35
|
+
"""
|
|
36
|
+
|
|
31
37
|
agent_id: str = pydantic.Field()
|
|
32
38
|
"""
|
|
33
39
|
The ID of the agent to send this batch request for
|
|
@@ -4,6 +4,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
4
4
|
import typing
|
|
5
5
|
from .message_create import MessageCreate
|
|
6
6
|
import pydantic
|
|
7
|
+
from .message_type import MessageType
|
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
9
|
|
|
9
10
|
|
|
@@ -28,6 +29,11 @@ class LettaRequest(UncheckedBaseModel):
|
|
|
28
29
|
The name of the message argument in the designated message tool.
|
|
29
30
|
"""
|
|
30
31
|
|
|
32
|
+
include_return_message_types: typing.Optional[typing.List[MessageType]] = pydantic.Field(default=None)
|
|
33
|
+
"""
|
|
34
|
+
Only return specified message types in the response. If `None` (default) returns all messages.
|
|
35
|
+
"""
|
|
36
|
+
|
|
31
37
|
if IS_PYDANTIC_V2:
|
|
32
38
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
33
39
|
else:
|
|
@@ -4,6 +4,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
4
4
|
import typing
|
|
5
5
|
from .message_create import MessageCreate
|
|
6
6
|
import pydantic
|
|
7
|
+
from .message_type import MessageType
|
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
9
|
|
|
9
10
|
|
|
@@ -28,6 +29,11 @@ class LettaStreamingRequest(UncheckedBaseModel):
|
|
|
28
29
|
The name of the message argument in the designated message tool.
|
|
29
30
|
"""
|
|
30
31
|
|
|
32
|
+
include_return_message_types: typing.Optional[typing.List[MessageType]] = pydantic.Field(default=None)
|
|
33
|
+
"""
|
|
34
|
+
Only return specified message types in the response. If `None` (default) returns all messages.
|
|
35
|
+
"""
|
|
36
|
+
|
|
31
37
|
stream_tokens: typing.Optional[bool] = pydantic.Field(default=None)
|
|
32
38
|
"""
|
|
33
39
|
Flag to determine if individual tokens should be streamed. Set to True for token streaming (requires stream_steps = True).
|
letta_client/types/memory.py
CHANGED
|
@@ -17,6 +17,11 @@ class Memory(UncheckedBaseModel):
|
|
|
17
17
|
Memory blocks contained in the agent's in-context memory
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
|
+
file_blocks: typing.Optional[typing.List[Block]] = pydantic.Field(default=None)
|
|
21
|
+
"""
|
|
22
|
+
Blocks representing the agent's in-context memory of an attached file
|
|
23
|
+
"""
|
|
24
|
+
|
|
20
25
|
prompt_template: typing.Optional[str] = pydantic.Field(default=None)
|
|
21
26
|
"""
|
|
22
27
|
Jinja2 template for compiling memory blocks into a prompt string
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
MessageType = typing.Union[
|
|
6
|
+
typing.Literal[
|
|
7
|
+
"system_message",
|
|
8
|
+
"user_message",
|
|
9
|
+
"assistant_message",
|
|
10
|
+
"reasoning_message",
|
|
11
|
+
"hidden_reasoning_message",
|
|
12
|
+
"tool_call_message",
|
|
13
|
+
"tool_return_message",
|
|
14
|
+
],
|
|
15
|
+
typing.Any,
|
|
16
|
+
]
|
letta_client/types/passage.py
CHANGED
|
@@ -63,6 +63,11 @@ class Passage(UncheckedBaseModel):
|
|
|
63
63
|
The unique identifier of the file associated with the passage.
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
|
+
file_name: typing.Optional[str] = pydantic.Field(default=None)
|
|
67
|
+
"""
|
|
68
|
+
The name of the file (only for source passages).
|
|
69
|
+
"""
|
|
70
|
+
|
|
66
71
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
67
72
|
"""
|
|
68
73
|
The metadata of the passage.
|
letta_client/types/tool_type.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.148
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -40,7 +40,7 @@ pip install letta-client
|
|
|
40
40
|
|
|
41
41
|
## Reference
|
|
42
42
|
|
|
43
|
-
A full reference for this library is available [here](
|
|
43
|
+
A full reference for this library is available [here](https://github.com/letta-ai/letta-python/blob/HEAD/./reference.md).
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
46
46
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=05auRaNRT8lIWpeUuEZoIlksQ9b8caNh1uB_-JEY7XM,16952
|
|
2
2
|
letta_client/agents/__init__.py,sha256=3oFWVxaaxkphkjGJVk31Llb9ll9dKoCGx3B_r3qqtes,1716
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
|
-
letta_client/agents/blocks/client.py,sha256=
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
4
|
+
letta_client/agents/blocks/client.py,sha256=ecE03lE5tP1AtCMFLT9FzdYyQMx_D7NI5m42b41pV40,24684
|
|
5
|
+
letta_client/agents/client.py,sha256=bzTMPItiEaV-Xy2ninzWJkMZ69GrNkWfaRBp5ecWOlI,84710
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=GKKvoG4N_K8Biz9yDjeIHpFG0C8Cwc7tHmEX3pTL_9U,4815
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -14,13 +14,13 @@ letta_client/agents/memory_variables/client.py,sha256=6qFVbR_tdfqj4HQ1h1HXR8DZCV
|
|
|
14
14
|
letta_client/agents/memory_variables/types/__init__.py,sha256=EoznK0WvhCyFYd4KDdU-cGDQWpSXmq79BSkqVHN-j7A,180
|
|
15
15
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=bsF__n_B4ZXEHzg--OVD6tHHXt_aM-FjHm2x1ZXPnL0,599
|
|
16
16
|
letta_client/agents/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
|
|
17
|
-
letta_client/agents/messages/client.py,sha256=
|
|
17
|
+
letta_client/agents/messages/client.py,sha256=D3o0UMIfETFxccLEN2HC6GBYUVBS4XUV2XKSv4i4I_Q,43815
|
|
18
18
|
letta_client/agents/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
|
|
19
19
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1AviakHXsWVcFv97a3RchzzzIiD77w4EC8,665
|
|
20
20
|
letta_client/agents/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
|
|
21
21
|
letta_client/agents/messages/types/messages_modify_response.py,sha256=THyiUMxZyzVSp0kk1s0XOLW1LUass7mXcfFER1PTLyw,671
|
|
22
22
|
letta_client/agents/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
23
|
-
letta_client/agents/passages/client.py,sha256=
|
|
23
|
+
letta_client/agents/passages/client.py,sha256=wb3_0yseUs9b_hH0BdygvHaSVo9xIkd1wHuRAjRcG1I,26146
|
|
24
24
|
letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
25
25
|
letta_client/agents/sources/client.py,sha256=VjmiI0L2RyT3AhqstHunapdbzygTBcNGoT1DiFGRg44,12799
|
|
26
26
|
letta_client/agents/templates/__init__.py,sha256=76pikeZpHJRNuNNJum2mSvaXNfrgYnwrq71xx_iHyDU,297
|
|
@@ -49,7 +49,7 @@ letta_client/batches/client.py,sha256=3uBs2SZbOP40b-Ck_DvicHuGJe5j3JAsK156zwsofp
|
|
|
49
49
|
letta_client/blocks/__init__.py,sha256=c6SGOs9_YGdydYAzhe5TUiaXq52rpWT1mNMcke8qGTQ,108
|
|
50
50
|
letta_client/blocks/agents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
51
51
|
letta_client/blocks/agents/client.py,sha256=-QywGs_ZfE5PbgzLYf2zzn9zAtpZmzGtHHZ5sXIYw0Y,4904
|
|
52
|
-
letta_client/blocks/client.py,sha256=
|
|
52
|
+
letta_client/blocks/client.py,sha256=SRUOncskFoVa5ifo0vnPZo28edBFmOBfp31dUAnCmAY,31675
|
|
53
53
|
letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
|
|
54
54
|
letta_client/client_side_access_tokens/__init__.py,sha256=z_wHT4UTBK7RzDIfLpdLMtBJBuuDosqgbzdmx-QME_o,763
|
|
55
55
|
letta_client/client_side_access_tokens/client.py,sha256=Qt1nmL-il4QzqWZHxY6XsSvCY8ps9FWXsWtUTPclVCc,12272
|
|
@@ -62,7 +62,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_re
|
|
|
62
62
|
letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
|
|
63
63
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
64
64
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
65
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
65
|
+
letta_client/core/client_wrapper.py,sha256=sX1A13KMxH_fRd3BcihU2azIElCm2iahqbZv8p2k9E0,1998
|
|
66
66
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
67
67
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
68
68
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -86,7 +86,7 @@ letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBR
|
|
|
86
86
|
letta_client/groups/__init__.py,sha256=WzkNp5Q_5zQj_NHv4hJCOKvW6ftM9EuNxw8hkPRRbko,434
|
|
87
87
|
letta_client/groups/client.py,sha256=xcW5PU_2Z4G92Sz9vuZM97xS88lsHlv2STG91Szleow,29893
|
|
88
88
|
letta_client/groups/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
|
|
89
|
-
letta_client/groups/messages/client.py,sha256=
|
|
89
|
+
letta_client/groups/messages/client.py,sha256=yE90vdrP1OJrnGw7Pum1vQ17CUv3Ftomd5F85V-efFA,35178
|
|
90
90
|
letta_client/groups/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
|
|
91
91
|
letta_client/groups/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1AviakHXsWVcFv97a3RchzzzIiD77w4EC8,665
|
|
92
92
|
letta_client/groups/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
|
|
@@ -101,7 +101,7 @@ letta_client/identities/client.py,sha256=vhmsa-ZKt0wKY9_1nfu_ORjXjJkVdSA24Ux-QKw
|
|
|
101
101
|
letta_client/identities/properties/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
102
102
|
letta_client/identities/properties/client.py,sha256=Nv7jOi5O8TmeZ1g0-TqnqiJ0hLcHMe2ZIfqAkEDB2Bk,6053
|
|
103
103
|
letta_client/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
104
|
-
letta_client/jobs/client.py,sha256
|
|
104
|
+
letta_client/jobs/client.py,sha256=-SwVfnXHaF0flyKNWH2X95SYrROvWsJC-9-iDhQsj2M,16076
|
|
105
105
|
letta_client/messages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
106
106
|
letta_client/messages/client.py,sha256=1L-636T7K3pL9PjNT5OOGRQjL4wS5bj-0hEW6pqZE_Y,7192
|
|
107
107
|
letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -125,11 +125,11 @@ letta_client/runs/usage/client.py,sha256=ea7e0R-Lv3VtbkJ-JC4RgYSr4TI2OjD31XeNLiD
|
|
|
125
125
|
letta_client/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
|
|
126
126
|
letta_client/sources/client.py,sha256=SRxv2SLREAW2eV_vjEYiMKEM5ViSVk_9dEIz75kOElA,33355
|
|
127
127
|
letta_client/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
128
|
-
letta_client/sources/files/client.py,sha256=
|
|
128
|
+
letta_client/sources/files/client.py,sha256=yW3zEZSh94vpH8mfTRnbx5nu0ql0JWtMbXOtbkIPFpw,13699
|
|
129
129
|
letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
130
130
|
letta_client/sources/passages/client.py,sha256=XxpITU_fq9MKiSd8Qu720Dprnxp5wlDEf6yjXaEfwSQ,5969
|
|
131
131
|
letta_client/steps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
132
|
-
letta_client/steps/client.py,sha256=
|
|
132
|
+
letta_client/steps/client.py,sha256=_Q9lvzACQlvLRzMnJB6VeNtPKv-PX-YiFeVmkC7_wAs,11756
|
|
133
133
|
letta_client/tags/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
134
134
|
letta_client/tags/client.py,sha256=1xIPtMWJ6ssAhPEFgl5CyJHyvND9MHCLIbEzQWxntZ0,5167
|
|
135
135
|
letta_client/telemetry/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -147,10 +147,10 @@ letta_client/tools/__init__.py,sha256=XsuAkxHDA-Z98gLNNW_fiEwFP3fP4XQipflrK2bHl8
|
|
|
147
147
|
letta_client/tools/client.py,sha256=hB-Of9ejHugQ1VAVv6bbeH_jSy02TIFeIrXeyQJcsXA,82476
|
|
148
148
|
letta_client/tools/types/__init__.py,sha256=R11LYBi6lxkud_DRyaHFUHtlnbfnEI93-SEo7FL4tzs,478
|
|
149
149
|
letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7glpxF4J4J3fm6tlaHFnYk84,265
|
|
150
|
-
letta_client/tools/types/add_mcp_server_response_item.py,sha256=
|
|
151
|
-
letta_client/tools/types/delete_mcp_server_response_item.py,sha256=
|
|
150
|
+
letta_client/tools/types/add_mcp_server_response_item.py,sha256=pb3A4IoP7Qpen0UDDniXrASYEJZWnYnnrZThtPkvZt4,270
|
|
151
|
+
letta_client/tools/types/delete_mcp_server_response_item.py,sha256=hKc4uehqcubO8BzpgMlvk2jJAjHXOWRM_zmWsCz_vZE,273
|
|
152
152
|
letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
|
|
153
|
-
letta_client/types/__init__.py,sha256=
|
|
153
|
+
letta_client/types/__init__.py,sha256=h_o0FM_YT2tMHU47Hq826ze-zmX6APUkjtaLvGlVLE0,21173
|
|
154
154
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
155
155
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
156
156
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
@@ -160,7 +160,7 @@ letta_client/types/agent_schema_tool_rules_item.py,sha256=TTP7uKYPSe-EAl4p03j0Kd
|
|
|
160
160
|
letta_client/types/agent_state.py,sha256=oLgHlraP7C5FnSGzzDBqKsXwKHJz-OYFbToAqFUQ8iI,5621
|
|
161
161
|
letta_client/types/agent_state_response_format.py,sha256=HISBgCumQxw6nQeDUMBu-IlghaLeWRb7BHHNaz_e8Hc,377
|
|
162
162
|
letta_client/types/agent_state_tool_rules_item.py,sha256=WB-N4uyDTfhYBjQYDcLZDxDj73Xu1mQasBkdofUM-XU,625
|
|
163
|
-
letta_client/types/agent_type.py,sha256=
|
|
163
|
+
letta_client/types/agent_type.py,sha256=C7krJfPZvZDZrEqizp5UdUF4T6omXIu8m1XgVgg7JKc,321
|
|
164
164
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
165
165
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
|
|
166
166
|
letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
@@ -173,8 +173,8 @@ letta_client/types/auth_scheme_field.py,sha256=W4-qgKtKUSpBHaSvjLyzLybOIsGo7Ggk4
|
|
|
173
173
|
letta_client/types/bad_request_error_body.py,sha256=E4_eWEc9xeW9BkXGViBDrevV8Jf6PjgEweeGS3vJLD4,567
|
|
174
174
|
letta_client/types/base_tool_rule_schema.py,sha256=FbnJy6gb8wY_DPiU3Gs-u1Ol_l4K7-nAmPTc1oR3kOo,582
|
|
175
175
|
letta_client/types/batch_job.py,sha256=s7mWlU0m7miuf9BTCTKo1rWidSXXcjJoTnS366lcA1Y,2201
|
|
176
|
-
letta_client/types/block.py,sha256=
|
|
177
|
-
letta_client/types/block_update.py,sha256=
|
|
176
|
+
letta_client/types/block.py,sha256=43aeirQFWcifNrXLjQnfEekQjfodO6DbTQXKjy8gofY,3185
|
|
177
|
+
letta_client/types/block_update.py,sha256=ALEConFeolPh9N1fhW9oY3De9JWOs75KK6DtkTUaWV4,1781
|
|
178
178
|
letta_client/types/chat_completion_assistant_message_param.py,sha256=QwxAJ9RQqxtZKnt6g6RfDppuMIt-1RAIlpnfSrVdHgg,1219
|
|
179
179
|
letta_client/types/chat_completion_assistant_message_param_content.py,sha256=CJ7Z_Jik2fzBYGy0UuvgDk0aLt3-Xpj3qswBLmWM0Sg,323
|
|
180
180
|
letta_client/types/chat_completion_assistant_message_param_content_item.py,sha256=tF-E0jNH0ilRJgm4vPTqHguCb-TZZ0LJfTXxOnon23w,405
|
|
@@ -232,7 +232,7 @@ letta_client/types/conflict_error_body.py,sha256=Mena-q1jti6nv_7-xrp6sDb_5MXNKPG
|
|
|
232
232
|
letta_client/types/context_window_overview.py,sha256=9pwiObSxu-SFyQ1pxSTlQiRatVAyFgqa6t0_qrrsGfU,2815
|
|
233
233
|
letta_client/types/continue_tool_rule.py,sha256=AIKTGsQrJdSNsMCqdSqMqjKS7s610vDO8taVEbSJ6Yc,867
|
|
234
234
|
letta_client/types/core_memory_block_schema.py,sha256=DGHyLAcFhHBm7oXkhkGIkkckcl9S2bCaU9b3qrUeNtc,984
|
|
235
|
-
letta_client/types/create_block.py,sha256=
|
|
235
|
+
letta_client/types/create_block.py,sha256=cyyufU4MBcLGjCNeTFZE7TX4LUhQXIaZAVwaoYkMlpE,1562
|
|
236
236
|
letta_client/types/dynamic_manager.py,sha256=5DRNqtUnjeTwOe5mkNB-SXItqLOfEX0avSrwsrJt1Aw,853
|
|
237
237
|
letta_client/types/dynamic_manager_update.py,sha256=Kew94BsFP6vP9pUXpZDMFZAo3TyaYWKu1KPgoQQjKYg,888
|
|
238
238
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
@@ -240,7 +240,8 @@ letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2v
|
|
|
240
240
|
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21PkzsZR58g7FlIMReFU2yf0hAS5OyUsW6Q,559
|
|
241
241
|
letta_client/types/file.py,sha256=ZLCEYJqIJ1pzAJn4Pke6gVdKivKU9FrIg98P4GmFY8M,628
|
|
242
242
|
letta_client/types/file_file.py,sha256=jbWcPKn-fSUlq9kl8n2us9fPU6x-Z20IKScHD_pJruw,665
|
|
243
|
-
letta_client/types/file_metadata.py,sha256=
|
|
243
|
+
letta_client/types/file_metadata.py,sha256=93kCGqz_Hpd-tCfqmXfe8a7pmUckDYrr48hbOGIKqgg,2553
|
|
244
|
+
letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
|
|
244
245
|
letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
|
|
245
246
|
letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
|
|
246
247
|
letta_client/types/function_definition_output.py,sha256=Id0SzyiMHF5l25iKQhCN4sWJwBJ7AkYK-I5RDZy3_rc,741
|
|
@@ -269,13 +270,13 @@ letta_client/types/json_object_response_format.py,sha256=kz1wkWKO2H9Ad9GgLzLHgnY
|
|
|
269
270
|
letta_client/types/json_schema.py,sha256=EHcLKBSGRsSzCKTpujKFHylcLJG6ODQIBrjQkU4lWDQ,870
|
|
270
271
|
letta_client/types/json_schema_response_format.py,sha256=vTBC5qyuUm9u1uf1IZmNyEH-wSXm8c_7cOwd7ua_aJw,816
|
|
271
272
|
letta_client/types/letta_batch_messages.py,sha256=kMefbiarujv7hCw3FyU-eVY2RgDV0ZXLOpkOooWNw6g,613
|
|
272
|
-
letta_client/types/letta_batch_request.py,sha256=
|
|
273
|
+
letta_client/types/letta_batch_request.py,sha256=XK_avuNnzzHQh6NMZo7rFOxVL9FSjrnTA5dEaNHs6Gk,1615
|
|
273
274
|
letta_client/types/letta_message_content_union.py,sha256=YxzyXKxUMeqbqWOlDs9LC8HUiqEhgkNCV9a76GS3spg,486
|
|
274
275
|
letta_client/types/letta_message_union.py,sha256=TTQwlur2CZNdZ466Nb_2TFcSFXrgoMliaNzD33t7Ktw,603
|
|
275
|
-
letta_client/types/letta_request.py,sha256=
|
|
276
|
+
letta_client/types/letta_request.py,sha256=hmF3OCWg-OgdFTyrx6hlnpF279NpAf2llyrlTdq33-4,1501
|
|
276
277
|
letta_client/types/letta_request_config.py,sha256=b6K4QtDdHjcZKfBb1fugUuoPrT2N4d5TTB0PIRNI2SU,1085
|
|
277
278
|
letta_client/types/letta_response.py,sha256=i5gAUTgWzIst_RP8I_zSh0GSnLIS3z--1BmK6EF1mkQ,1315
|
|
278
|
-
letta_client/types/letta_streaming_request.py,sha256=
|
|
279
|
+
letta_client/types/letta_streaming_request.py,sha256=1N-ybBPHAxWquqsnVdHZcHVj_iRZsgo6oprEClvBTzg,1726
|
|
279
280
|
letta_client/types/letta_usage_statistics.py,sha256=k6V72J2TEPd-RQBuUQxF3oylrAMcuSKBskd2nnZmGOw,1886
|
|
280
281
|
letta_client/types/llm_config.py,sha256=h22Fiph7-KoLKMgRKKtqqmUZzJwYUe5i02nwfsYluC4,4008
|
|
281
282
|
letta_client/types/llm_config_model_endpoint_type.py,sha256=HOSM5kIZDCNAVCWmASvAk52K819plqGlD66yKQ1xFkI,620
|
|
@@ -286,7 +287,7 @@ letta_client/types/max_count_per_step_tool_rule.py,sha256=sUhnoL1jolz2sygrmCuF4K
|
|
|
286
287
|
letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk7cBQ3gVCUy-MPWvE_tNXV5Fz0VTs,618
|
|
287
288
|
letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
|
|
288
289
|
letta_client/types/mcp_tool.py,sha256=_GSTb0k8l-IUEflRkQ6-v45UnbTcA4Nv1N8sgmExJQ0,912
|
|
289
|
-
letta_client/types/memory.py,sha256=
|
|
290
|
+
letta_client/types/memory.py,sha256=Fa07vLHBsc4eNK65Yla2zOuzYhtgFGlnPzAGo9GvJ-c,1210
|
|
290
291
|
letta_client/types/message.py,sha256=xLOrSRBL3GHlEN_aZAVR_ruftSqqDMu3CVnRnB01ZD0,4493
|
|
291
292
|
letta_client/types/message_content_item.py,sha256=mg2npSBRXsH7-fAwhx9YhkVbeCF3cM8pE6fPYtUDIyc,550
|
|
292
293
|
letta_client/types/message_create.py,sha256=jgtA2pi59E7Pv37oyGO51wjZyRtfxVpgENXad8fxQqM,1601
|
|
@@ -294,6 +295,7 @@ letta_client/types/message_create_content.py,sha256=KL3XAVKVrdsh4DZwdxKofUyehS-v
|
|
|
294
295
|
letta_client/types/message_create_role.py,sha256=PWbew2WtK-36P4d3Nuvq4QNLDAPntsGpasS_WzivyXg,172
|
|
295
296
|
letta_client/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
|
|
296
297
|
letta_client/types/message_schema.py,sha256=i7PLWd92bEltq3bSJam3c74p5zw-WdcoUqazLNmNYAw,955
|
|
298
|
+
letta_client/types/message_type.py,sha256=cEx51Mpt5B4g1QI0QzG81IYS-9lHmTTj_HokHOkJU0M,357
|
|
297
299
|
letta_client/types/not_found_error_body.py,sha256=_1esSlUdkBx6CRs6aAIJrxzh3VZKEG0xzeLbxebBuy0,615
|
|
298
300
|
letta_client/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
|
|
299
301
|
letta_client/types/omitted_reasoning_content.py,sha256=gIhWRyVtfB-Jo0Ua3QpyJNag2m_yRpusoPTcZZxjKh0,622
|
|
@@ -306,7 +308,7 @@ letta_client/types/organization_update.py,sha256=uCQAcWm8az3VbMtCEidPBZLh6Qyo4Z0
|
|
|
306
308
|
letta_client/types/parameter_properties.py,sha256=KVQGp_csoiNzyf9XsL083fwlX_a2Tc8GsCKyWB323C8,609
|
|
307
309
|
letta_client/types/parameters_schema.py,sha256=ptXcwjuaCwqRhfizeiWAsu3pqT87Jcj_P3YaEkL4asM,748
|
|
308
310
|
letta_client/types/parent_tool_rule.py,sha256=zPTfn5epS8spEIw71HUbbSX2KYxlIPB-cGJ52UQmQ_M,964
|
|
309
|
-
letta_client/types/passage.py,sha256=
|
|
311
|
+
letta_client/types/passage.py,sha256=k2EGG94WMFA3wsoL6Vd9ax18S2Nk7i_HlXvV5Dw5S4Y,3171
|
|
310
312
|
letta_client/types/payment_required_error_body.py,sha256=CXPzl1jrozG5PAiJakOK29qmgo5az8FQu_MVmEBxsK4,589
|
|
311
313
|
letta_client/types/pip_requirement.py,sha256=Hmh7VpJhdSfFkafh6QwAehCp0MQUBXv1YAoYP-2wV2M,773
|
|
312
314
|
letta_client/types/provider.py,sha256=9xl9T3TjkjpGX0mfH04CtCF0lcdoTmsGT_K16xR3n7M,1476
|
|
@@ -360,7 +362,7 @@ letta_client/types/tool_return_message.py,sha256=xi9bF7ccbfy1cAUvG9NnfiujjtF_Dh1
|
|
|
360
362
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
361
363
|
letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
|
|
362
364
|
letta_client/types/tool_schema.py,sha256=q5iRbpiIqWpNvXeDCi7BUyDbQzBKUnTIXEIAujn1bxw,1122
|
|
363
|
-
letta_client/types/tool_type.py,sha256=
|
|
365
|
+
letta_client/types/tool_type.py,sha256=Lrced4b0gDW3IWOhyCPC_dZX6dRUReI8VsutrgRTCzM,459
|
|
364
366
|
letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
|
|
365
367
|
letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
|
|
366
368
|
letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
|
|
@@ -388,6 +390,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
|
|
|
388
390
|
letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
|
|
389
391
|
letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
|
|
390
392
|
letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
|
|
391
|
-
letta_client-0.1.
|
|
392
|
-
letta_client-0.1.
|
|
393
|
-
letta_client-0.1.
|
|
393
|
+
letta_client-0.1.148.dist-info/METADATA,sha256=fv3nLKTMJuxv_pUNU4xO02yw2JNF1eMmu1L53UHPC9M,5093
|
|
394
|
+
letta_client-0.1.148.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
395
|
+
letta_client-0.1.148.dist-info/RECORD,,
|
|
File without changes
|