letta-client 0.1.128__py3-none-any.whl → 0.1.130__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
@@ -233,6 +233,7 @@ from . import (
233
233
  batches,
234
234
  blocks,
235
235
  client_side_access_tokens,
236
+ embedding_models,
236
237
  embeddings,
237
238
  groups,
238
239
  health,
@@ -551,6 +552,7 @@ __all__ = [
551
552
  "batches",
552
553
  "blocks",
553
554
  "client_side_access_tokens",
555
+ "embedding_models",
554
556
  "embeddings",
555
557
  "groups",
556
558
  "health",
@@ -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]
@@ -10,7 +10,7 @@ from .agents.client import AgentsClient
10
10
  from .groups.client import GroupsClient
11
11
  from .identities.client import IdentitiesClient
12
12
  from .models.client import ModelsClient
13
- from .embeddings.client import EmbeddingsClient
13
+ from .embedding_models.client import EmbeddingModelsClient
14
14
  from .blocks.client import BlocksClient
15
15
  from .jobs.client import JobsClient
16
16
  from .health.client import HealthClient
@@ -20,6 +20,7 @@ from .steps.client import StepsClient
20
20
  from .tags.client import TagsClient
21
21
  from .batches.client import BatchesClient
22
22
  from .voice.client import VoiceClient
23
+ from .embeddings.client import EmbeddingsClient
23
24
  from .templates.client import TemplatesClient
24
25
  from .client_side_access_tokens.client import ClientSideAccessTokensClient
25
26
  from .projects.client import ProjectsClient
@@ -30,7 +31,7 @@ from .agents.client import AsyncAgentsClient
30
31
  from .groups.client import AsyncGroupsClient
31
32
  from .identities.client import AsyncIdentitiesClient
32
33
  from .models.client import AsyncModelsClient
33
- from .embeddings.client import AsyncEmbeddingsClient
34
+ from .embedding_models.client import AsyncEmbeddingModelsClient
34
35
  from .blocks.client import AsyncBlocksClient
35
36
  from .jobs.client import AsyncJobsClient
36
37
  from .health.client import AsyncHealthClient
@@ -40,6 +41,7 @@ from .steps.client import AsyncStepsClient
40
41
  from .tags.client import AsyncTagsClient
41
42
  from .batches.client import AsyncBatchesClient
42
43
  from .voice.client import AsyncVoiceClient
44
+ from .embeddings.client import AsyncEmbeddingsClient
43
45
  from .templates.client import AsyncTemplatesClient
44
46
  from .client_side_access_tokens.client import AsyncClientSideAccessTokensClient
45
47
  from .projects.client import AsyncProjectsClient
@@ -109,7 +111,7 @@ class LettaBase:
109
111
  self.groups = GroupsClient(client_wrapper=self._client_wrapper)
110
112
  self.identities = IdentitiesClient(client_wrapper=self._client_wrapper)
111
113
  self.models = ModelsClient(client_wrapper=self._client_wrapper)
112
- self.embeddings = EmbeddingsClient(client_wrapper=self._client_wrapper)
114
+ self.embedding_models = EmbeddingModelsClient(client_wrapper=self._client_wrapper)
113
115
  self.blocks = BlocksClient(client_wrapper=self._client_wrapper)
114
116
  self.jobs = JobsClient(client_wrapper=self._client_wrapper)
115
117
  self.health = HealthClient(client_wrapper=self._client_wrapper)
@@ -119,6 +121,7 @@ class LettaBase:
119
121
  self.tags = TagsClient(client_wrapper=self._client_wrapper)
120
122
  self.batches = BatchesClient(client_wrapper=self._client_wrapper)
121
123
  self.voice = VoiceClient(client_wrapper=self._client_wrapper)
124
+ self.embeddings = EmbeddingsClient(client_wrapper=self._client_wrapper)
122
125
  self.templates = TemplatesClient(client_wrapper=self._client_wrapper)
123
126
  self.client_side_access_tokens = ClientSideAccessTokensClient(client_wrapper=self._client_wrapper)
124
127
  self.projects = ProjectsClient(client_wrapper=self._client_wrapper)
@@ -188,7 +191,7 @@ class AsyncLettaBase:
188
191
  self.groups = AsyncGroupsClient(client_wrapper=self._client_wrapper)
189
192
  self.identities = AsyncIdentitiesClient(client_wrapper=self._client_wrapper)
190
193
  self.models = AsyncModelsClient(client_wrapper=self._client_wrapper)
191
- self.embeddings = AsyncEmbeddingsClient(client_wrapper=self._client_wrapper)
194
+ self.embedding_models = AsyncEmbeddingModelsClient(client_wrapper=self._client_wrapper)
192
195
  self.blocks = AsyncBlocksClient(client_wrapper=self._client_wrapper)
193
196
  self.jobs = AsyncJobsClient(client_wrapper=self._client_wrapper)
194
197
  self.health = AsyncHealthClient(client_wrapper=self._client_wrapper)
@@ -198,6 +201,7 @@ class AsyncLettaBase:
198
201
  self.tags = AsyncTagsClient(client_wrapper=self._client_wrapper)
199
202
  self.batches = AsyncBatchesClient(client_wrapper=self._client_wrapper)
200
203
  self.voice = AsyncVoiceClient(client_wrapper=self._client_wrapper)
204
+ self.embeddings = AsyncEmbeddingsClient(client_wrapper=self._client_wrapper)
201
205
  self.templates = AsyncTemplatesClient(client_wrapper=self._client_wrapper)
202
206
  self.client_side_access_tokens = AsyncClientSideAccessTokensClient(client_wrapper=self._client_wrapper)
203
207
  self.projects = AsyncProjectsClient(client_wrapper=self._client_wrapper)
@@ -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.128",
19
+ "X-Fern-SDK-Version": "0.1.130",
20
20
  }
