letta-client 0.1.129__py3-none-any.whl → 0.1.131__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.
letta_client/__init__.py CHANGED
@@ -222,6 +222,8 @@ from .types import (
222
222
  UserUpdate,
223
223
  ValidationError,
224
224
  ValidationErrorLocItem,
225
+ VoiceSleeptimeManager,
226
+ VoiceSleeptimeManagerUpdate,
225
227
  WebSearchOptions,
226
228
  WebSearchOptionsSearchContextSize,
227
229
  WebSearchOptionsUserLocation,
@@ -543,6 +545,8 @@ __all__ = [
543
545
  "UserUpdate",
544
546
  "ValidationError",
545
547
  "ValidationErrorLocItem",
548
+ "VoiceSleeptimeManager",
549
+ "VoiceSleeptimeManagerUpdate",
546
550
  "WebSearchOptions",
547
551
  "WebSearchOptionsSearchContextSize",
548
552
  "WebSearchOptionsUserLocation",
@@ -16,7 +16,7 @@ from .types import (
16
16
  from . import blocks, context, core_memory, groups, memory_variables, messages, passages, sources, templates, tools
17
17
  from .memory_variables import MemoryVariablesListResponse
18
18
  from .messages import LettaStreamingResponse, MessagesModifyRequest, MessagesModifyResponse
19
- from .templates import TemplatesCreateResponse, TemplatesMigrateResponse
19
+ from .templates import TemplatesCreateResponse, TemplatesCreateVersionRequestReturnAgentState, TemplatesMigrateResponse
20
20
 
21
21
  __all__ = [
22
22
  "AgentsSearchRequestSearchItem",
@@ -33,6 +33,7 @@ __all__ = [
33
33
  "MessagesModifyRequest",
34
34
  "MessagesModifyResponse",
35
35
  "TemplatesCreateResponse",
36
+ "TemplatesCreateVersionRequestReturnAgentState",
36
37
  "TemplatesMigrateResponse",
37
38
  "UpdateAgentResponseFormat",
38
39
  "UpdateAgentToolRulesItem",
@@ -1,5 +1,5 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .types import TemplatesCreateResponse, TemplatesMigrateResponse
3
+ from .types import TemplatesCreateResponse, TemplatesCreateVersionRequestReturnAgentState, TemplatesMigrateResponse
4
4
 
5
- __all__ = ["TemplatesCreateResponse", "TemplatesMigrateResponse"]
5
+ __all__ = ["TemplatesCreateResponse", "TemplatesCreateVersionRequestReturnAgentState", "TemplatesMigrateResponse"]
@@ -2,6 +2,7 @@
2
2
 
3
3
  import typing
4
4
  from ...core.client_wrapper import SyncClientWrapper
5
+ from .types.templates_create_version_request_return_agent_state import TemplatesCreateVersionRequestReturnAgentState
5
6
  from ...core.request_options import RequestOptions
6
7
  from ...core.jsonable_encoder import jsonable_encoder
7
8
  from ...errors.not_found_error import NotFoundError
@@ -27,7 +28,7 @@ class TemplatesClient:
27
28
  self,
28
29
  agent_id: str,
29
30
  *,
30
- return_agent_state: typing.Optional[bool] = None,
31
+ return_agent_state: typing.Optional[TemplatesCreateVersionRequestReturnAgentState] = None,
31
32
  migrate_deployed_agents: typing.Optional[bool] = OMIT,
32
33
  message: typing.Optional[str] = OMIT,
33
34
  request_options: typing.Optional[RequestOptions] = None,
@@ -42,7 +43,7 @@ class TemplatesClient:
42
43
  agent_id : str
43
44
  The agent ID of the agent to migrate, if this agent is not a template, it will create a agent template from the agent provided as well
44
45
 
45
- return_agent_state : typing.Optional[bool]
46
+ return_agent_state : typing.Optional[TemplatesCreateVersionRequestReturnAgentState]
46
47
 
47
48
  migrate_deployed_agents : typing.Optional[bool]
48
49
 
@@ -296,7 +297,7 @@ class AsyncTemplatesClient:
296
297
  self,
297
298
  agent_id: str,
298
299
  *,
299
- return_agent_state: typing.Optional[bool] = None,
300
+ return_agent_state: typing.Optional[TemplatesCreateVersionRequestReturnAgentState] = None,
300
301
  migrate_deployed_agents: typing.Optional[bool] = OMIT,
301
302
  message: typing.Optional[str] = OMIT,
302
303
  request_options: typing.Optional[RequestOptions] = None,
@@ -311,7 +312,7 @@ class AsyncTemplatesClient:
311
312
  agent_id : str
312
313
  The agent ID of the agent to migrate, if this agent is not a template, it will create a agent template from the agent provided as well
313
314
 
314
- return_agent_state : typing.Optional[bool]
315
+ return_agent_state : typing.Optional[TemplatesCreateVersionRequestReturnAgentState]
315
316
 
316
317
  migrate_deployed_agents : typing.Optional[bool]
317
318
 
@@ -1,6 +1,7 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  from .templates_create_response import TemplatesCreateResponse
4
+ from .templates_create_version_request_return_agent_state import TemplatesCreateVersionRequestReturnAgentState
4
5
  from .templates_migrate_response import TemplatesMigrateResponse
5
6
 
6
- __all__ = ["TemplatesCreateResponse", "TemplatesMigrateResponse"]
7
+ __all__ = ["TemplatesCreateResponse", "TemplatesCreateVersionRequestReturnAgentState", "TemplatesMigrateResponse"]
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ TemplatesCreateVersionRequestReturnAgentState = typing.Union[typing.Literal["true"], typing.Any]
@@ -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.129",
19
+ "X-Fern-SDK-Version": "0.1.131",
20
20
  }
21
21
  if self.token is not None:
22
22
  headers["Authorization"] = f"Bearer {self.token}"
@@ -3,6 +3,9 @@
3
3
  from ..core.client_wrapper import SyncClientWrapper
4
4
  import typing
5
5
  from ..core.request_options import RequestOptions
6
+ from ..core.unchecked_base_model import construct_type
7
+ from ..errors.unprocessable_entity_error import UnprocessableEntityError
8
+ from ..types.http_validation_error import HttpValidationError
6
9
  from json.decoder import JSONDecodeError
7
10
  from ..core.api_error import ApiError
8
11
  from ..core.client_wrapper import AsyncClientWrapper
@@ -12,8 +15,10 @@ class EmbeddingsClient:
12
15
  def __init__(self, *, client_wrapper: SyncClientWrapper):
13
16
  self._client_wrapper = client_wrapper
14
17
 
15
- def get_total_storage_size(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
18
+ def get_embeddings_total_storage_size(self, *, request_options: typing.Optional[RequestOptions] = None) -> float:
16
19
  """
20
+ Get the total size of all embeddings in the database for a user in the storage unit given.
21
+
17
22
  Parameters
18
23
  ----------
19
24
  request_options : typing.Optional[RequestOptions]
@@ -21,7 +26,8 @@ class EmbeddingsClient:
21
26
 
22
27
  Returns
23
28
  -------
24
- None
29
+ float
30
+ Successful Response
25
31
 
26
32
  Examples
27
33
  --------
@@ -30,16 +36,35 @@ class EmbeddingsClient:
30
36
  client = Letta(
31
37
  token="YOUR_TOKEN",
32
38
  )
33
- client.embeddings.get_total_storage_size()
39
+ client.embeddings.get_embeddings_total_storage_size()
34
40
  """
35
41
  _response = self._client_wrapper.httpx_client.request(
36
- "v1/embeddings/get_total_storage_size",
42
+ "v1/embeddings/total_storage_size",
37
43
  method="GET",
44
+ headers={
45
+ "storage-unit": "GB",
46
+ },
38
47
  request_options=request_options,
39
48
  )
40
49
  try:
41
50
  if 200 <= _response.status_code < 300:
42
- return
51
+ return typing.cast(
52
+ float,
53
+ construct_type(
54
+ type_=float, # type: ignore
55
+ object_=_response.json(),
56
+ ),
57
+ )
58
+ if _response.status_code == 422:
59
+ raise UnprocessableEntityError(
60
+ typing.cast(
61
+ HttpValidationError,
62
+ construct_type(
63
+ type_=HttpValidationError, # type: ignore
64
+ object_=_response.json(),
65
+ ),
66
+ )
67
+ )
43
68
  _response_json = _response.json()
44
69
  except JSONDecodeError:
45
70
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -50,8 +75,12 @@ class AsyncEmbeddingsClient:
50
75
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
51
76
  self._client_wrapper = client_wrapper
52
77
 
53
- async def get_total_storage_size(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
78
+ async def get_embeddings_total_storage_size(
79
+ self, *, request_options: typing.Optional[RequestOptions] = None
80
+ ) -> float:
54
81
  """
82
+ Get the total size of all embeddings in the database for a user in the storage unit given.
83
+
55
84
  Parameters
56
85
  ----------
57
86
  request_options : typing.Optional[RequestOptions]
@@ -59,7 +88,8 @@ class AsyncEmbeddingsClient:
59
88
 
60
89
  Returns
61
90
  -------
62
- None
91
+ float
92
+ Successful Response
63
93
 
64
94
  Examples
65
95
  --------
@@ -73,19 +103,38 @@ class AsyncEmbeddingsClient:
73
103
 
74
104
 
75
105
  async def main() -> None:
76
- await client.embeddings.get_total_storage_size()
106
+ await client.embeddings.get_embeddings_total_storage_size()
77
107
 
78
108
 
79
109
  asyncio.run(main())
80
110
  """
81
111
  _response = await self._client_wrapper.httpx_client.request(
82
- "v1/embeddings/get_total_storage_size",
112
+ "v1/embeddings/total_storage_size",
83
113
  method="GET",
114
+ headers={
115
+ "storage-unit": "GB",
116
+ },
84
117
  request_options=request_options,
85
118
  )
86
119
  try:
87
120
  if 200 <= _response.status_code < 300:
88
- return
121
+ return typing.cast(
122
+ float,
123
+ construct_type(
124
+ type_=float, # type: ignore
125
+ object_=_response.json(),
126
+ ),
127
+ )
128
+ if _response.status_code == 422:
129
+ raise UnprocessableEntityError(
130
+ typing.cast(
131
+ HttpValidationError,
132
+ construct_type(
133
+ type_=HttpValidationError, # type: ignore
134
+ object_=_response.json(),
135
+ ),
136
+ )
137
+ )
89
138
  _response_json = _response.json()
90
139
  except JSONDecodeError:
91
140
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -5,5 +5,8 @@ from ...types.dynamic_manager import DynamicManager
5
5
  from ...types.round_robin_manager import RoundRobinManager
6
6
  from ...types.sleeptime_manager import SleeptimeManager
7
7
  from ...types.supervisor_manager import SupervisorManager
8
+ from ...types.voice_sleeptime_manager import VoiceSleeptimeManager
8
9
 
9
- GroupCreateManagerConfig = typing.Union[DynamicManager, RoundRobinManager, SleeptimeManager, SupervisorManager]
10
+ GroupCreateManagerConfig = typing.Union[
11
+ DynamicManager, RoundRobinManager, SleeptimeManager, SupervisorManager, VoiceSleeptimeManager
12
+ ]
@@ -5,7 +5,12 @@ from ...types.dynamic_manager_update import DynamicManagerUpdate
5
5
  from ...types.round_robin_manager_update import RoundRobinManagerUpdate
6
6
  from ...types.sleeptime_manager_update import SleeptimeManagerUpdate
7
7
  from ...types.supervisor_manager_update import SupervisorManagerUpdate
8
+ from ...types.voice_sleeptime_manager_update import VoiceSleeptimeManagerUpdate
8
9
 
9
10
  GroupUpdateManagerConfig = typing.Union[
10
- DynamicManagerUpdate, RoundRobinManagerUpdate, SleeptimeManagerUpdate, SupervisorManagerUpdate
11
+ DynamicManagerUpdate,
12
+ RoundRobinManagerUpdate,
13
+ SleeptimeManagerUpdate,
14
+ SupervisorManagerUpdate,
15
+ VoiceSleeptimeManagerUpdate,
11
16
  ]
@@ -225,6 +225,8 @@ from .user_message_content import UserMessageContent
225
225
  from .user_update import UserUpdate
226
226
  from .validation_error import ValidationError
227
227
  from .validation_error_loc_item import ValidationErrorLocItem
228
+ from .voice_sleeptime_manager import VoiceSleeptimeManager
229
+ from .voice_sleeptime_manager_update import VoiceSleeptimeManagerUpdate
228
230
  from .web_search_options import WebSearchOptions
229
231
  from .web_search_options_search_context_size import WebSearchOptionsSearchContextSize
230
232
  from .web_search_options_user_location import WebSearchOptionsUserLocation
@@ -452,6 +454,8 @@ __all__ = [
452
454
  "UserUpdate",
453
455
  "ValidationError",
454
456
  "ValidationErrorLocItem",
457
+ "VoiceSleeptimeManager",
458
+ "VoiceSleeptimeManagerUpdate",
455
459
  "WebSearchOptions",
456
460
  "WebSearchOptionsSearchContextSize",
457
461
  "WebSearchOptionsUserLocation",
@@ -2,4 +2,9 @@
2
2
 
3
3
  import typing
4
4
 
5
- AgentType = typing.Union[typing.Literal["memgpt_agent", "split_thread_agent", "sleeptime_agent"], typing.Any]
5
+ AgentType = typing.Union[
6
+ typing.Literal[
7
+ "memgpt_agent", "split_thread_agent", "sleeptime_agent", "voice_convo_agent", "voice_sleeptime_agent"
8
+ ],
9
+ typing.Any,
10
+ ]
@@ -13,7 +13,7 @@ class LocalSandboxConfig(UncheckedBaseModel):
13
13
  Directory for the sandbox environment.
14
14
  """
15
15
 
16
- force_create_venv: typing.Optional[bool] = pydantic.Field(default=None)
16
+ use_venv: typing.Optional[bool] = pydantic.Field(default=None)
17
17
  """
18
18
  Whether or not to use the venv, or run directly in the same run loop.
19
19
  """
@@ -25,7 +25,7 @@ class LocalSandboxConfig(UncheckedBaseModel):
25
25
 
26
26
  pip_requirements: typing.Optional[typing.List[PipRequirement]] = pydantic.Field(default=None)
27
27
  """
28
- List of pip packages to install with mandatory name and optional version following semantic versioning. This only is considered when force_create_venv is True.
28
+ List of pip packages to install with mandatory name and optional version following semantic versioning. This only is considered when use_venv is True.
29
29
  """
30
30
 
31
31
  if IS_PYDANTIC_V2:
@@ -2,4 +2,6 @@
2
2
 
3
3
  import typing
4
4
 
5
- ManagerType = typing.Union[typing.Literal["round_robin", "supervisor", "dynamic", "sleeptime", "swarm"], typing.Any]
5
+ ManagerType = typing.Union[
6
+ typing.Literal["round_robin", "supervisor", "dynamic", "sleeptime", "voice_sleeptime", "swarm"], typing.Any
7
+ ]
@@ -17,15 +17,20 @@ class Message(UncheckedBaseModel):
17
17
 
18
18
  Attributes:
19
19
  id (str): The unique identifier of the message.
20
- role (MessageRole): The role of the participant.
21
- text (str): The text of the message.
22
- user_id (str): The unique identifier of the user.
20
+ organization_id (str): The unique identifier of the organization.
23
21
  agent_id (str): The unique identifier of the agent.
24
22
  model (str): The model used to make the function call.
23
+ role (MessageRole): The role of the participant.
24
+ content (List[LettaMessageContentUnion]): The content of the message.
25
25
  name (str): The name of the participant.
26
- created_at (datetime): The time the message was created.
27
26
  tool_calls (List[OpenAIToolCall,]): The list of tool calls requested.
28
27
  tool_call_id (str): The id of the tool call.
28
+ step_id (str): The id of the step that this message was created in.
29
+ otid (str): The offline threading id associated with this message.
30
+ tool_returns (List[ToolReturn]): Tool execution return information for prior tool calls.
31
+ group_id (str): The multi-agent group that the message was sent in.
32
+ sender_id (str): The id of the sender of the message, can be an identity id or agent id.
33
+ created_at (datetime): The timestamp when the object was created.
29
34
  """
30
35
 
31
36
  created_by_id: typing.Optional[str] = pydantic.Field(default=None)
@@ -2,4 +2,4 @@
2
2
 
3
3
  import typing
4
4
 
5
- MessageCreateRole = typing.Union[typing.Literal["user", "system"], typing.Any]
5
+ MessageCreateRole = typing.Union[typing.Literal["user", "system", "assistant"], typing.Any]
@@ -9,6 +9,7 @@ ToolType = typing.Union[
9
9
  "letta_memory_core",
10
10
  "letta_multi_agent_core",
11
11
  "letta_sleeptime_core",
12
+ "letta_voice_sleeptime_core",
12
13
  "external_composio",
13
14
  "external_langchain",
14
15
  "external_mcp",
@@ -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 VoiceSleeptimeManager(UncheckedBaseModel):
10
+ manager_type: typing.Literal["voice_sleeptime"] = "voice_sleeptime"
11
+ manager_agent_id: str = pydantic.Field()
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,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 VoiceSleeptimeManagerUpdate(UncheckedBaseModel):
10
+ manager_type: typing.Literal["voice_sleeptime"] = "voice_sleeptime"
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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.129
3
+ Version: 0.1.131
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,5 +1,5 @@
1
- letta_client/__init__.py,sha256=rsGorrng28XqthYUiWILPS8dqaER3cXAfoHG0bygjYw,16395
2
- letta_client/agents/__init__.py,sha256=C46uidjw-_nowv5mqI7lsXUKvoW49utJHL_k-F7HIyY,1616
1
+ letta_client/__init__.py,sha256=78G1gGcNH5SIshuRtzbH8oOwU9n8jV6monmpUhXy5aQ,16519
2
+ letta_client/agents/__init__.py,sha256=3oFWVxaaxkphkjGJVk31Llb9ll9dKoCGx3B_r3qqtes,1716
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
5
  letta_client/agents/client.py,sha256=P-uXumCID_I0VVA9ydc_cI5-V2xDkgXe7AhxplgewuI,79926
@@ -23,10 +23,11 @@ letta_client/agents/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1r
23
23
  letta_client/agents/passages/client.py,sha256=bCriRhpIP1Rbn_Lrm7F6Qiz6TeKXo_r4Q4VxR1v8V-k,25764
24
24
  letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
25
  letta_client/agents/sources/client.py,sha256=VjmiI0L2RyT3AhqstHunapdbzygTBcNGoT1DiFGRg44,12799
26
- letta_client/agents/templates/__init__.py,sha256=GGaz6hUZBKGSU4XFlzlC_cMqLxAymHN45RF3WLwkiWY,201
27
- letta_client/agents/templates/client.py,sha256=cRTKajiqfrPX2Dusg_cD1Cs9GvNd0wVt9U112SL2YHo,18990
28
- letta_client/agents/templates/types/__init__.py,sha256=3D6k0cTL6PW0r2lOlXoRU8fH5p1sojHIlNqddeCegcs,260
26
+ letta_client/agents/templates/__init__.py,sha256=76pikeZpHJRNuNNJum2mSvaXNfrgYnwrq71xx_iHyDU,297
27
+ letta_client/agents/templates/client.py,sha256=Fz2aziQD3y0ncMkX6gVs1ifMpNfYKCSC--csbBBTJD0,19271
28
+ letta_client/agents/templates/types/__init__.py,sha256=22zxG_J8EhzphrAw-1dvKO_-ibmYMtzz6Im2hYpvJ0U,420
29
29
  letta_client/agents/templates/types/templates_create_response.py,sha256=kKjkyjv3oLwr1U4sagbjc1nWyjT39vDcPzwSqWqNgSg,806
30
+ letta_client/agents/templates/types/templates_create_version_request_return_agent_state.py,sha256=bHgN0KfiCClqf_ZYsfK6o8ELEm_cvmkW-TlzXTFanO8,177
30
31
  letta_client/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
31
32
  letta_client/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
32
33
  letta_client/agents/tools/client.py,sha256=xZMRZhG8mI_h8_QqgI4lXh3FieRCLeoPwdtB56GB-XU,12685
@@ -61,7 +62,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_re
61
62
  letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
62
63
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
63
64
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
64
- letta_client/core/client_wrapper.py,sha256=KGzHEuOuf1jvkHQycDJkO5UpOkN_l07clX2E3chPCjY,1998
65
+ letta_client/core/client_wrapper.py,sha256=6yAQkJjkh1iZ9vZpcaIjq2RhTCGNCDEaacd5tjMwids,1998
65
66
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
66
67
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
67
68
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -75,7 +76,7 @@ letta_client/core/unchecked_base_model.py,sha256=zliEPgLnK9yQ1dZ0mHP6agQ7H0bTZk8
75
76
  letta_client/embedding_models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
76
77
  letta_client/embedding_models/client.py,sha256=3D_iX5yokSmW6QkHzHT0SRuZtv2ZVQ9s0hdlKrFbk9k,3489
77
78
  letta_client/embeddings/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
78
- letta_client/embeddings/client.py,sha256=II4xZQMLifdmBDypCYwrulsLJLKnkY_uCCcdHkMhCbk,2773
79
+ letta_client/embeddings/client.py,sha256=ZQCACTa_DlDB55BDgelB-8TTnnxaFgxOBLyhUUCnUlM,4677
79
80
  letta_client/environment.py,sha256=91gYLF9bT4-hTPQ9dcPfmub4LgEl-T4a5kW7NXzRIJU,198
80
81
  letta_client/errors/__init__.py,sha256=sf5qYBpvBUchcwEIvulM7AYVGJkiVxknC9OX6TOpOdo,433
81
82
  letta_client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
@@ -92,8 +93,8 @@ letta_client/groups/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1
92
93
  letta_client/groups/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
93
94
  letta_client/groups/messages/types/messages_modify_response.py,sha256=THyiUMxZyzVSp0kk1s0XOLW1LUass7mXcfFER1PTLyw,671
94
95
  letta_client/groups/types/__init__.py,sha256=qJDnHshh2Gj4Up09LcsHqoa9e0c7lOeSp63HMgWQ_hc,265
95
- letta_client/groups/types/group_create_manager_config.py,sha256=-g4W8dUsNwyNFhG4Kyk9iF963rSnSKa9UHCvioyQdL4,417
96
- letta_client/groups/types/group_update_manager_config.py,sha256=ZmSsb5UMolq-py0NEYFKmNCy6KGoSP8zPPFgkFz7UZ8,499
96
+ letta_client/groups/types/group_create_manager_config.py,sha256=6OKDvkQCacKmoFM0KoERteHPEn6Q2pYEp0wPHhjPQuk,513
97
+ letta_client/groups/types/group_update_manager_config.py,sha256=JXUmqWkQWiycUkoxIBKUaOldS5Mj-08onwjePKwNUfE,625
97
98
  letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
98
99
  letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
99
100
  letta_client/identities/__init__.py,sha256=bnFuyXLGO2qat5VgmZkdN7FVl74I_G7bPYDdKjyMM-Y,116
@@ -146,7 +147,7 @@ letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7gl
146
147
  letta_client/tools/types/add_mcp_server_response_item.py,sha256=TWdsKqGb1INhYtpGnAckz0Pw4nZShumSp4pfocRfxCA,270
147
148
  letta_client/tools/types/delete_mcp_server_response_item.py,sha256=MeZObU-7tMSCd-S5yuUjNDse6A1hUz1LLjbko0pXaro,273
148
149
  letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
149
- letta_client/types/__init__.py,sha256=vYAcLWMP_PDOojlIEUvXodGYiopLIdUGtBBNbNV3n14,20464
150
+ letta_client/types/__init__.py,sha256=ukBWdVASv04be9P9hSbzg1qagJHR9LGYIl5MwMnnCyM,20659
150
151
  letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
151
152
  letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
152
153
  letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
@@ -156,7 +157,7 @@ letta_client/types/agent_schema_tool_rules_item.py,sha256=TTP7uKYPSe-EAl4p03j0Kd
156
157
  letta_client/types/agent_state.py,sha256=oLgHlraP7C5FnSGzzDBqKsXwKHJz-OYFbToAqFUQ8iI,5621
157
158
  letta_client/types/agent_state_response_format.py,sha256=HISBgCumQxw6nQeDUMBu-IlghaLeWRb7BHHNaz_e8Hc,377
158
159
  letta_client/types/agent_state_tool_rules_item.py,sha256=WB-N4uyDTfhYBjQYDcLZDxDj73Xu1mQasBkdofUM-XU,625
159
- letta_client/types/agent_type.py,sha256=ywCn-ii7Xu0-N1tkK7oQaONlx42wcTVB-8oP71fNbw0,190
160
+ letta_client/types/agent_type.py,sha256=BgiG_S0olC5uPmqVlDL6OG5-F6CcEK4k-pkfuT36Km4,261
160
161
  letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
161
162
  letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
162
163
  letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
@@ -275,18 +276,18 @@ letta_client/types/letta_usage_statistics.py,sha256=k6V72J2TEPd-RQBuUQxF3oylrAMc
275
276
  letta_client/types/llm_config.py,sha256=Sg1W1Jx1Ubi368RIzEhcS0wJUsFddBUq-HJ43DcBz3s,3689
276
277
  letta_client/types/llm_config_model_endpoint_type.py,sha256=HOSM5kIZDCNAVCWmASvAk52K819plqGlD66yKQ1xFkI,620
277
278
  letta_client/types/llm_config_reasoning_effort.py,sha256=AHL2nI5aeTfPhijnhaL3aiP8EoJhy_Wdupi2pyMm4sA,173
278
- letta_client/types/local_sandbox_config.py,sha256=gJNyEJDgyMDEP2798vbXZ5UcRu-yc_ge6XuppwtMLC0,1405
279
- letta_client/types/manager_type.py,sha256=GyGqWAihoS81T4RJtOcVSbiOSy-v1cpCWfRB_qU46Y0,197
279
+ letta_client/types/local_sandbox_config.py,sha256=jfe7akG_YrJJ8csLaLdev04Zg1x-PTN0XCAL4KifaZI,1387
280
+ letta_client/types/manager_type.py,sha256=3ztXv2xWw6PIgDoqqxaHwdIcssDYqdqB0KqUDSW3Bc0,222
280
281
  letta_client/types/max_count_per_step_tool_rule.py,sha256=sUhnoL1jolz2sygrmCuF4KfaDUGlBui-FGCXR5762Nc,1056
281
282
  letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk7cBQ3gVCUy-MPWvE_tNXV5Fz0VTs,618
282
283
  letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
283
284
  letta_client/types/mcp_tool.py,sha256=_GSTb0k8l-IUEflRkQ6-v45UnbTcA4Nv1N8sgmExJQ0,912
284
285
  letta_client/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
285
- letta_client/types/message.py,sha256=npZKMX6fryL2F1ODDoWT3XWeh-pHeEJ1IIgbnSzgGcQ,3936
286
+ letta_client/types/message.py,sha256=M0Kw2Sh9gET6mVN3he3Bd2GxJgpIBnptaomdUX3uybY,4415
286
287
  letta_client/types/message_content_item.py,sha256=mg2npSBRXsH7-fAwhx9YhkVbeCF3cM8pE6fPYtUDIyc,550
287
288
  letta_client/types/message_create.py,sha256=FkABWA09E1Ra47o0g53zf7b6DqgMfT_9XXQUv30tCdw,1445
288
289
  letta_client/types/message_create_content.py,sha256=KL3XAVKVrdsh4DZwdxKofUyehS-vnOT_VJNVzZDpE20,226
289
- letta_client/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
290
+ letta_client/types/message_create_role.py,sha256=PWbew2WtK-36P4d3Nuvq4QNLDAPntsGpasS_WzivyXg,172
290
291
  letta_client/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
291
292
  letta_client/types/message_schema.py,sha256=i7PLWd92bEltq3bSJam3c74p5zw-WdcoUqazLNmNYAw,955
292
293
  letta_client/types/not_found_error_body.py,sha256=_1esSlUdkBx6CRs6aAIJrxzh3VZKEG0xzeLbxebBuy0,615
@@ -351,7 +352,7 @@ letta_client/types/tool_return_message.py,sha256=Gu3NsCCgQkqA3y8deKMED5CJ6dSGnfV
351
352
  letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
352
353
  letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
353
354
  letta_client/types/tool_schema.py,sha256=q5iRbpiIqWpNvXeDCi7BUyDbQzBKUnTIXEIAujn1bxw,1122
354
- letta_client/types/tool_type.py,sha256=pen8RfIUppX8L6UZSDdPpPoauy3SsOoHatZj8eWUomk,368
355
+ letta_client/types/tool_type.py,sha256=iI9XGJWeBfUG7xKADn6o1DMv2U1MzKnVTiiA3Z7MNTQ,406
355
356
  letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
356
357
  letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
357
358
  letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
@@ -368,6 +369,8 @@ letta_client/types/user_message_content.py,sha256=JHOtxDEVm7FKDb6Ac2Hw7tAl5HCTDD
368
369
  letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wDLkP4,731
369
370
  letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
370
371
  letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
372
+ letta_client/types/voice_sleeptime_manager.py,sha256=2gwDbmH82-FxXpcK82LiNzK2HCbzr2PJGutW1yapKtI,690
373
+ letta_client/types/voice_sleeptime_manager_update.py,sha256=u8FjBmXcsZr_jQNbvW1fFJejs2DQ1H5I_Ks0fi5Lo1Y,725
371
374
  letta_client/types/web_search_options.py,sha256=ENx_YMOh8Dxj6q57LvuM7Qmq_j2h5WJh9D91lbBnj90,863
372
375
  letta_client/types/web_search_options_search_context_size.py,sha256=RgJGV4rkuaCTcaS4zsw_MWzRlTYpyNT9QqzNvpd1Gno,182
373
376
  letta_client/types/web_search_options_user_location.py,sha256=4aXfFcwUBu7YNA5XBjfhmD6tgRb0e8LTFexmn-rkDfw,770
@@ -377,6 +380,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
377
380
  letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
378
381
  letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
379
382
  letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
380
- letta_client-0.1.129.dist-info/METADATA,sha256=_tz95T8DIxJf_ET2VHObsv6C2DMm4nbM7a7LZ9sbCBw,5042
381
- letta_client-0.1.129.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
382
- letta_client-0.1.129.dist-info/RECORD,,
383
+ letta_client-0.1.131.dist-info/METADATA,sha256=83IoYDnUR0qsQSSzMKxBZpzmBD4HHBVEcR_PhOWNSWM,5042
384
+ letta_client-0.1.131.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
385
+ letta_client-0.1.131.dist-info/RECORD,,