letta-client 0.1.146__py3-none-any.whl → 0.1.147__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of letta-client might be problematic. Click here for more details.
- letta_client/agents/blocks/client.py +10 -0
- letta_client/agents/client.py +144 -0
- letta_client/blocks/client.py +20 -0
- letta_client/core/client_wrapper.py +1 -1
- 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/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 +5 -0
- letta_client/types/memory.py +5 -0
- {letta_client-0.1.146.dist-info → letta_client-0.1.147.dist-info}/METADATA +2 -2
- {letta_client-0.1.146.dist-info → letta_client-0.1.147.dist-info}/RECORD +18 -18
- {letta_client-0.1.146.dist-info → letta_client-0.1.147.dist-info}/WHEEL +0 -0
|
@@ -91,6 +91,7 @@ class BlocksClient:
|
|
|
91
91
|
limit: typing.Optional[int] = OMIT,
|
|
92
92
|
name: typing.Optional[str] = OMIT,
|
|
93
93
|
is_template: typing.Optional[bool] = OMIT,
|
|
94
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
94
95
|
label: typing.Optional[str] = OMIT,
|
|
95
96
|
read_only: typing.Optional[bool] = OMIT,
|
|
96
97
|
description: typing.Optional[str] = OMIT,
|
|
@@ -118,6 +119,9 @@ class BlocksClient:
|
|
|
118
119
|
is_template : typing.Optional[bool]
|
|
119
120
|
Whether the block is a template (e.g. saved human/persona options).
|
|
120
121
|
|
|
122
|
+
preserve_on_migration : typing.Optional[bool]
|
|
123
|
+
Preserve the block on template migration.
|
|
124
|
+
|
|
121
125
|
label : typing.Optional[str]
|
|
122
126
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
123
127
|
|
|
@@ -158,6 +162,7 @@ class BlocksClient:
|
|
|
158
162
|
"limit": limit,
|
|
159
163
|
"name": name,
|
|
160
164
|
"is_template": is_template,
|
|
165
|
+
"preserve_on_migration": preserve_on_migration,
|
|
161
166
|
"label": label,
|
|
162
167
|
"read_only": read_only,
|
|
163
168
|
"description": description,
|
|
@@ -451,6 +456,7 @@ class AsyncBlocksClient:
|
|
|
451
456
|
limit: typing.Optional[int] = OMIT,
|
|
452
457
|
name: typing.Optional[str] = OMIT,
|
|
453
458
|
is_template: typing.Optional[bool] = OMIT,
|
|
459
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
454
460
|
label: typing.Optional[str] = OMIT,
|
|
455
461
|
read_only: typing.Optional[bool] = OMIT,
|
|
456
462
|
description: typing.Optional[str] = OMIT,
|
|
@@ -478,6 +484,9 @@ class AsyncBlocksClient:
|
|
|
478
484
|
is_template : typing.Optional[bool]
|
|
479
485
|
Whether the block is a template (e.g. saved human/persona options).
|
|
480
486
|
|
|
487
|
+
preserve_on_migration : typing.Optional[bool]
|
|
488
|
+
Preserve the block on template migration.
|
|
489
|
+
|
|
481
490
|
label : typing.Optional[str]
|
|
482
491
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
483
492
|
|
|
@@ -526,6 +535,7 @@ class AsyncBlocksClient:
|
|
|
526
535
|
"limit": limit,
|
|
527
536
|
"name": name,
|
|
528
537
|
"is_template": is_template,
|
|
538
|
+
"preserve_on_migration": preserve_on_migration,
|
|
529
539
|
"label": label,
|
|
530
540
|
"read_only": read_only,
|
|
531
541
|
"description": description,
|
letta_client/agents/client.py
CHANGED
|
@@ -951,6 +951,74 @@ class AgentsClient:
|
|
|
951
951
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
952
952
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
953
953
|
|
|
954
|
+
def summarize_agent_conversation(
|
|
955
|
+
self, agent_id: str, *, max_message_length: int, request_options: typing.Optional[RequestOptions] = None
|
|
956
|
+
) -> AgentState:
|
|
957
|
+
"""
|
|
958
|
+
Summarize an agent's conversation history to a target message length.
|
|
959
|
+
|
|
960
|
+
This endpoint summarizes the current message history for a given agent,
|
|
961
|
+
truncating and compressing it down to the specified `max_message_length`.
|
|
962
|
+
|
|
963
|
+
Parameters
|
|
964
|
+
----------
|
|
965
|
+
agent_id : str
|
|
966
|
+
|
|
967
|
+
max_message_length : int
|
|
968
|
+
Maximum number of messages to retain after summarization.
|
|
969
|
+
|
|
970
|
+
request_options : typing.Optional[RequestOptions]
|
|
971
|
+
Request-specific configuration.
|
|
972
|
+
|
|
973
|
+
Returns
|
|
974
|
+
-------
|
|
975
|
+
AgentState
|
|
976
|
+
Successful Response
|
|
977
|
+
|
|
978
|
+
Examples
|
|
979
|
+
--------
|
|
980
|
+
from letta_client import Letta
|
|
981
|
+
|
|
982
|
+
client = Letta(
|
|
983
|
+
token="YOUR_TOKEN",
|
|
984
|
+
)
|
|
985
|
+
client.agents.summarize_agent_conversation(
|
|
986
|
+
agent_id="agent_id",
|
|
987
|
+
max_message_length=1,
|
|
988
|
+
)
|
|
989
|
+
"""
|
|
990
|
+
_response = self._client_wrapper.httpx_client.request(
|
|
991
|
+
f"v1/agents/{jsonable_encoder(agent_id)}/summarize",
|
|
992
|
+
method="POST",
|
|
993
|
+
params={
|
|
994
|
+
"max_message_length": max_message_length,
|
|
995
|
+
},
|
|
996
|
+
request_options=request_options,
|
|
997
|
+
)
|
|
998
|
+
try:
|
|
999
|
+
if 200 <= _response.status_code < 300:
|
|
1000
|
+
return typing.cast(
|
|
1001
|
+
AgentState,
|
|
1002
|
+
construct_type(
|
|
1003
|
+
type_=AgentState, # type: ignore
|
|
1004
|
+
object_=_response.json(),
|
|
1005
|
+
),
|
|
1006
|
+
)
|
|
1007
|
+
if _response.status_code == 422:
|
|
1008
|
+
raise UnprocessableEntityError(
|
|
1009
|
+
typing.cast(
|
|
1010
|
+
HttpValidationError,
|
|
1011
|
+
construct_type(
|
|
1012
|
+
type_=HttpValidationError, # type: ignore
|
|
1013
|
+
object_=_response.json(),
|
|
1014
|
+
),
|
|
1015
|
+
)
|
|
1016
|
+
)
|
|
1017
|
+
_response_json = _response.json()
|
|
1018
|
+
except JSONDecodeError:
|
|
1019
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1020
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1021
|
+
|
|
954
1022
|
def search(
|
|
955
1023
|
self,
|
|
956
1024
|
*,
|
|
@@ -1994,6 +2062,82 @@ class AsyncAgentsClient:
|
|
|
1994
2062
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1995
2063
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1996
2064
|
|
|
2065
|
+
async def summarize_agent_conversation(
|
|
2066
|
+
self, agent_id: str, *, max_message_length: int, request_options: typing.Optional[RequestOptions] = None
|
|
2067
|
+
) -> AgentState:
|
|
2068
|
+
"""
|
|
2069
|
+
Summarize an agent's conversation history to a target message length.
|
|
2070
|
+
|
|
2071
|
+
This endpoint summarizes the current message history for a given agent,
|
|
2072
|
+
truncating and compressing it down to the specified `max_message_length`.
|
|
2073
|
+
|
|
2074
|
+
Parameters
|
|
2075
|
+
----------
|
|
2076
|
+
agent_id : str
|
|
2077
|
+
|
|
2078
|
+
max_message_length : int
|
|
2079
|
+
Maximum number of messages to retain after summarization.
|
|
2080
|
+
|
|
2081
|
+
request_options : typing.Optional[RequestOptions]
|
|
2082
|
+
Request-specific configuration.
|
|
2083
|
+
|
|
2084
|
+
Returns
|
|
2085
|
+
-------
|
|
2086
|
+
AgentState
|
|
2087
|
+
Successful Response
|
|
2088
|
+
|
|
2089
|
+
Examples
|
|
2090
|
+
--------
|
|
2091
|
+
import asyncio
|
|
2092
|
+
|
|
2093
|
+
from letta_client import AsyncLetta
|
|
2094
|
+
|
|
2095
|
+
client = AsyncLetta(
|
|
2096
|
+
token="YOUR_TOKEN",
|
|
2097
|
+
)
|
|
2098
|
+
|
|
2099
|
+
|
|
2100
|
+
async def main() -> None:
|
|
2101
|
+
await client.agents.summarize_agent_conversation(
|
|
2102
|
+
agent_id="agent_id",
|
|
2103
|
+
max_message_length=1,
|
|
2104
|
+
)
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
asyncio.run(main())
|
|
2108
|
+
"""
|
|
2109
|
+
_response = await self._client_wrapper.httpx_client.request(
|
|
2110
|
+
f"v1/agents/{jsonable_encoder(agent_id)}/summarize",
|
|
2111
|
+
method="POST",
|
|
2112
|
+
params={
|
|
2113
|
+
"max_message_length": max_message_length,
|
|
2114
|
+
},
|
|
2115
|
+
request_options=request_options,
|
|
2116
|
+
)
|
|
2117
|
+
try:
|
|
2118
|
+
if 200 <= _response.status_code < 300:
|
|
2119
|
+
return typing.cast(
|
|
2120
|
+
AgentState,
|
|
2121
|
+
construct_type(
|
|
2122
|
+
type_=AgentState, # type: ignore
|
|
2123
|
+
object_=_response.json(),
|
|
2124
|
+
),
|
|
2125
|
+
)
|
|
2126
|
+
if _response.status_code == 422:
|
|
2127
|
+
raise UnprocessableEntityError(
|
|
2128
|
+
typing.cast(
|
|
2129
|
+
HttpValidationError,
|
|
2130
|
+
construct_type(
|
|
2131
|
+
type_=HttpValidationError, # type: ignore
|
|
2132
|
+
object_=_response.json(),
|
|
2133
|
+
),
|
|
2134
|
+
)
|
|
2135
|
+
)
|
|
2136
|
+
_response_json = _response.json()
|
|
2137
|
+
except JSONDecodeError:
|
|
2138
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
2139
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
2140
|
+
|
|
1997
2141
|
async def search(
|
|
1998
2142
|
self,
|
|
1999
2143
|
*,
|
letta_client/blocks/client.py
CHANGED
|
@@ -117,6 +117,7 @@ class BlocksClient:
|
|
|
117
117
|
limit: typing.Optional[int] = OMIT,
|
|
118
118
|
name: typing.Optional[str] = OMIT,
|
|
119
119
|
is_template: typing.Optional[bool] = OMIT,
|
|
120
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
120
121
|
read_only: typing.Optional[bool] = OMIT,
|
|
121
122
|
description: typing.Optional[str] = OMIT,
|
|
122
123
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
@@ -139,6 +140,9 @@ class BlocksClient:
|
|
|
139
140
|
|
|
140
141
|
is_template : typing.Optional[bool]
|
|
141
142
|
|
|
143
|
+
preserve_on_migration : typing.Optional[bool]
|
|
144
|
+
Preserve the block on template migration.
|
|
145
|
+
|
|
142
146
|
read_only : typing.Optional[bool]
|
|
143
147
|
Whether the agent has read-only access to the block.
|
|
144
148
|
|
|
@@ -176,6 +180,7 @@ class BlocksClient:
|
|
|
176
180
|
"limit": limit,
|
|
177
181
|
"name": name,
|
|
178
182
|
"is_template": is_template,
|
|
183
|
+
"preserve_on_migration": preserve_on_migration,
|
|
179
184
|
"label": label,
|
|
180
185
|
"read_only": read_only,
|
|
181
186
|
"description": description,
|
|
@@ -376,6 +381,7 @@ class BlocksClient:
|
|
|
376
381
|
limit: typing.Optional[int] = OMIT,
|
|
377
382
|
name: typing.Optional[str] = OMIT,
|
|
378
383
|
is_template: typing.Optional[bool] = OMIT,
|
|
384
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
379
385
|
label: typing.Optional[str] = OMIT,
|
|
380
386
|
read_only: typing.Optional[bool] = OMIT,
|
|
381
387
|
description: typing.Optional[str] = OMIT,
|
|
@@ -399,6 +405,9 @@ class BlocksClient:
|
|
|
399
405
|
is_template : typing.Optional[bool]
|
|
400
406
|
Whether the block is a template (e.g. saved human/persona options).
|
|
401
407
|
|
|
408
|
+
preserve_on_migration : typing.Optional[bool]
|
|
409
|
+
Preserve the block on template migration.
|
|
410
|
+
|
|
402
411
|
label : typing.Optional[str]
|
|
403
412
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
404
413
|
|
|
@@ -438,6 +447,7 @@ class BlocksClient:
|
|
|
438
447
|
"limit": limit,
|
|
439
448
|
"name": name,
|
|
440
449
|
"is_template": is_template,
|
|
450
|
+
"preserve_on_migration": preserve_on_migration,
|
|
441
451
|
"label": label,
|
|
442
452
|
"read_only": read_only,
|
|
443
453
|
"description": description,
|
|
@@ -578,6 +588,7 @@ class AsyncBlocksClient:
|
|
|
578
588
|
limit: typing.Optional[int] = OMIT,
|
|
579
589
|
name: typing.Optional[str] = OMIT,
|
|
580
590
|
is_template: typing.Optional[bool] = OMIT,
|
|
591
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
581
592
|
read_only: typing.Optional[bool] = OMIT,
|
|
582
593
|
description: typing.Optional[str] = OMIT,
|
|
583
594
|
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
@@ -600,6 +611,9 @@ class AsyncBlocksClient:
|
|
|
600
611
|
|
|
601
612
|
is_template : typing.Optional[bool]
|
|
602
613
|
|
|
614
|
+
preserve_on_migration : typing.Optional[bool]
|
|
615
|
+
Preserve the block on template migration.
|
|
616
|
+
|
|
603
617
|
read_only : typing.Optional[bool]
|
|
604
618
|
Whether the agent has read-only access to the block.
|
|
605
619
|
|
|
@@ -645,6 +659,7 @@ class AsyncBlocksClient:
|
|
|
645
659
|
"limit": limit,
|
|
646
660
|
"name": name,
|
|
647
661
|
"is_template": is_template,
|
|
662
|
+
"preserve_on_migration": preserve_on_migration,
|
|
648
663
|
"label": label,
|
|
649
664
|
"read_only": read_only,
|
|
650
665
|
"description": description,
|
|
@@ -869,6 +884,7 @@ class AsyncBlocksClient:
|
|
|
869
884
|
limit: typing.Optional[int] = OMIT,
|
|
870
885
|
name: typing.Optional[str] = OMIT,
|
|
871
886
|
is_template: typing.Optional[bool] = OMIT,
|
|
887
|
+
preserve_on_migration: typing.Optional[bool] = OMIT,
|
|
872
888
|
label: typing.Optional[str] = OMIT,
|
|
873
889
|
read_only: typing.Optional[bool] = OMIT,
|
|
874
890
|
description: typing.Optional[str] = OMIT,
|
|
@@ -892,6 +908,9 @@ class AsyncBlocksClient:
|
|
|
892
908
|
is_template : typing.Optional[bool]
|
|
893
909
|
Whether the block is a template (e.g. saved human/persona options).
|
|
894
910
|
|
|
911
|
+
preserve_on_migration : typing.Optional[bool]
|
|
912
|
+
Preserve the block on template migration.
|
|
913
|
+
|
|
895
914
|
label : typing.Optional[str]
|
|
896
915
|
Label of the block (e.g. 'human', 'persona') in the context window.
|
|
897
916
|
|
|
@@ -939,6 +958,7 @@ class AsyncBlocksClient:
|
|
|
939
958
|
"limit": limit,
|
|
940
959
|
"name": name,
|
|
941
960
|
"is_template": is_template,
|
|
961
|
+
"preserve_on_migration": preserve_on_migration,
|
|
942
962
|
"label": label,
|
|
943
963
|
"read_only": read_only,
|
|
944
964
|
"description": description,
|
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.147",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
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/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.
|
|
@@ -67,6 +67,11 @@ class FileMetadata(UncheckedBaseModel):
|
|
|
67
67
|
Whether this file is deleted or not.
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
|
+
content: typing.Optional[str] = pydantic.Field(default=None)
|
|
71
|
+
"""
|
|
72
|
+
Optional full-text content of the file; only populated on demand due to its size.
|
|
73
|
+
"""
|
|
74
|
+
|
|
70
75
|
if IS_PYDANTIC_V2:
|
|
71
76
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
72
77
|
else:
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.147
|
|
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
1
|
letta_client/__init__.py,sha256=cC7toheUYvpp_2EGyQLtyGOtDBwTRd8nXqK_-IMHWrE,16862
|
|
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
|
|
@@ -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=meHTJrAJwcb7TI42rXf-TVd_KVJE1vtagn1ag4RZNw0,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
|
|
@@ -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,8 +147,8 @@ 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
153
|
letta_client/types/__init__.py,sha256=kcK4mjiH606XYmLgiH14ZLkaNe6nCfbB2ogKccj7fN0,21031
|
|
154
154
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
@@ -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,7 @@ 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=EuEd98T2sUdnYkHVpgIg74jc98iyseqowJbxahIUs2k,2141
|
|
244
244
|
letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
|
|
245
245
|
letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
|
|
246
246
|
letta_client/types/function_definition_output.py,sha256=Id0SzyiMHF5l25iKQhCN4sWJwBJ7AkYK-I5RDZy3_rc,741
|
|
@@ -286,7 +286,7 @@ letta_client/types/max_count_per_step_tool_rule.py,sha256=sUhnoL1jolz2sygrmCuF4K
|
|
|
286
286
|
letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk7cBQ3gVCUy-MPWvE_tNXV5Fz0VTs,618
|
|
287
287
|
letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
|
|
288
288
|
letta_client/types/mcp_tool.py,sha256=_GSTb0k8l-IUEflRkQ6-v45UnbTcA4Nv1N8sgmExJQ0,912
|
|
289
|
-
letta_client/types/memory.py,sha256=
|
|
289
|
+
letta_client/types/memory.py,sha256=Fa07vLHBsc4eNK65Yla2zOuzYhtgFGlnPzAGo9GvJ-c,1210
|
|
290
290
|
letta_client/types/message.py,sha256=xLOrSRBL3GHlEN_aZAVR_ruftSqqDMu3CVnRnB01ZD0,4493
|
|
291
291
|
letta_client/types/message_content_item.py,sha256=mg2npSBRXsH7-fAwhx9YhkVbeCF3cM8pE6fPYtUDIyc,550
|
|
292
292
|
letta_client/types/message_create.py,sha256=jgtA2pi59E7Pv37oyGO51wjZyRtfxVpgENXad8fxQqM,1601
|
|
@@ -388,6 +388,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
|
|
|
388
388
|
letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
|
|
389
389
|
letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
|
|
390
390
|
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.
|
|
391
|
+
letta_client-0.1.147.dist-info/METADATA,sha256=a3t664fBzmOeBFs1a2mgBvLq3v4-QL0ZXDLJAcz8r8I,5093
|
|
392
|
+
letta_client-0.1.147.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
393
|
+
letta_client-0.1.147.dist-info/RECORD,,
|
|
File without changes
|