letta-client 0.1.105__py3-none-any.whl → 0.1.106__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 +8 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/groups/types/group_update_manager_config.py +7 -5
- letta_client/identities/client.py +154 -0
- letta_client/types/__init__.py +8 -0
- letta_client/types/dynamic_manager_update.py +33 -0
- letta_client/types/round_robin_manager_update.py +23 -0
- letta_client/types/sleeptime_manager_update.py +28 -0
- letta_client/types/supervisor_manager_update.py +23 -0
- {letta_client-0.1.105.dist-info → letta_client-0.1.106.dist-info}/METADATA +1 -1
- {letta_client-0.1.105.dist-info → letta_client-0.1.106.dist-info}/RECORD +12 -8
- {letta_client-0.1.105.dist-info → letta_client-0.1.106.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -81,6 +81,7 @@ from .types import (
|
|
|
81
81
|
CoreMemoryBlockSchema,
|
|
82
82
|
CreateBlock,
|
|
83
83
|
DynamicManager,
|
|
84
|
+
DynamicManagerUpdate,
|
|
84
85
|
E2BSandboxConfig,
|
|
85
86
|
EmbeddingConfig,
|
|
86
87
|
EmbeddingConfigEmbeddingEndpointType,
|
|
@@ -159,6 +160,7 @@ from .types import (
|
|
|
159
160
|
ResponseFormatJsonSchema,
|
|
160
161
|
ResponseFormatText,
|
|
161
162
|
RoundRobinManager,
|
|
163
|
+
RoundRobinManagerUpdate,
|
|
162
164
|
Run,
|
|
163
165
|
SandboxConfig,
|
|
164
166
|
SandboxConfigCreate,
|
|
@@ -170,11 +172,13 @@ from .types import (
|
|
|
170
172
|
SandboxEnvironmentVariableUpdate,
|
|
171
173
|
SandboxType,
|
|
172
174
|
SleeptimeManager,
|
|
175
|
+
SleeptimeManagerUpdate,
|
|
173
176
|
Source,
|
|
174
177
|
SseServerConfig,
|
|
175
178
|
StdioServerConfig,
|
|
176
179
|
Step,
|
|
177
180
|
SupervisorManager,
|
|
181
|
+
SupervisorManagerUpdate,
|
|
178
182
|
SystemMessage,
|
|
179
183
|
TagSchema,
|
|
180
184
|
TerminalToolRule,
|
|
@@ -351,6 +355,7 @@ __all__ = [
|
|
|
351
355
|
"CreateVoiceChatCompletionsRequestBody",
|
|
352
356
|
"DeleteMcpServerResponseItem",
|
|
353
357
|
"DynamicManager",
|
|
358
|
+
"DynamicManagerUpdate",
|
|
354
359
|
"E2BSandboxConfig",
|
|
355
360
|
"EmbeddingConfig",
|
|
356
361
|
"EmbeddingConfigEmbeddingEndpointType",
|
|
@@ -436,6 +441,7 @@ __all__ = [
|
|
|
436
441
|
"ResponseFormatJsonSchema",
|
|
437
442
|
"ResponseFormatText",
|
|
438
443
|
"RoundRobinManager",
|
|
444
|
+
"RoundRobinManagerUpdate",
|
|
439
445
|
"Run",
|
|
440
446
|
"SandboxConfig",
|
|
441
447
|
"SandboxConfigCreate",
|
|
@@ -447,11 +453,13 @@ __all__ = [
|
|
|
447
453
|
"SandboxEnvironmentVariableUpdate",
|
|
448
454
|
"SandboxType",
|
|
449
455
|
"SleeptimeManager",
|
|
456
|
+
"SleeptimeManagerUpdate",
|
|
450
457
|
"Source",
|
|
451
458
|
"SseServerConfig",
|
|
452
459
|
"StdioServerConfig",
|
|
453
460
|
"Step",
|
|
454
461
|
"SupervisorManager",
|
|
462
|
+
"SupervisorManagerUpdate",
|
|
455
463
|
"SystemMessage",
|
|
456
464
|
"TagSchema",
|
|
457
465
|
"TemplatesCreateAgentsResponse",
|
|
@@ -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.106",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
|
-
from ...types.
|
|
5
|
-
from ...types.
|
|
6
|
-
from ...types.
|
|
7
|
-
from ...types.
|
|
4
|
+
from ...types.dynamic_manager_update import DynamicManagerUpdate
|
|
5
|
+
from ...types.round_robin_manager_update import RoundRobinManagerUpdate
|
|
6
|
+
from ...types.sleeptime_manager_update import SleeptimeManagerUpdate
|
|
7
|
+
from ...types.supervisor_manager_update import SupervisorManagerUpdate
|
|
8
8
|
|
|
9
|
-
GroupUpdateManagerConfig = typing.Union[
|
|
9
|
+
GroupUpdateManagerConfig = typing.Union[
|
|
10
|
+
DynamicManagerUpdate, RoundRobinManagerUpdate, SleeptimeManagerUpdate, SupervisorManagerUpdate
|
|
11
|
+
]
|
|
@@ -526,6 +526,79 @@ class IdentitiesClient:
|
|
|
526
526
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
527
527
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
528
528
|
|
|
529
|
+
def upsert_identity_properties(
|
|
530
|
+
self,
|
|
531
|
+
identity_id: str,
|
|
532
|
+
*,
|
|
533
|
+
request: typing.Sequence[IdentityProperty],
|
|
534
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
535
|
+
) -> typing.Optional[typing.Any]:
|
|
536
|
+
"""
|
|
537
|
+
Parameters
|
|
538
|
+
----------
|
|
539
|
+
identity_id : str
|
|
540
|
+
|
|
541
|
+
request : typing.Sequence[IdentityProperty]
|
|
542
|
+
|
|
543
|
+
request_options : typing.Optional[RequestOptions]
|
|
544
|
+
Request-specific configuration.
|
|
545
|
+
|
|
546
|
+
Returns
|
|
547
|
+
-------
|
|
548
|
+
typing.Optional[typing.Any]
|
|
549
|
+
Successful Response
|
|
550
|
+
|
|
551
|
+
Examples
|
|
552
|
+
--------
|
|
553
|
+
from letta_client import IdentityProperty, Letta
|
|
554
|
+
|
|
555
|
+
client = Letta(
|
|
556
|
+
token="YOUR_TOKEN",
|
|
557
|
+
)
|
|
558
|
+
client.identities.upsert_identity_properties(
|
|
559
|
+
identity_id="identity_id",
|
|
560
|
+
request=[
|
|
561
|
+
IdentityProperty(
|
|
562
|
+
key="key",
|
|
563
|
+
value="value",
|
|
564
|
+
type="string",
|
|
565
|
+
)
|
|
566
|
+
],
|
|
567
|
+
)
|
|
568
|
+
"""
|
|
569
|
+
_response = self._client_wrapper.httpx_client.request(
|
|
570
|
+
f"v1/identities/{jsonable_encoder(identity_id)}/properties",
|
|
571
|
+
method="PUT",
|
|
572
|
+
json=convert_and_respect_annotation_metadata(
|
|
573
|
+
object_=request, annotation=typing.Sequence[IdentityProperty], direction="write"
|
|
574
|
+
),
|
|
575
|
+
request_options=request_options,
|
|
576
|
+
omit=OMIT,
|
|
577
|
+
)
|
|
578
|
+
try:
|
|
579
|
+
if 200 <= _response.status_code < 300:
|
|
580
|
+
return typing.cast(
|
|
581
|
+
typing.Optional[typing.Any],
|
|
582
|
+
construct_type(
|
|
583
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
584
|
+
object_=_response.json(),
|
|
585
|
+
),
|
|
586
|
+
)
|
|
587
|
+
if _response.status_code == 422:
|
|
588
|
+
raise UnprocessableEntityError(
|
|
589
|
+
typing.cast(
|
|
590
|
+
HttpValidationError,
|
|
591
|
+
construct_type(
|
|
592
|
+
type_=HttpValidationError, # type: ignore
|
|
593
|
+
object_=_response.json(),
|
|
594
|
+
),
|
|
595
|
+
)
|
|
596
|
+
)
|
|
597
|
+
_response_json = _response.json()
|
|
598
|
+
except JSONDecodeError:
|
|
599
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
600
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
601
|
+
|
|
529
602
|
|
|
530
603
|
class AsyncIdentitiesClient:
|
|
531
604
|
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
|
@@ -1081,3 +1154,84 @@ class AsyncIdentitiesClient:
|
|
|
1081
1154
|
except JSONDecodeError:
|
|
1082
1155
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1083
1156
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1157
|
+
|
|
1158
|
+
async def upsert_identity_properties(
|
|
1159
|
+
self,
|
|
1160
|
+
identity_id: str,
|
|
1161
|
+
*,
|
|
1162
|
+
request: typing.Sequence[IdentityProperty],
|
|
1163
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
1164
|
+
) -> typing.Optional[typing.Any]:
|
|
1165
|
+
"""
|
|
1166
|
+
Parameters
|
|
1167
|
+
----------
|
|
1168
|
+
identity_id : str
|
|
1169
|
+
|
|
1170
|
+
request : typing.Sequence[IdentityProperty]
|
|
1171
|
+
|
|
1172
|
+
request_options : typing.Optional[RequestOptions]
|
|
1173
|
+
Request-specific configuration.
|
|
1174
|
+
|
|
1175
|
+
Returns
|
|
1176
|
+
-------
|
|
1177
|
+
typing.Optional[typing.Any]
|
|
1178
|
+
Successful Response
|
|
1179
|
+
|
|
1180
|
+
Examples
|
|
1181
|
+
--------
|
|
1182
|
+
import asyncio
|
|
1183
|
+
|
|
1184
|
+
from letta_client import AsyncLetta, IdentityProperty
|
|
1185
|
+
|
|
1186
|
+
client = AsyncLetta(
|
|
1187
|
+
token="YOUR_TOKEN",
|
|
1188
|
+
)
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
async def main() -> None:
|
|
1192
|
+
await client.identities.upsert_identity_properties(
|
|
1193
|
+
identity_id="identity_id",
|
|
1194
|
+
request=[
|
|
1195
|
+
IdentityProperty(
|
|
1196
|
+
key="key",
|
|
1197
|
+
value="value",
|
|
1198
|
+
type="string",
|
|
1199
|
+
)
|
|
1200
|
+
],
|
|
1201
|
+
)
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
asyncio.run(main())
|
|
1205
|
+
"""
|
|
1206
|
+
_response = await self._client_wrapper.httpx_client.request(
|
|
1207
|
+
f"v1/identities/{jsonable_encoder(identity_id)}/properties",
|
|
1208
|
+
method="PUT",
|
|
1209
|
+
json=convert_and_respect_annotation_metadata(
|
|
1210
|
+
object_=request, annotation=typing.Sequence[IdentityProperty], direction="write"
|
|
1211
|
+
),
|
|
1212
|
+
request_options=request_options,
|
|
1213
|
+
omit=OMIT,
|
|
1214
|
+
)
|
|
1215
|
+
try:
|
|
1216
|
+
if 200 <= _response.status_code < 300:
|
|
1217
|
+
return typing.cast(
|
|
1218
|
+
typing.Optional[typing.Any],
|
|
1219
|
+
construct_type(
|
|
1220
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
1221
|
+
object_=_response.json(),
|
|
1222
|
+
),
|
|
1223
|
+
)
|
|
1224
|
+
if _response.status_code == 422:
|
|
1225
|
+
raise UnprocessableEntityError(
|
|
1226
|
+
typing.cast(
|
|
1227
|
+
HttpValidationError,
|
|
1228
|
+
construct_type(
|
|
1229
|
+
type_=HttpValidationError, # type: ignore
|
|
1230
|
+
object_=_response.json(),
|
|
1231
|
+
),
|
|
1232
|
+
)
|
|
1233
|
+
)
|
|
1234
|
+
_response_json = _response.json()
|
|
1235
|
+
except JSONDecodeError:
|
|
1236
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
1237
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
letta_client/types/__init__.py
CHANGED
|
@@ -80,6 +80,7 @@ from .continue_tool_rule import ContinueToolRule
|
|
|
80
80
|
from .core_memory_block_schema import CoreMemoryBlockSchema
|
|
81
81
|
from .create_block import CreateBlock
|
|
82
82
|
from .dynamic_manager import DynamicManager
|
|
83
|
+
from .dynamic_manager_update import DynamicManagerUpdate
|
|
83
84
|
from .e_2_b_sandbox_config import E2BSandboxConfig
|
|
84
85
|
from .embedding_config import EmbeddingConfig
|
|
85
86
|
from .embedding_config_embedding_endpoint_type import EmbeddingConfigEmbeddingEndpointType
|
|
@@ -162,6 +163,7 @@ from .response_format_json_object import ResponseFormatJsonObject
|
|
|
162
163
|
from .response_format_json_schema import ResponseFormatJsonSchema
|
|
163
164
|
from .response_format_text import ResponseFormatText
|
|
164
165
|
from .round_robin_manager import RoundRobinManager
|
|
166
|
+
from .round_robin_manager_update import RoundRobinManagerUpdate
|
|
165
167
|
from .run import Run
|
|
166
168
|
from .sandbox_config import SandboxConfig
|
|
167
169
|
from .sandbox_config_create import SandboxConfigCreate
|
|
@@ -173,11 +175,13 @@ from .sandbox_environment_variable_create import SandboxEnvironmentVariableCreat
|
|
|
173
175
|
from .sandbox_environment_variable_update import SandboxEnvironmentVariableUpdate
|
|
174
176
|
from .sandbox_type import SandboxType
|
|
175
177
|
from .sleeptime_manager import SleeptimeManager
|
|
178
|
+
from .sleeptime_manager_update import SleeptimeManagerUpdate
|
|
176
179
|
from .source import Source
|
|
177
180
|
from .sse_server_config import SseServerConfig
|
|
178
181
|
from .stdio_server_config import StdioServerConfig
|
|
179
182
|
from .step import Step
|
|
180
183
|
from .supervisor_manager import SupervisorManager
|
|
184
|
+
from .supervisor_manager_update import SupervisorManagerUpdate
|
|
181
185
|
from .system_message import SystemMessage
|
|
182
186
|
from .tag_schema import TagSchema
|
|
183
187
|
from .terminal_tool_rule import TerminalToolRule
|
|
@@ -298,6 +302,7 @@ __all__ = [
|
|
|
298
302
|
"CoreMemoryBlockSchema",
|
|
299
303
|
"CreateBlock",
|
|
300
304
|
"DynamicManager",
|
|
305
|
+
"DynamicManagerUpdate",
|
|
301
306
|
"E2BSandboxConfig",
|
|
302
307
|
"EmbeddingConfig",
|
|
303
308
|
"EmbeddingConfigEmbeddingEndpointType",
|
|
@@ -376,6 +381,7 @@ __all__ = [
|
|
|
376
381
|
"ResponseFormatJsonSchema",
|
|
377
382
|
"ResponseFormatText",
|
|
378
383
|
"RoundRobinManager",
|
|
384
|
+
"RoundRobinManagerUpdate",
|
|
379
385
|
"Run",
|
|
380
386
|
"SandboxConfig",
|
|
381
387
|
"SandboxConfigCreate",
|
|
@@ -387,11 +393,13 @@ __all__ = [
|
|
|
387
393
|
"SandboxEnvironmentVariableUpdate",
|
|
388
394
|
"SandboxType",
|
|
389
395
|
"SleeptimeManager",
|
|
396
|
+
"SleeptimeManagerUpdate",
|
|
390
397
|
"Source",
|
|
391
398
|
"SseServerConfig",
|
|
392
399
|
"StdioServerConfig",
|
|
393
400
|
"Step",
|
|
394
401
|
"SupervisorManager",
|
|
402
|
+
"SupervisorManagerUpdate",
|
|
395
403
|
"SystemMessage",
|
|
396
404
|
"TagSchema",
|
|
397
405
|
"TerminalToolRule",
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class DynamicManagerUpdate(UncheckedBaseModel):
|
|
10
|
+
manager_type: typing.Literal["dynamic"] = "dynamic"
|
|
11
|
+
manager_agent_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
termination_token: typing.Optional[str] = pydantic.Field(default=None)
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
max_turns: typing.Optional[int] = pydantic.Field(default=None)
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
if IS_PYDANTIC_V2:
|
|
27
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
28
|
+
else:
|
|
29
|
+
|
|
30
|
+
class Config:
|
|
31
|
+
frozen = True
|
|
32
|
+
smart_union = True
|
|
33
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class RoundRobinManagerUpdate(UncheckedBaseModel):
|
|
10
|
+
manager_type: typing.Literal["round_robin"] = "round_robin"
|
|
11
|
+
max_turns: typing.Optional[int] = pydantic.Field(default=None)
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
frozen = True
|
|
22
|
+
smart_union = True
|
|
23
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class SleeptimeManagerUpdate(UncheckedBaseModel):
|
|
10
|
+
manager_type: typing.Literal["sleeptime"] = "sleeptime"
|
|
11
|
+
manager_agent_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
sleeptime_agent_frequency: typing.Optional[int] = pydantic.Field(default=None)
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
if IS_PYDANTIC_V2:
|
|
22
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
23
|
+
else:
|
|
24
|
+
|
|
25
|
+
class Config:
|
|
26
|
+
frozen = True
|
|
27
|
+
smart_union = True
|
|
28
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class SupervisorManagerUpdate(UncheckedBaseModel):
|
|
10
|
+
manager_type: typing.Literal["supervisor"] = "supervisor"
|
|
11
|
+
manager_agent_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
frozen = True
|
|
22
|
+
smart_union = True
|
|
23
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=bGZlQv0CqE2Oxq5951TkUVOvrSUDy_eb75SltuinbSM,14545
|
|
2
2
|
letta_client/agents/__init__.py,sha256=CveigJGrnkw3yZ8S9yZ2DpK1HV0v1fU-khsiLJJ0uaU,1452
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=u5zvutxoH_DqfSLWhRtNSRBC9_ezQDx682cxkxDz3JA,23822
|
|
@@ -44,7 +44,7 @@ letta_client/blocks/client.py,sha256=LE9dsHaBxFLC3G035f0VpNDG7XKWRK8y9OXpeFCMvUw
|
|
|
44
44
|
letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
|
|
45
45
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
46
46
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
47
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
47
|
+
letta_client/core/client_wrapper.py,sha256=3t3okM0ph2_-fvNzK_QkuvD8OattdNIUKzTCotjjLlY,1998
|
|
48
48
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
49
49
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
50
50
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -71,11 +71,11 @@ letta_client/groups/messages/types/messages_modify_request.py,sha256=7C2X3BKye-Y
|
|
|
71
71
|
letta_client/groups/messages/types/messages_modify_response.py,sha256=THyiUMxZyzVSp0kk1s0XOLW1LUass7mXcfFER1PTLyw,671
|
|
72
72
|
letta_client/groups/types/__init__.py,sha256=qJDnHshh2Gj4Up09LcsHqoa9e0c7lOeSp63HMgWQ_hc,265
|
|
73
73
|
letta_client/groups/types/group_create_manager_config.py,sha256=-g4W8dUsNwyNFhG4Kyk9iF963rSnSKa9UHCvioyQdL4,417
|
|
74
|
-
letta_client/groups/types/group_update_manager_config.py,sha256=
|
|
74
|
+
letta_client/groups/types/group_update_manager_config.py,sha256=ZmSsb5UMolq-py0NEYFKmNCy6KGoSP8zPPFgkFz7UZ8,499
|
|
75
75
|
letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
76
76
|
letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
|
|
77
77
|
letta_client/identities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
78
|
-
letta_client/identities/client.py,sha256=
|
|
78
|
+
letta_client/identities/client.py,sha256=Kpeq7LqGxO5b08ovkXcbA03F39FxrZuBrL8x8HyYJjA,40778
|
|
79
79
|
letta_client/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
80
80
|
letta_client/jobs/client.py,sha256=z1Zq6dGs2xbf3EAFuD3-m-qbpbUeqpCBYqtIFKkGoMk,15622
|
|
81
81
|
letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -106,7 +106,7 @@ letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7gl
|
|
|
106
106
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=TWdsKqGb1INhYtpGnAckz0Pw4nZShumSp4pfocRfxCA,270
|
|
107
107
|
letta_client/tools/types/delete_mcp_server_response_item.py,sha256=MeZObU-7tMSCd-S5yuUjNDse6A1hUz1LLjbko0pXaro,273
|
|
108
108
|
letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
|
|
109
|
-
letta_client/types/__init__.py,sha256=
|
|
109
|
+
letta_client/types/__init__.py,sha256=KWRSA3nzC1T8RF8fz8PeU5b9K5mulHJfVy7gat_I6KQ,19588
|
|
110
110
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
111
111
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
112
112
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
@@ -187,6 +187,7 @@ letta_client/types/continue_tool_rule.py,sha256=AIKTGsQrJdSNsMCqdSqMqjKS7s610vDO
|
|
|
187
187
|
letta_client/types/core_memory_block_schema.py,sha256=DGHyLAcFhHBm7oXkhkGIkkckcl9S2bCaU9b3qrUeNtc,984
|
|
188
188
|
letta_client/types/create_block.py,sha256=V57mbqUkh5c-HcDxmIiFVr3tNfoqx-WJ1GRQZPobbxI,1277
|
|
189
189
|
letta_client/types/dynamic_manager.py,sha256=5DRNqtUnjeTwOe5mkNB-SXItqLOfEX0avSrwsrJt1Aw,853
|
|
190
|
+
letta_client/types/dynamic_manager_update.py,sha256=Kew94BsFP6vP9pUXpZDMFZAo3TyaYWKu1KPgoQQjKYg,888
|
|
190
191
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
191
192
|
letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
|
|
192
193
|
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21PkzsZR58g7FlIMReFU2yf0hAS5OyUsW6Q,559
|
|
@@ -265,6 +266,7 @@ letta_client/types/response_format_json_object.py,sha256=ZSWmwdN8itFr5q77mxuBhEW
|
|
|
265
266
|
letta_client/types/response_format_json_schema.py,sha256=7CgBQ9Lmst2oz_NoGr-1Sk-7Yq33BBhkqpRoKXh-qPo,675
|
|
266
267
|
letta_client/types/response_format_text.py,sha256=5HhXaYWDR0zeFLhH5nIqIN3n192UXrMZeSyORjIWFKQ,591
|
|
267
268
|
letta_client/types/round_robin_manager.py,sha256=zcPLc74VlpHPeIHJiEisF9Kn14mKwfQikUjK-DMR-_U,700
|
|
269
|
+
letta_client/types/round_robin_manager_update.py,sha256=EKdEbaXBWyzsiR1TApBkmvhyu_qEf89E0xbC550oyKw,706
|
|
268
270
|
letta_client/types/run.py,sha256=AgRWT05g4ar7Tid6TfjcfU6leLih8OXKU-mVm2VJV5c,2505
|
|
269
271
|
letta_client/types/sandbox_config.py,sha256=nvVdB0WnK_-bEHIehvBGiiD0hvujA93Ko4FuGMAJDdk,1550
|
|
270
272
|
letta_client/types/sandbox_config_create.py,sha256=eP3Bg9JsROEQEEXm9zo-AJb5QvinO1fQkbDhNcfAUt0,730
|
|
@@ -276,11 +278,13 @@ letta_client/types/sandbox_environment_variable_create.py,sha256=AhGE8ITStXkPOfP
|
|
|
276
278
|
letta_client/types/sandbox_environment_variable_update.py,sha256=JMkX6nzvcBNEemjvBmyHDezci3Bn7epKhMnvFY_--EA,948
|
|
277
279
|
letta_client/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
|
|
278
280
|
letta_client/types/sleeptime_manager.py,sha256=oKI3CCoA4guwktWs1bbPdCmv9jg94EeMvbXQWvzbt6M,778
|
|
281
|
+
letta_client/types/sleeptime_manager_update.py,sha256=JMzgtvGMDI5VBzlTuzm4FpuFAL7uwPbQgN9TYxip93s,813
|
|
279
282
|
letta_client/types/source.py,sha256=7tLptZ4AZrvRPF6NqToM4Vf9i7TosS2_Ydks4zfvZx4,2239
|
|
280
283
|
letta_client/types/sse_server_config.py,sha256=b-h5FLm5MELZ5A9bwZt-02Zx_f3UbfKAQS--yHQVOQU,844
|
|
281
284
|
letta_client/types/stdio_server_config.py,sha256=dEQ7bguiLikGemLxYZJ3JCmmEQgAMsSPO_P52oHZSl0,1091
|
|
282
285
|
letta_client/types/step.py,sha256=XE98vMiU34dgUxLPvmJLdp9iWFPjg6E2Pb8xNSURMMg,2988
|
|
283
286
|
letta_client/types/supervisor_manager.py,sha256=VdR1ySp4k43apxM8Bb5uNoBvADsvz8oMEEtDy2F5K6M,676
|
|
287
|
+
letta_client/types/supervisor_manager_update.py,sha256=UJ_TcWcF_PK152Gni0tgRCe3bthCgJbQHCZIb5LLsL0,711
|
|
284
288
|
letta_client/types/system_message.py,sha256=v4MneUcpWkZiU5imCjC9bBEHU2XPSPMdrUd-WD6wHb4,1218
|
|
285
289
|
letta_client/types/tag_schema.py,sha256=FEszKlRD2FqezKlX99OLqTqf46dONlcGPo1m43osdNo,553
|
|
286
290
|
letta_client/types/terminal_tool_rule.py,sha256=82a7AnohOqCFBSOt7OwsKeh7gHgq8KTlgojxlm3t76E,863
|
|
@@ -324,6 +328,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
|
|
|
324
328
|
letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
|
|
325
329
|
letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
|
|
326
330
|
letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
|
|
327
|
-
letta_client-0.1.
|
|
328
|
-
letta_client-0.1.
|
|
329
|
-
letta_client-0.1.
|
|
331
|
+
letta_client-0.1.106.dist-info/METADATA,sha256=EbF1CafVsTfIe9JBQsMVmOH29rS12YBbf3JXClS5hBk,5042
|
|
332
|
+
letta_client-0.1.106.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
333
|
+
letta_client-0.1.106.dist-info/RECORD,,
|
|
File without changes
|