21
21
  if self.token is not None:
22
22
  headers["Authorization"] = f"Bearer {self.token}"
@@ -0,0 +1,2 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
@@ -0,0 +1,108 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.client_wrapper import SyncClientWrapper
4
+ import typing
5
+ from ..core.request_options import RequestOptions
6
+ from ..types.embedding_config import EmbeddingConfig
7
+ from ..core.unchecked_base_model import construct_type
8
+ from json.decoder import JSONDecodeError
9
+ from ..core.api_error import ApiError
10
+ from ..core.client_wrapper import AsyncClientWrapper
11
+
12
+
13
+ class EmbeddingModelsClient:
14
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
15
+ self._client_wrapper = client_wrapper
16
+
17
+ def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[EmbeddingConfig]:
18
+ """
19
+ Parameters
20
+ ----------
21
+ request_options : typing.Optional[RequestOptions]
22
+ Request-specific configuration.
23
+
24
+ Returns
25
+ -------
26
+ typing.List[EmbeddingConfig]
27
+ Successful Response
28
+
29
+ Examples
30
+ --------
31
+ from letta_client import Letta
32
+
33
+ client = Letta(
34
+ token="YOUR_TOKEN",
35
+ )
36
+ client.embedding_models.list()
37
+ """
38
+ _response = self._client_wrapper.httpx_client.request(
39
+ "v1/models/embedding",
40
+ method="GET",
41
+ request_options=request_options,
42
+ )
43
+ try:
44
+ if 200 <= _response.status_code < 300:
45
+ return typing.cast(
46
+ typing.List[EmbeddingConfig],
47
+ construct_type(
48
+ type_=typing.List[EmbeddingConfig], # type: ignore
49
+ object_=_response.json(),
50
+ ),
51
+ )
52
+ _response_json = _response.json()
53
+ except JSONDecodeError:
54
+ raise ApiError(status_code=_response.status_code, body=_response.text)
55
+ raise ApiError(status_code=_response.status_code, body=_response_json)
56
+
57
+
58
+ class AsyncEmbeddingModelsClient:
59
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
60
+ self._client_wrapper = client_wrapper
61
+
62
+ async def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[EmbeddingConfig]:
63
+ """
64
+ Parameters
65
+ ----------
66
+ request_options : typing.Optional[RequestOptions]
67
+ Request-specific configuration.
68
+
69
+ Returns
70
+ -------
71
+ typing.List[EmbeddingConfig]
72
+ Successful Response
73
+
74
+ Examples
75
+ --------
76
+ import asyncio
77
+
78
+ from letta_client import AsyncLetta
79
+
80
+ client = AsyncLetta(
81
+ token="YOUR_TOKEN",
82
+ )
83
+
84
+
85
+ async def main() -> None:
86
+ await client.embedding_models.list()
87
+
88
+
89
+ asyncio.run(main())
90
+ """
91
+ _response = await self._client_wrapper.httpx_client.request(
92
+ "v1/models/embedding",
93
+ method="GET",
94
+ request_options=request_options,
95
+ )
96
+ try:
97
+ if 200 <= _response.status_code < 300:
98
+ return typing.cast(
99
+ typing.List[EmbeddingConfig],
100
+ construct_type(
101
+ type_=typing.List[EmbeddingConfig], # type: ignore
102
+ object_=_response.json(),
103
+ ),
104
+ )
105
+ _response_json = _response.json()
106
+ except JSONDecodeError:
107
+ raise ApiError(status_code=_response.status_code, body=_response.text)
108
+ raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -3,8 +3,9 @@
3
3
  from ..core.client_wrapper import SyncClientWrapper
