letta-client 0.1.16__py3-none-any.whl → 0.1.17__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 +0 -4
- letta_client/agents/__init__.py +1 -12
- letta_client/agents/archival_memory/client.py +7 -132
- letta_client/agents/client.py +14 -18
- letta_client/agents/core_memory/client.py +17 -144
- letta_client/agents/memory_variables/client.py +2 -2
- letta_client/agents/messages/client.py +12 -12
- letta_client/core/client_wrapper.py +1 -1
- letta_client/providers/client.py +74 -74
- letta_client/tools/client.py +0 -120
- letta_client/types/__init__.py +0 -4
- letta_client/types/embedding_config_embedding_endpoint_type.py +1 -0
- letta_client/types/letta_schemas_message_message.py +5 -0
- letta_client/types/llm_config_model_endpoint_type.py +1 -0
- {letta_client-0.1.16.dist-info → letta_client-0.1.17.dist-info}/METADATA +2 -2
- {letta_client-0.1.16.dist-info → letta_client-0.1.17.dist-info}/RECORD +17 -21
- letta_client/agents/recall_memory/__init__.py +0 -2
- letta_client/agents/recall_memory/client.py +0 -147
- letta_client/types/archival_memory_summary.py +0 -22
- letta_client/types/recall_memory_summary.py +0 -22
- {letta_client-0.1.16.dist-info → letta_client-0.1.17.dist-info}/WHEEL +0 -0
letta_client/providers/client.py
CHANGED
|
@@ -156,26 +156,23 @@ class ProvidersClient:
|
|
|
156
156
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
157
157
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
158
158
|
|
|
159
|
-
def
|
|
160
|
-
self, *,
|
|
161
|
-
) ->
|
|
159
|
+
def delete_provider(
|
|
160
|
+
self, *, provider_id: str, request_options: typing.Optional[RequestOptions] = None
|
|
161
|
+
) -> typing.Optional[typing.Any]:
|
|
162
162
|
"""
|
|
163
|
-
|
|
163
|
+
Delete an existing custom provider
|
|
164
164
|
|
|
165
165
|
Parameters
|
|
166
166
|
----------
|
|
167
|
-
|
|
168
|
-
The
|
|
169
|
-
|
|
170
|
-
api_key : str
|
|
171
|
-
API key used for requests to the provider.
|
|
167
|
+
provider_id : str
|
|
168
|
+
The provider_id key to be deleted.
|
|
172
169
|
|
|
173
170
|
request_options : typing.Optional[RequestOptions]
|
|
174
171
|
Request-specific configuration.
|
|
175
172
|
|
|
176
173
|
Returns
|
|
177
174
|
-------
|
|
178
|
-
|
|
175
|
+
typing.Optional[typing.Any]
|
|
179
176
|
Successful Response
|
|
180
177
|
|
|
181
178
|
Examples
|
|
@@ -185,30 +182,24 @@ class ProvidersClient:
|
|
|
185
182
|
client = Letta(
|
|
186
183
|
token="YOUR_TOKEN",
|
|
187
184
|
)
|
|
188
|
-
client.providers.
|
|
189
|
-
|
|
190
|
-
api_key="api_key",
|
|
185
|
+
client.providers.delete_provider(
|
|
186
|
+
provider_id="provider_id",
|
|
191
187
|
)
|
|
192
188
|
"""
|
|
193
189
|
_response = self._client_wrapper.httpx_client.request(
|
|
194
190
|
"v1/providers/",
|
|
195
|
-
method="
|
|
196
|
-
|
|
197
|
-
"
|
|
198
|
-
"api_key": api_key,
|
|
199
|
-
},
|
|
200
|
-
headers={
|
|
201
|
-
"content-type": "application/json",
|
|
191
|
+
method="DELETE",
|
|
192
|
+
params={
|
|
193
|
+
"provider_id": provider_id,
|
|
202
194
|
},
|
|
203
195
|
request_options=request_options,
|
|
204
|
-
omit=OMIT,
|
|
205
196
|
)
|
|
206
197
|
try:
|
|
207
198
|
if 200 <= _response.status_code < 300:
|
|
208
199
|
return typing.cast(
|
|
209
|
-
|
|
200
|
+
typing.Optional[typing.Any],
|
|
210
201
|
construct_type(
|
|
211
|
-
type_=
|
|
202
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
212
203
|
object_=_response.json(),
|
|
213
204
|
),
|
|
214
205
|
)
|
|
@@ -227,23 +218,26 @@ class ProvidersClient:
|
|
|
227
218
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
228
219
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
229
220
|
|
|
230
|
-
def
|
|
231
|
-
self, *,
|
|
232
|
-
) ->
|
|
221
|
+
def update_provider(
|
|
222
|
+
self, *, id: str, api_key: str, request_options: typing.Optional[RequestOptions] = None
|
|
223
|
+
) -> Provider:
|
|
233
224
|
"""
|
|
234
|
-
|
|
225
|
+
Update an existing custom provider
|
|
235
226
|
|
|
236
227
|
Parameters
|
|
237
228
|
----------
|
|
238
|
-
|
|
239
|
-
The
|
|
229
|
+
id : str
|
|
230
|
+
The id of the provider to update.
|
|
231
|
+
|
|
232
|
+
api_key : str
|
|
233
|
+
API key used for requests to the provider.
|
|
240
234
|
|
|
241
235
|
request_options : typing.Optional[RequestOptions]
|
|
242
236
|
Request-specific configuration.
|
|
243
237
|
|
|
244
238
|
Returns
|
|
245
239
|
-------
|
|
246
|
-
|
|
240
|
+
Provider
|
|
247
241
|
Successful Response
|
|
248
242
|
|
|
249
243
|
Examples
|
|
@@ -253,24 +247,30 @@ class ProvidersClient:
|
|
|
253
247
|
client = Letta(
|
|
254
248
|
token="YOUR_TOKEN",
|
|
255
249
|
)
|
|
256
|
-
client.providers.
|
|
257
|
-
|
|
250
|
+
client.providers.update_provider(
|
|
251
|
+
id="id",
|
|
252
|
+
api_key="api_key",
|
|
258
253
|
)
|
|
259
254
|
"""
|
|
260
255
|
_response = self._client_wrapper.httpx_client.request(
|
|
261
256
|
"v1/providers/",
|
|
262
|
-
method="
|
|
263
|
-
|
|
264
|
-
"
|
|
257
|
+
method="PATCH",
|
|
258
|
+
json={
|
|
259
|
+
"id": id,
|
|
260
|
+
"api_key": api_key,
|
|
261
|
+
},
|
|
262
|
+
headers={
|
|
263
|
+
"content-type": "application/json",
|
|
265
264
|
},
|
|
266
265
|
request_options=request_options,
|
|
266
|
+
omit=OMIT,
|
|
267
267
|
)
|
|
268
268
|
try:
|
|
269
269
|
if 200 <= _response.status_code < 300:
|
|
270
270
|
return typing.cast(
|
|
271
|
-
|
|
271
|
+
Provider,
|
|
272
272
|
construct_type(
|
|
273
|
-
type_=
|
|
273
|
+
type_=Provider, # type: ignore
|
|
274
274
|
object_=_response.json(),
|
|
275
275
|
),
|
|
276
276
|
)
|
|
@@ -447,26 +447,23 @@ class AsyncProvidersClient:
|
|
|
447
447
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
448
448
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
449
449
|
|
|
450
|
-
async def
|
|
451
|
-
self, *,
|
|
452
|
-
) ->
|
|
450
|
+
async def delete_provider(
|
|
451
|
+
self, *, provider_id: str, request_options: typing.Optional[RequestOptions] = None
|
|
452
|
+
) -> typing.Optional[typing.Any]:
|
|
453
453
|
"""
|
|
454
|
-
|
|
454
|
+
Delete an existing custom provider
|
|
455
455
|
|
|
456
456
|
Parameters
|
|
457
457
|
----------
|
|
458
|
-
|
|
459
|
-
The
|
|
460
|
-
|
|
461
|
-
api_key : str
|
|
462
|
-
API key used for requests to the provider.
|
|
458
|
+
provider_id : str
|
|
459
|
+
The provider_id key to be deleted.
|
|
463
460
|
|
|
464
461
|
request_options : typing.Optional[RequestOptions]
|
|
465
462
|
Request-specific configuration.
|
|
466
463
|
|
|
467
464
|
Returns
|
|
468
465
|
-------
|
|
469
|
-
|
|
466
|
+
typing.Optional[typing.Any]
|
|
470
467
|
Successful Response
|
|
471
468
|
|
|
472
469
|
Examples
|
|
@@ -481,9 +478,8 @@ class AsyncProvidersClient:
|
|
|
481
478
|
|
|
482
479
|
|
|
483
480
|
async def main() -> None:
|
|
484
|
-
await client.providers.
|
|
485
|
-
|
|
486
|
-
api_key="api_key",
|
|
481
|
+
await client.providers.delete_provider(
|
|
482
|
+
provider_id="provider_id",
|
|
487
483
|
)
|
|
488
484
|
|
|
489
485
|
|
|
@@ -491,23 +487,18 @@ class AsyncProvidersClient:
|
|
|
491
487
|
"""
|
|
492
488
|
_response = await self._client_wrapper.httpx_client.request(
|
|
493
489
|
"v1/providers/",
|
|
494
|
-
method="
|
|
495
|
-
|
|
496
|
-
"
|
|
497
|
-
"api_key": api_key,
|
|
498
|
-
},
|
|
499
|
-
headers={
|
|
500
|
-
"content-type": "application/json",
|
|
490
|
+
method="DELETE",
|
|
491
|
+
params={
|
|
492
|
+
"provider_id": provider_id,
|
|
501
493
|
},
|
|
502
494
|
request_options=request_options,
|
|
503
|
-
omit=OMIT,
|
|
504
495
|
)
|
|
505
496
|
try:
|
|
506
497
|
if 200 <= _response.status_code < 300:
|
|
507
498
|
return typing.cast(
|
|
508
|
-
|
|
499
|
+
typing.Optional[typing.Any],
|
|
509
500
|
construct_type(
|
|
510
|
-
type_=
|
|
501
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
511
502
|
object_=_response.json(),
|
|
512
503
|
),
|
|
513
504
|
)
|
|
@@ -526,23 +517,26 @@ class AsyncProvidersClient:
|
|
|
526
517
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
527
518
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
528
519
|
|
|
529
|
-
async def
|
|
530
|
-
self, *,
|
|
531
|
-
) ->
|
|
520
|
+
async def update_provider(
|
|
521
|
+
self, *, id: str, api_key: str, request_options: typing.Optional[RequestOptions] = None
|
|
522
|
+
) -> Provider:
|
|
532
523
|
"""
|
|
533
|
-
|
|
524
|
+
Update an existing custom provider
|
|
534
525
|
|
|
535
526
|
Parameters
|
|
536
527
|
----------
|
|
537
|
-
|
|
538
|
-
The
|
|
528
|
+
id : str
|
|
529
|
+
The id of the provider to update.
|
|
530
|
+
|
|
531
|
+
api_key : str
|
|
532
|
+
API key used for requests to the provider.
|
|
539
533
|
|
|
540
534
|
request_options : typing.Optional[RequestOptions]
|
|
541
535
|
Request-specific configuration.
|
|
542
536
|
|
|
543
537
|
Returns
|
|
544
538
|
-------
|
|
545
|
-
|
|
539
|
+
Provider
|
|
546
540
|
Successful Response
|
|
547
541
|
|
|
548
542
|
Examples
|
|
@@ -557,8 +551,9 @@ class AsyncProvidersClient:
|
|
|
557
551
|
|
|
558
552
|
|
|
559
553
|
async def main() -> None:
|
|
560
|
-
await client.providers.
|
|
561
|
-
|
|
554
|
+
await client.providers.update_provider(
|
|
555
|
+
id="id",
|
|
556
|
+
api_key="api_key",
|
|
562
557
|
)
|
|
563
558
|
|
|
564
559
|
|
|
@@ -566,18 +561,23 @@ class AsyncProvidersClient:
|
|
|
566
561
|
"""
|
|
567
562
|
_response = await self._client_wrapper.httpx_client.request(
|
|
568
563
|
"v1/providers/",
|
|
569
|
-
method="
|
|
570
|
-
|
|
571
|
-
"
|
|
564
|
+
method="PATCH",
|
|
565
|
+
json={
|
|
566
|
+
"id": id,
|
|
567
|
+
"api_key": api_key,
|
|
568
|
+
},
|
|
569
|
+
headers={
|
|
570
|
+
"content-type": "application/json",
|
|
572
571
|
},
|
|
573
572
|
request_options=request_options,
|
|
573
|
+
omit=OMIT,
|
|
574
574
|
)
|
|
575
575
|
try:
|
|
576
576
|
if 200 <= _response.status_code < 300:
|
|
577
577
|
return typing.cast(
|
|
578
|
-
|
|
578
|
+
Provider,
|
|
579
579
|
construct_type(
|
|
580
|
-
type_=
|
|
580
|
+
type_=Provider, # type: ignore
|
|
581
581
|
object_=_response.json(),
|
|
582
582
|
),
|
|
583
583
|
)
|
letta_client/tools/client.py
CHANGED
|
@@ -239,62 +239,6 @@ class ToolsClient:
|
|
|
239
239
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
240
240
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
241
241
|
|
|
242
|
-
def get_by_name(self, tool_name: str, *, request_options: typing.Optional[RequestOptions] = None) -> str:
|
|
243
|
-
"""
|
|
244
|
-
Get a tool ID by name
|
|
245
|
-
|
|
246
|
-
Parameters
|
|
247
|
-
----------
|
|
248
|
-
tool_name : str
|
|
249
|
-
|
|
250
|
-
request_options : typing.Optional[RequestOptions]
|
|
251
|
-
Request-specific configuration.
|
|
252
|
-
|
|
253
|
-
Returns
|
|
254
|
-
-------
|
|
255
|
-
str
|
|
256
|
-
Successful Response
|
|
257
|
-
|
|
258
|
-
Examples
|
|
259
|
-
--------
|
|
260
|
-
from letta_client import Letta
|
|
261
|
-
|
|
262
|
-
client = Letta(
|
|
263
|
-
token="YOUR_TOKEN",
|
|
264
|
-
)
|
|
265
|
-
client.tools.get_by_name(
|
|
266
|
-
tool_name="tool_name",
|
|
267
|
-
)
|
|
268
|
-
"""
|
|
269
|
-
_response = self._client_wrapper.httpx_client.request(
|
|
270
|
-
f"v1/tools/name/{jsonable_encoder(tool_name)}",
|
|
271
|
-
method="GET",
|
|
272
|
-
request_options=request_options,
|
|
273
|
-
)
|
|
274
|
-
try:
|
|
275
|
-
if 200 <= _response.status_code < 300:
|
|
276
|
-
return typing.cast(
|
|
277
|
-
str,
|
|
278
|
-
construct_type(
|
|
279
|
-
type_=str, # type: ignore
|
|
280
|
-
object_=_response.json(),
|
|
281
|
-
),
|
|
282
|
-
)
|
|
283
|
-
if _response.status_code == 422:
|
|
284
|
-
raise UnprocessableEntityError(
|
|
285
|
-
typing.cast(
|
|
286
|
-
HttpValidationError,
|
|
287
|
-
construct_type(
|
|
288
|
-
type_=HttpValidationError, # type: ignore
|
|
289
|
-
object_=_response.json(),
|
|
290
|
-
),
|
|
291
|
-
)
|
|
292
|
-
)
|
|
293
|
-
_response_json = _response.json()
|
|
294
|
-
except JSONDecodeError:
|
|
295
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
296
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
297
|
-
|
|
298
242
|
def list(
|
|
299
243
|
self,
|
|
300
244
|
*,
|
|
@@ -1112,70 +1056,6 @@ class AsyncToolsClient:
|
|
|
1112
1056
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1113
1057
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1114
1058
|
|
|
1115
|
-
async def get_by_name(self, tool_name: str, *, request_options: typing.Optional[RequestOptions] = None) -> str:
|
|
1116
|
-
"""
|
|
1117
|
-
Get a tool ID by name
|
|
1118
|
-
|
|
1119
|
-
Parameters
|
|
1120
|
-
----------
|
|
1121
|
-
tool_name : str
|
|
1122
|
-
|
|
1123
|
-
request_options : typing.Optional[RequestOptions]
|
|
1124
|
-
Request-specific configuration.
|
|
1125
|
-
|
|
1126
|
-
Returns
|
|
1127
|
-
-------
|
|
1128
|
-
str
|
|
1129
|
-
Successful Response
|
|
1130
|
-
|
|
1131
|
-
Examples
|
|
1132
|
-
--------
|
|
1133
|
-
import asyncio
|
|
1134
|
-
|
|
1135
|
-
from letta_client import AsyncLetta
|
|
1136
|
-
|
|
1137
|
-
client = AsyncLetta(
|
|
1138
|
-
token="YOUR_TOKEN",
|
|
1139
|
-
)
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
async def main() -> None:
|
|
1143
|
-
await client.tools.get_by_name(
|
|
1144
|
-
tool_name="tool_name",
|
|
1145
|
-
)
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
asyncio.run(main())
|
|
1149
|
-
"""
|
|
1150
|
-
_response = await self._client_wrapper.httpx_client.request(
|
|
1151
|
-
f"v1/tools/name/{jsonable_encoder(tool_name)}",
|
|
1152
|
-
method="GET",
|
|
1153
|
-
request_options=request_options,
|
|
1154
|
-
)
|
|
1155
|
-
try:
|
|
1156
|
-
if 200 <= _response.status_code < 300:
|
|
1157
|
-
return typing.cast(
|
|
1158
|
-
str,
|
|
1159
|
-
construct_type(
|
|
1160
|
-
type_=str, # type: ignore
|
|
1161
|
-
object_=_response.json(),
|
|
1162
|
-
),
|
|
1163
|
-
)
|
|
1164
|
-
if _response.status_code == 422:
|
|
1165
|
-
raise UnprocessableEntityError(
|
|
1166
|
-
typing.cast(
|
|
1167
|
-
HttpValidationError,
|
|
1168
|
-
construct_type(
|
|
1169
|
-
type_=HttpValidationError, # type: ignore
|
|
1170
|
-
object_=_response.json(),
|
|
1171
|
-
),
|
|
1172
|
-
)
|
|
1173
|
-
)
|
|
1174
|
-
_response_json = _response.json()
|
|
1175
|
-
except JSONDecodeError:
|
|
1176
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1177
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1178
|
-
|
|
1179
1059
|
async def list(
|
|
1180
1060
|
self,
|
|
1181
1061
|
*,
|
letta_client/types/__init__.py
CHANGED
|
@@ -10,7 +10,6 @@ from .agent_type import AgentType
|
|
|
10
10
|
from .app_auth_scheme import AppAuthScheme
|
|
11
11
|
from .app_auth_scheme_auth_mode import AppAuthSchemeAuthMode
|
|
12
12
|
from .app_model import AppModel
|
|
13
|
-
from .archival_memory_summary import ArchivalMemorySummary
|
|
14
13
|
from .assistant_file import AssistantFile
|
|
15
14
|
from .assistant_message_input import AssistantMessageInput
|
|
16
15
|
from .assistant_message_output import AssistantMessageOutput
|
|
@@ -92,7 +91,6 @@ from .organization_create import OrganizationCreate
|
|
|
92
91
|
from .passage import Passage
|
|
93
92
|
from .provider import Provider
|
|
94
93
|
from .reasoning_message import ReasoningMessage
|
|
95
|
-
from .recall_memory_summary import RecallMemorySummary
|
|
96
94
|
from .response_format import ResponseFormat
|
|
97
95
|
from .run import Run
|
|
98
96
|
from .sandbox_config import SandboxConfig
|
|
@@ -141,7 +139,6 @@ __all__ = [
|
|
|
141
139
|
"AppAuthScheme",
|
|
142
140
|
"AppAuthSchemeAuthMode",
|
|
143
141
|
"AppModel",
|
|
144
|
-
"ArchivalMemorySummary",
|
|
145
142
|
"AssistantFile",
|
|
146
143
|
"AssistantMessageInput",
|
|
147
144
|
"AssistantMessageOutput",
|
|
@@ -219,7 +216,6 @@ __all__ = [
|
|
|
219
216
|
"Passage",
|
|
220
217
|
"Provider",
|
|
221
218
|
"ReasoningMessage",
|
|
222
|
-
"RecallMemorySummary",
|
|
223
219
|
"ResponseFormat",
|
|
224
220
|
"Run",
|
|
225
221
|
"SandboxConfig",
|
|
@@ -88,6 +88,11 @@ class LettaSchemasMessageMessage(UncheckedBaseModel):
|
|
|
88
88
|
The id of the tool call.
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
|
+
step_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
92
|
+
"""
|
|
93
|
+
The id of the step that this message was created in.
|
|
94
|
+
"""
|
|
95
|
+
|
|
91
96
|
if IS_PYDANTIC_V2:
|
|
92
97
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
93
98
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.17
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -105,7 +105,7 @@ from letta_client import Letta, MessageCreate
|
|
|
105
105
|
client = Letta(
|
|
106
106
|
token="YOUR_TOKEN",
|
|
107
107
|
)
|
|
108
|
-
response = client.agents.messages.
|
|
108
|
+
response = client.agents.messages.create_stream(
|
|
109
109
|
agent_id="agent_id",
|
|
110
110
|
messages=[
|
|
111
111
|
MessageCreate(
|
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=wDNZgKycs5zFV8p-ICgUpcWY_Ctcf1ri34daE6cIDSQ,8514
|
|
2
|
+
letta_client/agents/__init__.py,sha256=w-JcTnVKKOdp2_RyIIKrffno0N0kxAiRXnmtXzMa9NI,2537
|
|
3
3
|
letta_client/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
|
-
letta_client/agents/archival_memory/client.py,sha256=
|
|
5
|
-
letta_client/agents/client.py,sha256
|
|
4
|
+
letta_client/agents/archival_memory/client.py,sha256=bsTZssfmEPO0adZTf1KlgaDtnoQKxBt2GVDO0Hhh2OM,14872
|
|
5
|
+
letta_client/agents/client.py,sha256=nJPSIgvB1KqjoYAz1aQS1mCbFIts8jR6qal-zSHMIM0,54568
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=s9dQA3yJo8KVSinnZz0Mv0GWs0tEqoSH5HgdTTD_klc,4781
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
9
|
-
letta_client/agents/core_memory/client.py,sha256=
|
|
9
|
+
letta_client/agents/core_memory/client.py,sha256=fYZ6D8Myd25NBREyhlNBolIKGGDoNcst3p6hfjMFdAk,30399
|
|
10
10
|
letta_client/agents/memory_variables/__init__.py,sha256=PkxamlalbQ8edaZ2O0eWrPYzkL47cWJq__AzUHK3tDY,153
|
|
11
|
-
letta_client/agents/memory_variables/client.py,sha256=
|
|
11
|
+
letta_client/agents/memory_variables/client.py,sha256=GOzgxqEcjGTcAnWLIZ9-l0hTYhPLFvNngi_ignF4pPU,4951
|
|
12
12
|
letta_client/agents/memory_variables/types/__init__.py,sha256=F97IDCgZgUMB04F4EFK8_sEiHIaSxeY3uZFOKWjIu7s,177
|
|
13
13
|
letta_client/agents/memory_variables/types/memory_variables_get_response.py,sha256=rc-8h_zEPBmHCjJlEPNoz8enpNcmKkrJz1pbSRQmJy4,598
|
|
14
14
|
letta_client/agents/messages/__init__.py,sha256=LYdFebT_xZUy18Gep6nGkjvgP7GJm_xap9IxmM3PBj4,841
|
|
15
|
-
letta_client/agents/messages/client.py,sha256=
|
|
15
|
+
letta_client/agents/messages/client.py,sha256=Hs0ENZgeLwf6gzEfrX7kuhLgnqsjdqAi7URLdcuhKpY,34689
|
|
16
16
|
letta_client/agents/messages/types/__init__.py,sha256=B9jyLPU7esk_34bILLZl5Nw6qbk3sDJd7ygfeivDwYI,891
|
|
17
17
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=wy__JtXiybvfOjsjMq5ZSnTJt9A5x_nALgCqq32Dd_A,4707
|
|
18
18
|
letta_client/agents/messages/types/messages_list_response.py,sha256=95iOFCbgI3gFk5P-ZoTnQrMJTrnOp7KATNi1PXLnTMU,328
|
|
19
|
-
letta_client/agents/recall_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
20
|
-
letta_client/agents/recall_memory/client.py,sha256=ZAe42LBqWQZSkbWY70O6KZNWm1030gYx4EhXW4af0MQ,4869
|
|
21
19
|
letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
22
20
|
letta_client/agents/sources/client.py,sha256=ATvEfFKfhnsq-nUqq8MskYjhi66Iun-TMaP1jL4RdV8,4719
|
|
23
21
|
letta_client/agents/templates/__init__.py,sha256=fTLYBFybZ1xFP8phgz2b7Nlygau7OHa3CUqtZjG2JRI,149
|
|
@@ -44,7 +42,7 @@ letta_client/blocks/client.py,sha256=-4_DMOmUdzPxCqmOYJv3O9Yrf3ZG-gpzyciTe9qbI7k
|
|
|
44
42
|
letta_client/client.py,sha256=a5YTj-G-1W4JXvxggyTU1riqiKJ-ga0iZ4VYP15b1A4,2656
|
|
45
43
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
46
44
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
47
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
45
|
+
letta_client/core/client_wrapper.py,sha256=m1_kbVKuX7eZa0QEquj3H3XJRugTnCtH9DGgBg1COKU,1997
|
|
48
46
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
49
47
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
50
48
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -68,7 +66,7 @@ letta_client/jobs/client.py,sha256=rhLATeG8dAyxLONZ5oSZ5iN22N4hzcyg0xl71fOyYIE,1
|
|
|
68
66
|
letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
69
67
|
letta_client/models/client.py,sha256=Rd9IHjSdXRzzZyabpq8pDTc9XDnwLPnmm5by335g1D0,6306
|
|
70
68
|
letta_client/providers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
71
|
-
letta_client/providers/client.py,sha256=
|
|
69
|
+
letta_client/providers/client.py,sha256=JOoagQo1mdg7y9-iC2d8bue-IOrWzidnoPwMm4hf9b8,18236
|
|
72
70
|
letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
71
|
letta_client/runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
74
72
|
letta_client/runs/client.py,sha256=-KIljMB39AkyIIrqiz7GIUNdZa0YetgB9bxuc6zt9Cg,25594
|
|
@@ -81,8 +79,8 @@ letta_client/sources/passages/client.py,sha256=n0QVtLC0W1X6_SjhiEGSl9oZexocnsLZY
|
|
|
81
79
|
letta_client/tag/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
82
80
|
letta_client/tag/client.py,sha256=zAy0hjEOVNZV3QAd9iiVuapAXQNCi0wKvZ_wvqj0TmI,5191
|
|
83
81
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
84
|
-
letta_client/tools/client.py,sha256=
|
|
85
|
-
letta_client/types/__init__.py,sha256=
|
|
82
|
+
letta_client/tools/client.py,sha256=rvvXvPwxsqwodxITxHKsAluHQvOpd9t81vY0hooabR4,55048
|
|
83
|
+
letta_client/types/__init__.py,sha256=ysUrB6v6EagUc-6q_mrP1pyXNm8TKdNuVxC6FOQL1EE,10144
|
|
86
84
|
letta_client/types/action_model.py,sha256=65eLvLD-9-zK9hrDun7wjVlXsCiI7zujv8aGPuIb3jE,1206
|
|
87
85
|
letta_client/types/action_parameters_model.py,sha256=zKzJkjtu1pt4BEA2GHlg9rMWja5a0uZygOpOx3FbgIM,749
|
|
88
86
|
letta_client/types/action_response_model.py,sha256=5OuImT0EQFkAnc81F6tZsVEwYG8rKbIrx_ydGiKqwog,745
|
|
@@ -93,7 +91,6 @@ letta_client/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3
|
|
|
93
91
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
94
92
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=Zafrac9piNVjCVppCv0CS34Yx4rFaFPieeNCrtaPSwk,225
|
|
95
93
|
letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
96
|
-
letta_client/types/archival_memory_summary.py,sha256=UDmcWnpoE8HNf1RdRuWyoYcenJRA1rUGtuMqRdzmF0I,639
|
|
97
94
|
letta_client/types/assistant_file.py,sha256=9_yzzOMH5Ab10MRCJ44WEI0POh4aTOU1R5LCfDF_EnQ,881
|
|
98
95
|
letta_client/types/assistant_message_input.py,sha256=wta9fA0F5XNya-0uqy7odOjTp7NP-DyOs88E7LOnusQ,886
|
|
99
96
|
letta_client/types/assistant_message_output.py,sha256=rhe1PjM24FcKxmNZH0mrfUbNFTs1yRSKu2GyHe3MU-Q,636
|
|
@@ -120,7 +117,7 @@ letta_client/types/delete_assistant_file_response.py,sha256=7j0Qr9mp2bMS42na9IP0
|
|
|
120
117
|
letta_client/types/delete_assistant_response.py,sha256=1OX7gczbWmiAKYkzETkcQCHRlsTqySUHjkGiWA_Pygk,770
|
|
121
118
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
122
119
|
letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
|
|
123
|
-
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=
|
|
120
|
+
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=1_ytkZZHdP7vBoaQ3oSf_fSLmPa_C9P4mEeUBzTB700,534
|
|
124
121
|
letta_client/types/file_metadata.py,sha256=vORZH5WZO8AwAuKq0h0W9TTuydjmDlkZC6YyZMy2jbc,1973
|
|
125
122
|
letta_client/types/function_call_input.py,sha256=bxHxCXbkzah5gLjgcbxktKuQrOATItZQ9ZeMMoNYlJw,562
|
|
126
123
|
letta_client/types/function_call_output.py,sha256=PfRMUZziEt8K-hhVvpIa4e-63KnpREep7eRPe-w476U,582
|
|
@@ -137,7 +134,7 @@ letta_client/types/letta_request.py,sha256=Xps139s6e0fc7HWi0YJHFz51AfY3iDAB9kh-y
|
|
|
137
134
|
letta_client/types/letta_request_config.py,sha256=b6K4QtDdHjcZKfBb1fugUuoPrT2N4d5TTB0PIRNI2SU,1085
|
|
138
135
|
letta_client/types/letta_response.py,sha256=i5gAUTgWzIst_RP8I_zSh0GSnLIS3z--1BmK6EF1mkQ,1315
|
|
139
136
|
letta_client/types/letta_schemas_letta_message_tool_call.py,sha256=KrRbLhWx8uVpZIpt1nuVIIBemjFnQufPR1vm6NlMMM4,618
|
|
140
|
-
letta_client/types/letta_schemas_message_message.py,sha256=
|
|
137
|
+
letta_client/types/letta_schemas_message_message.py,sha256=iQ7W_DQZMkT1Oira00_EUofvTdXspUIs8Ra9DOpW57c,3136
|
|
141
138
|
letta_client/types/letta_schemas_openai_chat_completion_request_tool.py,sha256=fdQxtc1tO3kQzpOPxNuELJl5vSaU9pdSdrTpnWJeK5Y,708
|
|
142
139
|
letta_client/types/letta_schemas_openai_chat_completion_request_tool_call.py,sha256=IlL9RDjVQhhLL56zkl2HKIe90czi2zNsthEXErbuKnc,863
|
|
143
140
|
letta_client/types/letta_schemas_openai_chat_completion_request_tool_call_function.py,sha256=kH0koggWWYihst_VCvWoahU0PZDQ8wonfHyYeCP6ZRk,619
|
|
@@ -149,7 +146,7 @@ letta_client/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha
|
|
|
149
146
|
letta_client/types/letta_schemas_tool_tool.py,sha256=QPsaOdK_VB_TDC_GDRFU8w-kf_p8ClRKuegfssPnXV8,2351
|
|
150
147
|
letta_client/types/letta_usage_statistics.py,sha256=Sr8g9QBOIAMpPDr_HMQOkkhMhNEw8j846wkuTg69YxI,1460
|
|
151
148
|
letta_client/types/llm_config.py,sha256=Jk6uKehnhOxaEWZptE09781Pa8LGIh1SlIKGj_eX6oA,2447
|
|
152
|
-
letta_client/types/llm_config_model_endpoint_type.py,sha256=
|
|
149
|
+
letta_client/types/llm_config_model_endpoint_type.py,sha256=zz7qt0dCqX06vu8mTN1vIvO7iPl1CNbKTFHd-Qg6q6E,524
|
|
153
150
|
letta_client/types/local_sandbox_config.py,sha256=Q4riu4FS69VmC6WsJYcN5YzRCPJwn0hRHRV9bEI_vHY,1044
|
|
154
151
|
letta_client/types/log_prob_token.py,sha256=ueghwzOAxC14TuztG4rkTcYgkRCK6RilqGYqZYC0xbY,629
|
|
155
152
|
letta_client/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
|
|
@@ -165,7 +162,6 @@ letta_client/types/organization_create.py,sha256=xlF1FgDRa7zpv49kVGWYchcSEUjPEsj
|
|
|
165
162
|
letta_client/types/passage.py,sha256=CPg_I9h4yNdVYXCnslKlGsPq6rYe6qTvGT4RjBF7620,3183
|
|
166
163
|
letta_client/types/provider.py,sha256=RvdE9dzGFJ4hcmyvk2xeO7RNpxQvXhB_S9DNy8t_z-E,1053
|
|
167
164
|
letta_client/types/reasoning_message.py,sha256=kCoRIXdsCjj48jDaZKuxIXqxwnlLYGR3qAAumeQIA-M,882
|
|
168
|
-
letta_client/types/recall_memory_summary.py,sha256=aHLAjDWxs6tLFJVtF4CUiS6IiP0bWFcIDNC0J5njJtY,635
|
|
169
165
|
letta_client/types/response_format.py,sha256=Ot93aFi9mH4h6xWuSDzbXu_6nd2_caFqCzG1wd-cAiw,583
|
|
170
166
|
letta_client/types/run.py,sha256=MZUXM24ipEHJU4iaGWxHkYVPMI8KCsRe42IihzchEkQ,2654
|
|
171
167
|
letta_client/types/sandbox_config.py,sha256=nvVdB0WnK_-bEHIehvBGiiD0hvujA93Ko4FuGMAJDdk,1550
|
|
@@ -203,6 +199,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
203
199
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
204
200
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
205
201
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
206
|
-
letta_client-0.1.
|
|
207
|
-
letta_client-0.1.
|
|
208
|
-
letta_client-0.1.
|
|
202
|
+
letta_client-0.1.17.dist-info/METADATA,sha256=rITh5NhQptAlc_189cCTWmQ4ajL-U3OgVLRAkTwEDE8,4936
|
|
203
|
+
letta_client-0.1.17.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
204
|
+
letta_client-0.1.17.dist-info/RECORD,,
|