letta-client 0.1.90__py3-none-any.whl → 0.1.92__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,
@@ -283,6 +284,7 @@ __all__ = [
283
284
  "AuthRequest",
284
285
  "AuthResponse",
285
286
  "AuthSchemeField",
287
+ "BackgroundManager",
286
288
  "BaseToolRuleSchema",
287
289
  "Block",
288
290
  "BlockUpdate",
@@ -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",
@@ -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.90",
19
+ "X-Fern-SDK-Version": "0.1.92",
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",
@@ -154,6 +154,11 @@ class AgentState(UncheckedBaseModel):
154
154
  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.
155
155
  """
156
156
 
157
+ enable_sleeptime: typing.Optional[bool] = pydantic.Field(default=None)
158
+ """
159
+ If set to True, memory management will move to a background agent thread.
160
+ """
161
+
157
162
  multi_agent_group: typing.Optional[Group] = pydantic.Field(default=None)
158
163
  """
159
164
  The multi-agent group that this agent manages
@@ -2,4 +2,4 @@
2
2
 
3
3
  import typing
4
4
 
5
- AgentType = typing.Union[typing.Literal["memgpt_agent", "split_thread_agent", "offline_memory_agent"], typing.Any]
5
+ AgentType = typing.Union[typing.Literal["memgpt_agent", "split_thread_agent", "sleeptime_agent"], typing.Any]
@@ -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_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
@@ -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_frequency: 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]
@@ -8,6 +8,7 @@ ToolType = typing.Union[
8
8
  "letta_core",
9
9
  "letta_memory_core",
10
10
  "letta_multi_agent_core",
11
+ "letta_sleeptime_core",
11
12
  "external_composio",
12
13
  "external_langchain",
13
14
  "external_mcp",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.90
3
+ Version: 0.1.92
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=var51dx76JpVJpCY-lKYaFYc9SSyZuffXE6EhBVxPWg,14225
1
+ letta_client/__init__.py,sha256=QOCi_TZw9n2xd2R32yJ3SuYApK069gfGzIy1LQctwf0,14273
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
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
@@ -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=F62OPMr7yRy5R7lkIcXug85KDvEEvEbt7x96fwQkhoM,1997
47
+ letta_client/core/client_wrapper.py,sha256=IeXRTbZ07VZwNB6ZAHujmVT-m6upBKYQHCqV_0lkyYE,1997
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
@@ -62,7 +62,7 @@ letta_client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXv
62
62
  letta_client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
63
63
  letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
64
64
  letta_client/groups/__init__.py,sha256=WzkNp5Q_5zQj_NHv4hJCOKvW6ftM9EuNxw8hkPRRbko,434
65
- letta_client/groups/client.py,sha256=kzQqvfpElNtrJPewgyCXOIJhL1e1mv-_nkLznr8StX4,31989
65
+ letta_client/groups/client.py,sha256=xLzVug9u7wKJh0sfQln9Ybi58q__G97mJ8u_LE2z0r8,32761
66
66
  letta_client/groups/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
67
67
  letta_client/groups/messages/client.py,sha256=qI2l8wT_qZ1Ou_ZweOjduTKcLbpbpMg1P0s4lfnWXlE,29644
68
68
  letta_client/groups/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
@@ -70,8 +70,8 @@ letta_client/groups/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1
70
70
  letta_client/groups/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
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
- letta_client/groups/types/group_create_manager_config.py,sha256=CdDDUbueELMVKKSznlYSCJcHG2LmW-nl4--cNFusiMg,343
74
- 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
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
@@ -106,16 +106,16 @@ 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=y-8duQ7tqsDkSw5WPwvBjLWraddgONRSUPss6veCGr4,19084
109
+ letta_client/types/__init__.py,sha256=ewKCVdbxNwx_oCgbXd6a4EBc1pDcJaEU2IPhadKwEE8,19159
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
113
113
  letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
114
114
  letta_client/types/agent_schema.py,sha256=uTSjFAsnEYdOX-PRD2vHbn69JBe8GKbctvlDOP85k_U,1784
115
115
  letta_client/types/agent_schema_tool_rules_item.py,sha256=TTP7uKYPSe-EAl4p03j0Kd-W9tG5T6gfaWIUBAOVv9U,482
116
- letta_client/types/agent_state.py,sha256=hogE7T9E56HzOycCGuv-jmPVsmcA3w7sGsoMnWMW3IY,5196
116
+ letta_client/types/agent_state.py,sha256=8HlqbdcES-fgdk_rRCoStUoeJo0AWH0L1Vkri8IHpLc,5366
117
117
  letta_client/types/agent_state_tool_rules_item.py,sha256=jrcYmhULwLq704i85rCxW2GJLdz8XnBK0HxBLSkgs6k,539
118
- letta_client/types/agent_type.py,sha256=BvztKbFTW_Acvc3QPIvzK7JGwSLie1V407byu-VZHz0,195
118
+ letta_client/types/agent_type.py,sha256=ywCn-ii7Xu0-N1tkK7oQaONlx42wcTVB-8oP71fNbw0,190
119
119
  letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
120
120
  letta_client/types/app_auth_scheme_auth_mode.py,sha256=KfJ8AQVxlvWo2DgDGak9yXtx5F2lvRULB2KVGy2aSJo,412
121
121
  letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
@@ -125,6 +125,7 @@ letta_client/types/audio.py,sha256=aCgzL9SmkmM4yU7hy2IWwPrC-wtllplo3dQF9mjk7Fg,5
125
125
  letta_client/types/auth_request.py,sha256=q63VMj39aCmljDuzUeAClXEqyaoa_HKv5IraSv8ry9M,683
126
126
  letta_client/types/auth_response.py,sha256=jtG9Nn0voJcOWkBtvnuGGwhpUhYz9A8O7soOJZo_E_E,861
127
127
  letta_client/types/auth_scheme_field.py,sha256=W4-qgKtKUSpBHaSvjLyzLybOIsGo7Ggk4VECpsoPnqQ,881
128
+ letta_client/types/background_manager.py,sha256=k7LVJybfUNbcFYpNUDTtQmhWfvx5iCfgTm3rcchOtL0,783
128
129
  letta_client/types/base_tool_rule_schema.py,sha256=FbnJy6gb8wY_DPiU3Gs-u1Ol_l4K7-nAmPTc1oR3kOo,582
129
130
  letta_client/types/block.py,sha256=J8McqSpellhd-KsPYontU8DYg3YV41_fQW5rR-85qMk,2900
130
131
  letta_client/types/block_update.py,sha256=oIgxvSnav5vxztBdslRMiWOgRaAp3dh43pinZpoLzxk,1496
@@ -198,7 +199,7 @@ letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBV
198
199
  letta_client/types/function_definition_output.py,sha256=Id0SzyiMHF5l25iKQhCN4sWJwBJ7AkYK-I5RDZy3_rc,741
199
200
  letta_client/types/function_output.py,sha256=7b8550BllXxtZQ3T3jfvZjcCU_ZGWNBvjlrMB8S2xas,578
200
201
  letta_client/types/function_tool.py,sha256=TOETpZdqgPIgd4g9JFo3yvDBpTx4lDFzJNZH8PxAjpI,697
201
- letta_client/types/group.py,sha256=Y8iaGI08uSt99AE0GkiGV95YB5ywiAZOWd0jXojgwqU,1160
202
+ letta_client/types/group.py,sha256=wJhtodBAXGlOPa99P7a1acTrlC553YqaccW8gktstgM,1574
202
203
  letta_client/types/health.py,sha256=nQwx5ysn_cJMKUoqsfaPcGNSRSjfwX5S272UiSQJ03w,618
203
204
  letta_client/types/hidden_reasoning_message.py,sha256=2ExD6XKtWsMQQQCiZcyAGr-Tzgk-i3L663lT3p778pc,1447
204
205
  letta_client/types/hidden_reasoning_message_state.py,sha256=qotAgF_P4T7OEHzbhGDVFaLZYOs1ULMPVHmiFvoRIfM,174
@@ -225,11 +226,11 @@ letta_client/types/letta_request.py,sha256=bCPDRJhSJSo5eILJp0mTw_k26O3dZL1vChfAc
225
226
  letta_client/types/letta_request_config.py,sha256=b6K4QtDdHjcZKfBb1fugUuoPrT2N4d5TTB0PIRNI2SU,1085
226
227
  letta_client/types/letta_response.py,sha256=i5gAUTgWzIst_RP8I_zSh0GSnLIS3z--1BmK6EF1mkQ,1315
227
228
  letta_client/types/letta_streaming_request.py,sha256=jm0HLzfzWzIRs8uwtX33V5f5Ljw_hFOKOhPjdIZX9cA,1465
228
- letta_client/types/letta_usage_statistics.py,sha256=pdlEk_GYVTiDUgW0ZePOdyrJZ6zoSCGEgm_gM3B1wr8,1721
229
+ letta_client/types/letta_usage_statistics.py,sha256=k6V72J2TEPd-RQBuUQxF3oylrAMcuSKBskd2nnZmGOw,1886
229
230
  letta_client/types/llm_config.py,sha256=cycdnu-lgQsLsFmFQrc9S_O20snEdxRLcvwWwLMFnik,3441
230
231
  letta_client/types/llm_config_model_endpoint_type.py,sha256=HOSM5kIZDCNAVCWmASvAk52K819plqGlD66yKQ1xFkI,620
231
232
  letta_client/types/local_sandbox_config.py,sha256=jfe7akG_YrJJ8csLaLdev04Zg1x-PTN0XCAL4KifaZI,1387
232
- letta_client/types/manager_type.py,sha256=hV271989JpEhJQH02MzLpJ34EsbGnyMlckbz2TXBc-E,184
233
+ letta_client/types/manager_type.py,sha256=twOcUEtFo-S3g8nPC9KqyD_AWmES1BOVb5RNxjDNWPE,198
233
234
  letta_client/types/max_count_per_step_tool_rule.py,sha256=sUhnoL1jolz2sygrmCuF4KfaDUGlBui-FGCXR5762Nc,1056
234
235
  letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk7cBQ3gVCUy-MPWvE_tNXV5Fz0VTs,618
235
236
  letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
@@ -298,7 +299,7 @@ letta_client/types/tool_return_message.py,sha256=tC-YbPGSIlfezC0gcNv33qWBDyTAd41
298
299
  letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
299
300
  letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
300
301
  letta_client/types/tool_schema.py,sha256=q5iRbpiIqWpNvXeDCi7BUyDbQzBKUnTIXEIAujn1bxw,1122
301
- letta_client/types/tool_type.py,sha256=v6DX7qGAbg9t4HZTa9GBuzehNDCW3NkD6Zi3Z1teEKI,336
302
+ letta_client/types/tool_type.py,sha256=pen8RfIUppX8L6UZSDdPpPoauy3SsOoHatZj8eWUomk,368
302
303
  letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
303
304
  letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
304
305
  letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
@@ -322,6 +323,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
322
323
  letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
323
324
  letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
324
325
  letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
325
- letta_client-0.1.90.dist-info/METADATA,sha256=RkFbsUb6-G-wzgAFnfu5-gudHWo1Mo7tgDs9i1JD5nU,5041
326
- letta_client-0.1.90.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
327
- letta_client-0.1.90.dist-info/RECORD,,
326
+ letta_client-0.1.92.dist-info/METADATA,sha256=F9M57d17w933yECbqRXBNWq4fuoXkZSNbvAz5pSgcuY,5041
327
+ letta_client-0.1.92.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
328
+ letta_client-0.1.92.dist-info/RECORD,,