4
4
  import typing
5
5
  from ..core.request_options import RequestOptions
6
- from ..types.embedding_config import EmbeddingConfig
7
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
8
9
  from json.decoder import JSONDecodeError
9
10
  from ..core.api_error import ApiError
10
11
  from ..core.client_wrapper import AsyncClientWrapper
@@ -14,8 +15,10 @@ class EmbeddingsClient:
14
15
  def __init__(self, *, client_wrapper: SyncClientWrapper):
15
16
  self._client_wrapper = client_wrapper
16
17
 
17
- def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[EmbeddingConfig]:
18
+ def get_embeddings_total_storage_size(self, *, request_options: typing.Optional[RequestOptions] = None) -> float:
18
19
  """
20
+ Get the total size of all embeddings in the database for a user in the storage unit given.
21
+
19
22
  Parameters
20
23
  ----------
21
24
  request_options : typing.Optional[RequestOptions]
@@ -23,7 +26,7 @@ class EmbeddingsClient:
23
26
 
24
27
  Returns
25
28
  -------
26
- typing.List[EmbeddingConfig]
29
+ float
27
30
  Successful Response
28
31
 
29
32
  Examples
@@ -33,22 +36,35 @@ class EmbeddingsClient:
33
36
  client = Letta(
34
37
  token="YOUR_TOKEN",
35
38
  )
36
- client.embeddings.list()
39
+ client.embeddings.get_embeddings_total_storage_size()
37
40
  """
38
41
  _response = self._client_wrapper.httpx_client.request(
39
- "v1/models/embedding",
42
+ "v1/embeddings/total_storage_size",
40
43
  method="GET",
44
+ headers={
45
+ "storage-unit": "GB",
46
+ },
41
47
  request_options=request_options,
42
48
  )
43
49
  try:
44
50
  if 200 <= _response.status_code < 300:
45
51
  return typing.cast(
46
- typing.List[EmbeddingConfig],
52
+ float,
47
53
  construct_type(
48
- type_=typing.List[EmbeddingConfig], # type: ignore
54
+ type_=float, # type: ignore
49
55
  object_=_response.json(),
50
56
  ),
51
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
+ )
52
68
  _response_json = _response.json()
53
69
  except JSONDecodeError:
54
70
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -59,8 +75,12 @@ class AsyncEmbeddingsClient:
59
75
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
60
76
  self._client_wrapper = client_wrapper
61
77
 
