letta-client 0.1.89__py3-none-any.whl → 0.1.91__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 CHANGED
@@ -19,6 +19,7 @@ from .types import (
19
19
  AuthRequest,
20
20
  AuthResponse,
21
21
  AuthSchemeField,
22
+ BackgroundManager,
22
23
  BaseToolRuleSchema,
23
24
  Block,
24
25
  BlockUpdate,
@@ -232,9 +233,10 @@ from . import (
232
233
  )
233
234
  from .agents import (
234
235
  AgentsSearchRequestSearchItem,
235
- AgentsSearchRequestSearchItemField,
236
236
  AgentsSearchRequestSearchItemOne,
237
237
  AgentsSearchRequestSearchItemOneOperator,
238
+ AgentsSearchRequestSearchItemOperator,
239
+ AgentsSearchRequestSearchItemTwo,
238
240
  AgentsSearchRequestSearchItemZero,
239
241
  AgentsSearchResponse,
240
242
  CreateAgentRequestToolRulesItem,
@@ -266,9 +268,10 @@ __all__ = [
266
268
  "AgentStateToolRulesItem",
267
269
  "AgentType",
268
270
  "AgentsSearchRequestSearchItem",
269
- "AgentsSearchRequestSearchItemField",
270
271
  "AgentsSearchRequestSearchItemOne",
271
272
  "AgentsSearchRequestSearchItemOneOperator",
273
+ "AgentsSearchRequestSearchItemOperator",
274
+ "AgentsSearchRequestSearchItemTwo",
272
275
  "AgentsSearchRequestSearchItemZero",
273
276
  "AgentsSearchResponse",
274
277
  "AppAuthScheme",
@@ -281,6 +284,7 @@ __all__ = [
281
284
  "AuthRequest",
282
285
  "AuthResponse",
283
286
  "AuthSchemeField",
287
+ "BackgroundManager",
284
288
  "BaseToolRuleSchema",
285
289
  "Block",
286
290
  "BlockUpdate",
@@ -2,9 +2,10 @@
2
2
 
3
3
  from .types import (
4
4
  AgentsSearchRequestSearchItem,
5
- AgentsSearchRequestSearchItemField,
6
5
  AgentsSearchRequestSearchItemOne,
7
6
  AgentsSearchRequestSearchItemOneOperator,
7
+ AgentsSearchRequestSearchItemOperator,
8
+ AgentsSearchRequestSearchItemTwo,
8
9
  AgentsSearchRequestSearchItemZero,
9
10
  AgentsSearchResponse,
10
11
  CreateAgentRequestToolRulesItem,
@@ -17,9 +18,10 @@ from .templates import TemplatesCreateResponse, TemplatesMigrateResponse
17
18
 
18
19
  __all__ = [
19
20
  "AgentsSearchRequestSearchItem",
20
- "AgentsSearchRequestSearchItemField",
21
21
  "AgentsSearchRequestSearchItemOne",
22
22
  "AgentsSearchRequestSearchItemOneOperator",
23
+ "AgentsSearchRequestSearchItemOperator",
24
+ "AgentsSearchRequestSearchItemTwo",
23
25
  "AgentsSearchRequestSearchItemZero",
24
26
  "AgentsSearchResponse",
25
27
  "CreateAgentRequestToolRulesItem",
@@ -231,6 +231,7 @@ class AgentsClient:
231
231
  base_template_id: typing.Optional[str] = OMIT,
232
232
  identity_ids: typing.Optional[typing.Sequence[str]] = OMIT,
233
233
  message_buffer_autoclear: typing.Optional[bool] = OMIT,
234
+ enable_sleeptime: typing.Optional[bool] = OMIT,
234
235
  request_options: typing.Optional[RequestOptions] = None,
235
236
  ) -> AgentState:
236
237
  """
@@ -345,6 +346,9 @@ class AgentsClient:
345
346
  message_buffer_autoclear : typing.Optional[bool]
346
347
  If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
347
348
 
349
+ enable_sleeptime : typing.Optional[bool]
350
+ If set to True, memory management will move to a background agent thread.
351
+
348
352
  request_options : typing.Optional[RequestOptions]
349
353
  Request-specific configuration.
350
354
 
@@ -411,6 +415,7 @@ class AgentsClient:
411
415
  "base_template_id": base_template_id,
412
416
  "identity_ids": identity_ids,
413
417
  "message_buffer_autoclear": message_buffer_autoclear,
418
+ "enable_sleeptime": enable_sleeptime,
414
419
  },
415
420
  headers={
416
421
  "content-type": "application/json",
@@ -721,6 +726,7 @@ class AgentsClient:
721
726
  message_buffer_autoclear: typing.Optional[bool] = OMIT,
722
727
  model: typing.Optional[str] = OMIT,
723
728
  embedding: typing.Optional[str] = OMIT,
729
+ enable_sleeptime: typing.Optional[bool] = OMIT,
724
730
  request_options: typing.Optional[RequestOptions] = None,
725
731
  ) -> AgentState:
726
732
  """
@@ -790,6 +796,9 @@ class AgentsClient:
790
796
  embedding : typing.Optional[str]
791
797
  The embedding configuration handle used by the agent, specified in the format provider/model-name.
792
798
 
799
+ enable_sleeptime : typing.Optional[bool]
800
+ If set to True, memory management will move to a background agent thread.
801
+
793
802
  request_options : typing.Optional[RequestOptions]
794
803
  Request-specific configuration.
795
804
 
@@ -839,6 +848,7 @@ class AgentsClient:
839
848
  "message_buffer_autoclear": message_buffer_autoclear,
840
849
  "model": model,
841
850
  "embedding": embedding,
851
+ "enable_sleeptime": enable_sleeptime,
842
852
  },
843
853
  headers={
844
854
  "content-type": "application/json",
@@ -1345,6 +1355,7 @@ class AsyncAgentsClient:
1345
1355
  base_template_id: typing.Optional[str] = OMIT,
1346
1356
  identity_ids: typing.Optional[typing.Sequence[str]] = OMIT,
1347
1357
  message_buffer_autoclear: typing.Optional[bool] = OMIT,
1358
+ enable_sleeptime: typing.Optional[bool] = OMIT,
1348
1359
  request_options: typing.Optional[RequestOptions] = None,
1349
1360
  ) -> AgentState:
1350
1361
  """
@@ -1459,6 +1470,9 @@ class AsyncAgentsClient:
1459
1470
  message_buffer_autoclear : typing.Optional[bool]
1460
1471
  If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
1461
1472
 
1473
+ enable_sleeptime : typing.Optional[bool]
1474
+ If set to True, memory management will move to a background agent thread.
1475
+
1462
1476
  request_options : typing.Optional[RequestOptions]
1463
1477
  Request-specific configuration.
1464
1478
 
@@ -1533,6 +1547,7 @@ class AsyncAgentsClient:
1533
1547
  "base_template_id": base_template_id,
1534
1548
  "identity_ids": identity_ids,
1535
1549
  "message_buffer_autoclear": message_buffer_autoclear,
1550
+ "enable_sleeptime": enable_sleeptime,
1536
1551
  },
1537
1552
  headers={
1538
1553
  "content-type": "application/json",
@@ -1875,6 +1890,7 @@ class AsyncAgentsClient:
1875
1890
  message_buffer_autoclear: typing.Optional[bool] = OMIT,
1876
1891
  model: typing.Optional[str] = OMIT,
1877
1892
  embedding: typing.Optional[str] = OMIT,
1893
+ enable_sleeptime: typing.Optional[bool] = OMIT,
1878
1894
  request_options: typing.Optional[RequestOptions] = None,
1879
1895
  ) -> AgentState:
1880
1896
  """
@@ -1944,6 +1960,9 @@ class AsyncAgentsClient:
1944
1960
  embedding : typing.Optional[str]
1945
1961
  The embedding configuration handle used by the agent, specified in the format provider/model-name.
1946
1962
 
1963
+ enable_sleeptime : typing.Optional[bool]
1964
+ If set to True, memory management will move to a background agent thread.
1965
+
1947
1966
  request_options : typing.Optional[RequestOptions]
1948
1967
  Request-specific configuration.
1949
1968
 
@@ -2001,6 +2020,7 @@ class AsyncAgentsClient:
2001
2020
  "message_buffer_autoclear": message_buffer_autoclear,
2002
2021
  "model": model,
2003
2022
  "embedding": embedding,
2023
+ "enable_sleeptime": enable_sleeptime,
2004
2024
  },
2005
2025
  headers={
2006
2026
  "content-type": "application/json",
@@ -1,9 +1,10 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  from .agents_search_request_search_item import AgentsSearchRequestSearchItem
4
- from .agents_search_request_search_item_field import AgentsSearchRequestSearchItemField
5
4
  from .agents_search_request_search_item_one import AgentsSearchRequestSearchItemOne
6
5
  from .agents_search_request_search_item_one_operator import AgentsSearchRequestSearchItemOneOperator
6
+ from .agents_search_request_search_item_operator import AgentsSearchRequestSearchItemOperator
7
+ from .agents_search_request_search_item_two import AgentsSearchRequestSearchItemTwo
7
8
  from .agents_search_request_search_item_zero import AgentsSearchRequestSearchItemZero
8
9
  from .agents_search_response import AgentsSearchResponse
9
10
  from .create_agent_request_tool_rules_item import CreateAgentRequestToolRulesItem
@@ -11,9 +12,10 @@ from .update_agent_tool_rules_item import UpdateAgentToolRulesItem
11
12
 
12
13
  __all__ = [
13
14
  "AgentsSearchRequestSearchItem",
14
- "AgentsSearchRequestSearchItemField",
15
15
  "AgentsSearchRequestSearchItemOne",
16
16
  "AgentsSearchRequestSearchItemOneOperator",
17
+ "AgentsSearchRequestSearchItemOperator",
18
+ "AgentsSearchRequestSearchItemTwo",
17
19
  "AgentsSearchRequestSearchItemZero",
18
20
  "AgentsSearchResponse",
19
21
  "CreateAgentRequestToolRulesItem",
@@ -3,8 +3,12 @@
3
3
  import typing
4
4
  from .agents_search_request_search_item_zero import AgentsSearchRequestSearchItemZero
5
5
  from .agents_search_request_search_item_one import AgentsSearchRequestSearchItemOne
6
- from .agents_search_request_search_item_field import AgentsSearchRequestSearchItemField
6
+ from .agents_search_request_search_item_two import AgentsSearchRequestSearchItemTwo
7
+ from .agents_search_request_search_item_operator import AgentsSearchRequestSearchItemOperator
7
8
 
8
9
  AgentsSearchRequestSearchItem = typing.Union[
9
- AgentsSearchRequestSearchItemZero, AgentsSearchRequestSearchItemOne, AgentsSearchRequestSearchItemField
10
+ AgentsSearchRequestSearchItemZero,
11
+ AgentsSearchRequestSearchItemOne,
12
+ AgentsSearchRequestSearchItemTwo,
13
+ AgentsSearchRequestSearchItemOperator,
10
14
  ]
@@ -0,0 +1,21 @@
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
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
6
+ import pydantic
7
+
8
+
9
+ class AgentsSearchRequestSearchItemOperator(UncheckedBaseModel):
10
+ field: typing.Literal["identity"] = "identity"
11
+ operator: typing.Literal["eq"] = "eq"
12
+ value: str
13
+
14
+ if IS_PYDANTIC_V2:
15
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
16
+ else:
17
+
18
+ class Config:
19
+ frozen = True
20
+ smart_union = True
21
+ extra = pydantic.Extra.allow
@@ -6,7 +6,7 @@ from ...core.pydantic_utilities import IS_PYDANTIC_V2
6
6
  import pydantic
7
7
 
8
8
 
9
- class AgentsSearchRequestSearchItemField(UncheckedBaseModel):
9
+ class AgentsSearchRequestSearchItemTwo(UncheckedBaseModel):
10
10
  field: typing.Literal["tags"] = "tags"
11
11
  operator: typing.Literal["contains"] = "contains"
12
12
  value: typing.List[str]
@@ -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.89",
19
+ "X-Fern-SDK-Version": "0.1.91",
20
20
  }
21
21
  if self.token is not None:
22
22
  headers["Authorization"] = f"Bearer {self.token}"
@@ -117,6 +117,7 @@ class GroupsClient:
117
117
  description: str,
118
118
  project: typing.Optional[str] = None,
119
119
  manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
120
+ shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
120
121
  request_options: typing.Optional[RequestOptions] = None,
121
122
  ) -> Group:
122
123
  """
@@ -135,6 +136,9 @@ class GroupsClient:
135
136
  manager_config : typing.Optional[GroupCreateManagerConfig]
136
137
 
137
138
 
139
+ shared_block_ids : typing.Optional[typing.Sequence[str]]
140
+
141
+
138
142
  request_options : typing.Optional[RequestOptions]
139
143
  Request-specific configuration.
140
144
 
@@ -164,6 +168,7 @@ class GroupsClient:
164
168
  "manager_config": convert_and_respect_annotation_metadata(
165
169
  object_=manager_config, annotation=GroupCreateManagerConfig, direction="write"
166
170
  ),
171
+ "shared_block_ids": shared_block_ids,
167
172
  },
168
173
  headers={
169
174
  "content-type": "application/json",
@@ -260,6 +265,7 @@ class GroupsClient:
260
265
  agent_ids: typing.Optional[typing.Sequence[str]] = OMIT,
261
266
  description: typing.Optional[str] = OMIT,
262
267
  manager_config: typing.Optional[GroupUpdateManagerConfig] = OMIT,
268
+ shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
263
269
  request_options: typing.Optional[RequestOptions] = None,
264
270
  ) -> Group:
265
271
  """
@@ -280,6 +286,9 @@ class GroupsClient:
280
286
  manager_config : typing.Optional[GroupUpdateManagerConfig]
281
287
 
282
288
 
289
+ shared_block_ids : typing.Optional[typing.Sequence[str]]
290
+
291
+
283
292
  request_options : typing.Optional[RequestOptions]
284
293
  Request-specific configuration.
285
294
 
@@ -308,6 +317,7 @@ class GroupsClient:
308
317
  "manager_config": convert_and_respect_annotation_metadata(
309
318
  object_=manager_config, annotation=GroupUpdateManagerConfig, direction="write"
310
319
  ),
320
+ "shared_block_ids": shared_block_ids,
311
321
  },
312
322
  headers={
313
323
  "content-type": "application/json",
@@ -597,6 +607,7 @@ class AsyncGroupsClient:
597
607
  description: str,
598
608
  project: typing.Optional[str] = None,
599
609
  manager_config: typing.Optional[GroupCreateManagerConfig] = OMIT,
610
+ shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
600
611
  request_options: typing.Optional[RequestOptions] = None,
601
612
  ) -> Group:
602
613
  """
@@ -615,6 +626,9 @@ class AsyncGroupsClient:
615
626
  manager_config : typing.Optional[GroupCreateManagerConfig]
616
627
 
617
628
 
629
+ shared_block_ids : typing.Optional[typing.Sequence[str]]
630
+
631
+
618
632
  request_options : typing.Optional[RequestOptions]
619
633
  Request-specific configuration.
620
634
 
@@ -652,6 +666,7 @@ class AsyncGroupsClient:
652
666
  "manager_config": convert_and_respect_annotation_metadata(
653
667
  object_=manager_config, annotation=GroupCreateManagerConfig, direction="write"
654
668
  ),
669
+ "shared_block_ids": shared_block_ids,
655
670
  },
656
671
  headers={
657
672
  "content-type": "application/json",
@@ -756,6 +771,7 @@ class AsyncGroupsClient:
756
771
  agent_ids: typing.Optional[typing.Sequence[str]] = OMIT,
757
772
  description: typing.Optional[str] = OMIT,
758
773
  manager_config: typing.Optional[GroupUpdateManagerConfig] = OMIT,
774
+ shared_block_ids: typing.Optional[typing.Sequence[str]] = OMIT,
759
775
  request_options: typing.Optional[RequestOptions] = None,
760
776
  ) -> Group:
761
777
  """
@@ -776,6 +792,9 @@ class AsyncGroupsClient:
776
792
  manager_config : typing.Optional[GroupUpdateManagerConfig]
777
793
 
778
794
 
795
+ shared_block_ids : typing.Optional[typing.Sequence[str]]
796
+
797
+
779
798
  request_options : typing.Optional[RequestOptions]
780
799
  Request-specific configuration.
781
800
 
@@ -812,6 +831,7 @@ class AsyncGroupsClient:
812
831
  "manager_config": convert_and_respect_annotation_metadata(
813
832
  object_=manager_config, annotation=GroupUpdateManagerConfig, direction="write"
814
833
  ),
834
+ "shared_block_ids": shared_block_ids,
815
835
  },
816
836
  headers={
817
837
  "content-type": "application/json",
@@ -1,8 +1,9 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  import typing
4
+ from ...types.background_manager import BackgroundManager
4
5
  from ...types.dynamic_manager import DynamicManager
5
6
  from ...types.round_robin_manager import RoundRobinManager
6
7
  from ...types.supervisor_manager import SupervisorManager
7
8
 
8
- GroupCreateManagerConfig = typing.Union[DynamicManager, RoundRobinManager, SupervisorManager]
9
+ GroupCreateManagerConfig = typing.Union[BackgroundManager, DynamicManager, RoundRobinManager, SupervisorManager]
@@ -1,8 +1,9 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  import typing
4
+ from ...types.background_manager import BackgroundManager
4
5
  from ...types.dynamic_manager import DynamicManager
5
6
  from ...types.round_robin_manager import RoundRobinManager
6
7
  from ...types.supervisor_manager import SupervisorManager
7
8
 
8
- GroupUpdateManagerConfig = typing.Union[DynamicManager, RoundRobinManager, SupervisorManager]
9
+ GroupUpdateManagerConfig = typing.Union[BackgroundManager, DynamicManager, RoundRobinManager, SupervisorManager]
@@ -18,6 +18,7 @@ from .audio import Audio
18
18
  from .auth_request import AuthRequest
19
19
  from .auth_response import AuthResponse
20
20
  from .auth_scheme_field import AuthSchemeField
21
+ from .background_manager import BackgroundManager
21
22
  from .base_tool_rule_schema import BaseToolRuleSchema
22
23
  from .block import Block
23
24
  from .block_update import BlockUpdate
@@ -234,6 +235,7 @@ __all__ = [
234
235
  "AuthRequest",
235
236
  "AuthResponse",
236
237
  "AuthSchemeField",
238
+ "BackgroundManager",
237
239
  "BaseToolRuleSchema",
238
240
  "Block",
239
241
  "BlockUpdate",
@@ -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 BackgroundManager(UncheckedBaseModel):
10
+ manager_type: typing.Literal["background"] = "background"
11
+ manager_agent_id: str = pydantic.Field()
12
+ """
13
+
14
+ """
15
+
16
+ background_agents_interval: 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
@@ -28,6 +28,11 @@ class Group(UncheckedBaseModel):
28
28
 
29
29
  """
30
30
 
31
+ shared_block_ids: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
32
+ """
33
+
34
+ """
35
+
31
36
  manager_agent_id: typing.Optional[str] = pydantic.Field(default=None)
32
37
  """
33
38
 
@@ -43,6 +48,21 @@ class Group(UncheckedBaseModel):
43
48
 
44
49
  """
45
50
 
51
+ background_agents_interval: typing.Optional[int] = pydantic.Field(default=None)
52
+ """
53
+
54
+ """
55
+
56
+ turns_counter: typing.Optional[int] = pydantic.Field(default=None)
57
+ """
58
+
59
+ """
60
+
61
+ last_processed_message_id: typing.Optional[str] = pydantic.Field(default=None)
62
+ """
63
+
64
+ """
65
+
46
66
  if IS_PYDANTIC_V2:
47
67
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
48
68
  else:
@@ -44,6 +44,11 @@ class LettaUsageStatistics(UncheckedBaseModel):
44
44
  The messages generated per step
45
45
  """
46
46
 
47
+ run_ids: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
48
+ """
49
+ The background task run IDs associated with the agent interaction
50
+ """
51
+
47
52
  if IS_PYDANTIC_V2:
48
53
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
49
54
  else:
@@ -2,4 +2,4 @@
2
2
 
3
3
  import typing
4
4
 
5
- ManagerType = typing.Union[typing.Literal["round_robin", "supervisor", "dynamic", "swarm"], typing.Any]
5
+ ManagerType = typing.Union[typing.Literal["round_robin", "supervisor", "dynamic", "background", "swarm"], typing.Any]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.89
3
+ Version: 0.1.91
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,8 +1,8 @@
1
- letta_client/__init__.py,sha256=RhQACXzOrOGRWVdB_WPJzQs5jK5bRwX8vgN6vIc66Xc,14141
2
- letta_client/agents/__init__.py,sha256=z2Vc_98ykZph42CfDGxvMpvijMvX-3a58YXvpY-wiIA,1368
1
+ letta_client/__init__.py,sha256=QOCi_TZw9n2xd2R32yJ3SuYApK069gfGzIy1LQctwf0,14273
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
5
- letta_client/agents/client.py,sha256=G8Z4Mcf_lcJE6jHrl61XCxTqGR91p9m48qZxaea4IY8,87762
5
+ letta_client/agents/client.py,sha256=8JZbM5cqU53AyrLeYh6wo7gnxfvC3hNE8KUv1Y-HLEw,88746
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
@@ -28,11 +28,12 @@ letta_client/agents/templates/types/templates_create_response.py,sha256=kKjkyjv3
28
28
  letta_client/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
29
29
  letta_client/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
30
30
  letta_client/agents/tools/client.py,sha256=xZMRZhG8mI_h8_QqgI4lXh3FieRCLeoPwdtB56GB-XU,12685
31
- letta_client/agents/types/__init__.py,sha256=5mySifl5HhcplqOwjGkE7ez2XvxrC6ermkGLsZi1qq4,1029
32
- letta_client/agents/types/agents_search_request_search_item.py,sha256=9wZPvTP5ESFOhdF9YqdYwv4h_fEFF9TWbGtDO9xkrzA,494
33
- letta_client/agents/types/agents_search_request_search_item_field.py,sha256=06cbjgIRD2GL7Ck7ZYxLVNbrKP9HLHNOCi9DSPspATQ,692
31
+ letta_client/agents/types/__init__.py,sha256=URUe7XctjmDd74tAc-UkDhhICL0rS1tqBlR4t4wHoJo,1162
32
+ letta_client/agents/types/agents_search_request_search_item.py,sha256=oIWRth_5r-3Fd_rROsEsc7XIvC0yRYv4BxdPKuUl6CI,634
34
33
  letta_client/agents/types/agents_search_request_search_item_one.py,sha256=ECWv-hDZen6AomM01zmRsOz0PlXVEwIwLHjid9yko9o,779
35
34
  letta_client/agents/types/agents_search_request_search_item_one_operator.py,sha256=S1qYdfdUqUgZ0DzQ53x7GN_qa_4NypO7-qNkkxgsbQc,182
35
+ letta_client/agents/types/agents_search_request_search_item_operator.py,sha256=q9wNF1ubm5zw8_tykL4JWPEOH7SFLYLeTikjAszpZq8,678
36
+ letta_client/agents/types/agents_search_request_search_item_two.py,sha256=YBC-rhz_ToN948VyRy5VB1yT4JqtYcLD_V9hNrkgnfQ,690
36
37
  letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=tGjwnFqSofFMBSAogmPLEflDQZ2rMqoMfFUtaIpND18,630
37
38
  letta_client/agents/types/agents_search_response.py,sha256=AQJVKps-bjCx2ujqESzW1Iy9ZYFS17hH_UFIeBeK4S8,815
38
39
  letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=P5vANIz2x0rWUAqHIgbXNA03fuTtJ8sWYimldw3NEnI,595
@@ -43,7 +44,7 @@ letta_client/blocks/client.py,sha256=LE9dsHaBxFLC3G035f0VpNDG7XKWRK8y9OXpeFCMvUw
43
44
  letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
44
45
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
45
46
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
46
- letta_client/core/client_wrapper.py,sha256=2KBT00NTqFrHU_heBq8_Znlrpxcjldot2_NGRUIwbLE,1997
47
+ letta_client/core/client_wrapper.py,sha256=9fSsiGOVoUwvW7nck7jHoMfi0Sryokq1QNOJXOo0idM,1997
47
48
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
48
49
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
49
50
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -61,7 +62,7 @@ letta_client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXv
61
62
  letta_client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
62
63
  letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
63
64
  letta_client/groups/__init__.py,sha256=WzkNp5Q_5zQj_NHv4hJCOKvW6ftM9EuNxw8hkPRRbko,434
64
- letta_client/groups/client.py,sha256=kzQqvfpElNtrJPewgyCXOIJhL1e1mv-_nkLznr8StX4,31989
65
+ letta_client/groups/client.py,sha256=xLzVug9u7wKJh0sfQln9Ybi58q__G97mJ8u_LE2z0r8,32761
65
66
  letta_client/groups/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
66
67
  letta_client/groups/messages/client.py,sha256=qI2l8wT_qZ1Ou_ZweOjduTKcLbpbpMg1P0s4lfnWXlE,29644
67
68
  letta_client/groups/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
@@ -69,8 +70,8 @@ letta_client/groups/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1
69
70
  letta_client/groups/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
70
71
  letta_client/groups/messages/types/messages_modify_response.py,sha256=THyiUMxZyzVSp0kk1s0XOLW1LUass7mXcfFER1PTLyw,671
71
72
  letta_client/groups/types/__init__.py,sha256=qJDnHshh2Gj4Up09LcsHqoa9e0c7lOeSp63HMgWQ_hc,265
72
- letta_client/groups/types/group_create_manager_config.py,sha256=CdDDUbueELMVKKSznlYSCJcHG2LmW-nl4--cNFusiMg,343
73
- letta_client/groups/types/group_update_manager_config.py,sha256=VZhxqGMKReDDdIcWMkl9SPD0rDAyd8VNFd_pD21wwKc,343
73
+ letta_client/groups/types/group_create_manager_config.py,sha256=agQuvoZpRq1BwLty_lUVNm3RYhUj5c3ivURat71M69k,420
74
+ letta_client/groups/types/group_update_manager_config.py,sha256=9QuvWtCeHkVsT5y4hgckNj59NR2UtY6XvSrtahkNWqk,420
74
75
  letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
75
76
  letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
76
77
  letta_client/identities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -105,7 +106,7 @@ letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7gl
105
106
  letta_client/tools/types/add_mcp_server_response_item.py,sha256=TWdsKqGb1INhYtpGnAckz0Pw4nZShumSp4pfocRfxCA,270
106
107
  letta_client/tools/types/delete_mcp_server_response_item.py,sha256=MeZObU-7tMSCd-S5yuUjNDse6A1hUz1LLjbko0pXaro,273
107
108
  letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
108
- letta_client/types/__init__.py,sha256=y-8duQ7tqsDkSw5WPwvBjLWraddgONRSUPss6veCGr4,19084
109
+ letta_client/types/__init__.py,sha256=ewKCVdbxNwx_oCgbXd6a4EBc1pDcJaEU2IPhadKwEE8,19159
109
110
  letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
110
111
  letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
111
112
  letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
@@ -124,6 +125,7 @@ letta_client/types/audio.py,sha256=aCgzL9SmkmM4yU7hy2IWwPrC-wtllplo3dQF9mjk7Fg,5
124
125
  letta_client/types/auth_request.py,sha256=q63VMj39aCmljDuzUeAClXEqyaoa_HKv5IraSv8ry9M,683
125
126
  letta_client/types/auth_response.py,sha256=jtG9Nn0voJcOWkBtvnuGGwhpUhYz9A8O7soOJZo_E_E,861
126
127
  letta_client/types/auth_scheme_field.py,sha256=W4-qgKtKUSpBHaSvjLyzLybOIsGo7Ggk4VECpsoPnqQ,881
128
+ letta_client/types/background_manager.py,sha256=sE8rj68G7PG4BV4d-Az5YDh7rke21uhp62v9T4CSGjQ,782
127
129
  letta_client/types/base_tool_rule_schema.py,sha256=FbnJy6gb8wY_DPiU3Gs-u1Ol_l4K7-nAmPTc1oR3kOo,582
128
130
  letta_client/types/block.py,sha256=J8McqSpellhd-KsPYontU8DYg3YV41_fQW5rR-85qMk,2900
129
131
  letta_client/types/block_update.py,sha256=oIgxvSnav5vxztBdslRMiWOgRaAp3dh43pinZpoLzxk,1496
@@ -197,7 +199,7 @@ letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBV
197
199
  letta_client/types/function_definition_output.py,sha256=Id0SzyiMHF5l25iKQhCN4sWJwBJ7AkYK-I5RDZy3_rc,741
198
200
  letta_client/types/function_output.py,sha256=7b8550BllXxtZQ3T3jfvZjcCU_ZGWNBvjlrMB8S2xas,578
199
201
  letta_client/types/function_tool.py,sha256=TOETpZdqgPIgd4g9JFo3yvDBpTx4lDFzJNZH8PxAjpI,697
200
- letta_client/types/group.py,sha256=Y8iaGI08uSt99AE0GkiGV95YB5ywiAZOWd0jXojgwqU,1160
202
+ letta_client/types/group.py,sha256=_y8hT2W7QSlbAYj4HKC36hoZ0g60I_p-WxzH2XP0B5o,1573
201
203
  letta_client/types/health.py,sha256=nQwx5ysn_cJMKUoqsfaPcGNSRSjfwX5S272UiSQJ03w,618
202
204
  letta_client/types/hidden_reasoning_message.py,sha256=2ExD6XKtWsMQQQCiZcyAGr-Tzgk-i3L663lT3p778pc,1447
203
205
  letta_client/types/hidden_reasoning_message_state.py,sha256=qotAgF_P4T7OEHzbhGDVFaLZYOs1ULMPVHmiFvoRIfM,174
@@ -224,11 +226,11 @@ letta_client/types/letta_request.py,sha256=bCPDRJhSJSo5eILJp0mTw_k26O3dZL1vChfAc
224
226
  letta_client/types/letta_request_config.py,sha256=b6K4QtDdHjcZKfBb1fugUuoPrT2N4d5TTB0PIRNI2SU,1085
225
227
  letta_client/types/letta_response.py,sha256=i5gAUTgWzIst_RP8I_zSh0GSnLIS3z--1BmK6EF1mkQ,1315
226
228
  letta_client/types/letta_streaming_request.py,sha256=jm0HLzfzWzIRs8uwtX33V5f5Ljw_hFOKOhPjdIZX9cA,1465
227
- letta_client/types/letta_usage_statistics.py,sha256=pdlEk_GYVTiDUgW0ZePOdyrJZ6zoSCGEgm_gM3B1wr8,1721
229
+ letta_client/types/letta_usage_statistics.py,sha256=k6V72J2TEPd-RQBuUQxF3oylrAMcuSKBskd2nnZmGOw,1886
228
230
  letta_client/types/llm_config.py,sha256=cycdnu-lgQsLsFmFQrc9S_O20snEdxRLcvwWwLMFnik,3441
229
231
  letta_client/types/llm_config_model_endpoint_type.py,sha256=HOSM5kIZDCNAVCWmASvAk52K819plqGlD66yKQ1xFkI,620
230
232
  letta_client/types/local_sandbox_config.py,sha256=jfe7akG_YrJJ8csLaLdev04Zg1x-PTN0XCAL4KifaZI,1387
231
- letta_client/types/manager_type.py,sha256=hV271989JpEhJQH02MzLpJ34EsbGnyMlckbz2TXBc-E,184
233
+ letta_client/types/manager_type.py,sha256=twOcUEtFo-S3g8nPC9KqyD_AWmES1BOVb5RNxjDNWPE,198
232
234
  letta_client/types/max_count_per_step_tool_rule.py,sha256=sUhnoL1jolz2sygrmCuF4KfaDUGlBui-FGCXR5762Nc,1056
233
235
  letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk7cBQ3gVCUy-MPWvE_tNXV5Fz0VTs,618
234
236
  letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
@@ -321,6 +323,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
321
323
  letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
322
324
  letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
323
325
  letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
324
- letta_client-0.1.89.dist-info/METADATA,sha256=WGdfcTzIxTLIGliPi3xjstr6hvljH8--DsIfSAIAPwA,5041
325
- letta_client-0.1.89.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
326
- letta_client-0.1.89.dist-info/RECORD,,
326
+ letta_client-0.1.91.dist-info/METADATA,sha256=y1kSo9I24Bz0MLIm-UXXm2QSlnwTuSf5eFCKNt7D8Po,5041
327
+ letta_client-0.1.91.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
328
+ letta_client-0.1.91.dist-info/RECORD,,