62
- async def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[EmbeddingConfig]:
78
+ async def get_embeddings_total_storage_size(
79
+ self, *, request_options: typing.Optional[RequestOptions] = None
80
+ ) -> float:
63
81
  """
82
+ Get the total size of all embeddings in the database for a user in the storage unit given.
83
+
64
84
  Parameters
65
85
  ----------
66
86
  request_options : typing.Optional[RequestOptions]
@@ -68,7 +88,7 @@ class AsyncEmbeddingsClient:
68
88
 
69
89
  Returns
70
90
  -------
71
- typing.List[EmbeddingConfig]
91
+ float
72
92
  Successful Response
73
93
 
74
94
  Examples
@@ -83,25 +103,38 @@ class AsyncEmbeddingsClient:
83
103
 
84
104
 
85
105
  async def main() -> None:
86
- await client.embeddings.list()
106
+ await client.embeddings.get_embeddings_total_storage_size()
87
107
 
88
108
 
89
109
  asyncio.run(main())
90
110
  """
91
111
  _response = await self._client_wrapper.httpx_client.request(
92
- "v1/models/embedding",
112
+ "v1/embeddings/total_storage_size",
93
113
  method="GET",
114
+ headers={
115
+ "storage-unit": "GB",
116
+ },
94
117
  request_options=request_options,
95
118
  )
96
119
  try:
97
120
  if 200 <= _response.status_code < 300:
98
121
  return typing.cast(
99
- typing.List[EmbeddingConfig],
122
+ float,
100
123
  construct_type(
101
- type_=typing.List[EmbeddingConfig], # type: ignore
124
+ type_=float, # type: ignore
102
125
  object_=_response.json(),
103
126
  ),
104
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
+ )
105
138
  _response_json = _response.json()
106
139
  except JSONDecodeError:
107
140
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -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
+ ]
@@ -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)
@@ -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",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.128
3
+ Version: 0.1.130
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=f_0v4oYXbsq-6Y56HWxtvUlCjeKPm5jeS_2TjyONXwI,16349
2
- letta_client/agents/__init__.py,sha256=C46uidjw-_nowv5mqI7lsXUKvoW49utJHL_k-F7HIyY,1616
1
+ letta_client/__init__.py,sha256=rsGorrng28XqthYUiWILPS8dqaER3cXAfoHG0bygjYw,16395
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
@@ -42,7 +43,7 @@ letta_client/agents/types/create_agent_request_response_format.py,sha256=1GUV3rF
42
43
  letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=L3FNsFTG9kVmuPbQhbCKNg3H2E5bB2Rgp92gWmGd-LM,689
43
44
  letta_client/agents/types/update_agent_response_format.py,sha256=oCoGofTKP7no6gNbDV6nJOpF8IlIplr1iPn5_7BA0cU,402
44
45
  letta_client/agents/types/update_agent_tool_rules_item.py,sha256=k9MmcVPsK-EGl8XlT3JQwdlBNLgpGw528jmi8fCFS7g,682
45
- letta_client/base_client.py,sha256=yhzh-KitRM5idpGSn16_rJ8d9RRviTnWdaZ_14ooHo4,9769
46
+ letta_client/base_client.py,sha256=nJ03_MNI8K9S356AgqrTMSsm6cqii7FxJyOkHdQ09JA,10079
46
47
  letta_client/batches/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
48
  letta_client/batches/client.py,sha256=AyfQpG9d856XS9BYHjxCIwu08ye03KQjuwA-jd-9kWQ,18774
48
49
  letta_client/blocks/__init__.py,sha256=c6SGOs9_YGdydYAzhe5TUiaXq52rpWT1mNMcke8qGTQ,108
@@ -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=6wsq4X_Mel_R-vaQWqGdJC0vyIfhQG_2OvLGl0xgqJE,1998
65
+ letta_client/core/client_wrapper.py,sha256=JR6FQsfoQ2pufB7q-sTMBX3XbF6s_mb7dyZjlQZ4W_g,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
@@ -72,8 +73,10 @@ letta_client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3V
72
73
  letta_client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
73
74
  letta_client/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
74
75
  letta_client/core/unchecked_base_model.py,sha256=zliEPgLnK9yQ1dZ0mHP6agQ7H0bTZk8AvX6VC1r9oPQ,10754
76
+ letta_client/embedding_models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
77
+ letta_client/embedding_models/client.py,sha256=3D_iX5yokSmW6QkHzHT0SRuZtv2ZVQ9s0hdlKrFbk9k,3489
75
78
  letta_client/embeddings/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
76
- letta_client/embeddings/client.py,sha256=-ZnjO_6acDCMR51qsuHpBkIj93Nnj1sbvDbF_GlhdYY,3467
79
+ letta_client/embeddings/client.py,sha256=ZQCACTa_DlDB55BDgelB-8TTnnxaFgxOBLyhUUCnUlM,4677
77
80
  letta_client/environment.py,sha256=91gYLF9bT4-hTPQ9dcPfmub4LgEl-T4a5kW7NXzRIJU,198
78
81
  letta_client/errors/__init__.py,sha256=sf5qYBpvBUchcwEIvulM7AYVGJkiVxknC9OX6TOpOdo,433
79
82
  letta_client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
@@ -154,7 +157,7 @@ letta_client/types/agent_schema_tool_rules_item.py,sha256=TTP7uKYPSe-EAl4p03j0Kd
154
157
  letta_client/types/agent_state.py,sha256=oLgHlraP7C5FnSGzzDBqKsXwKHJz-OYFbToAqFUQ8iI,5621
155
158
  letta_client/types/agent_state_response_format.py,sha256=HISBgCumQxw6nQeDUMBu-IlghaLeWRb7BHHNaz_e8Hc,377
156
159
  letta_client/types/agent_state_tool_rules_item.py,sha256=WB-N4uyDTfhYBjQYDcLZDxDj73Xu1mQasBkdofUM-XU,625
157
- 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
158
161
  letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
159
162
  letta_client/types/app_auth_scheme_auth_mode.py,sha256=cEj9XAxLgFcang_Irw6h3koWac9A0tpNeBG05NUeGlw,387
160
163
  letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
@@ -280,7 +283,7 @@ letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk
280
283
  letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
281
284
  letta_client/types/mcp_tool.py,sha256=_GSTb0k8l-IUEflRkQ6-v45UnbTcA4Nv1N8sgmExJQ0,912
282
285
  letta_client/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
283
- letta_client/types/message.py,sha256=npZKMX6fryL2F1ODDoWT3XWeh-pHeEJ1IIgbnSzgGcQ,3936
286
+ letta_client/types/message.py,sha256=M0Kw2Sh9gET6mVN3he3Bd2GxJgpIBnptaomdUX3uybY,4415
284
287
  letta_client/types/message_content_item.py,sha256=mg2npSBRXsH7-fAwhx9YhkVbeCF3cM8pE6fPYtUDIyc,550
285
288
  letta_client/types/message_create.py,sha256=FkABWA09E1Ra47o0g53zf7b6DqgMfT_9XXQUv30tCdw,1445
286
289
  letta_client/types/message_create_content.py,sha256=KL3XAVKVrdsh4DZwdxKofUyehS-vnOT_VJNVzZDpE20,226
@@ -349,7 +352,7 @@ letta_client/types/tool_return_message.py,sha256=Gu3NsCCgQkqA3y8deKMED5CJ6dSGnfV
349
352
  letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
350
353
  letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
351
354
  letta_client/types/tool_schema.py,sha256=q5iRbpiIqWpNvXeDCi7BUyDbQzBKUnTIXEIAujn1bxw,1122
352
- letta_client/types/tool_type.py,sha256=pen8RfIUppX8L6UZSDdPpPoauy3SsOoHatZj8eWUomk,368
355
+ letta_client/types/tool_type.py,sha256=iI9XGJWeBfUG7xKADn6o1DMv2U1MzKnVTiiA3Z7MNTQ,406
353
356
  letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
354
357
  letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
355
358
  letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
@@ -375,6 +378,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
375
378
  letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
376
379
  letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
377
380
  letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
378
- letta_client-0.1.128.dist-info/METADATA,sha256=gem7WiurovD2HiKMti5yq4PuqOtB253miz9FYdR0tVc,5042
379
- letta_client-0.1.128.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
380
- letta_client-0.1.128.dist-info/RECORD,,
381
+ letta_client-0.1.130.dist-info/METADATA,sha256=NE-Z-BAXmUZALsf6272xyugV1OPq33CrqcF309dz09g,5042
382
+ letta_client-0.1.130.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
383
+ letta_client-0.1.130.dist-info/RECORD,,