letta-client 0.1.198__py3-none-any.whl → 0.1.200__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
@@ -235,6 +235,7 @@ from .types import (
235
235
  UpdateAssistantMessageContent,
236
236
  UpdateReasoningMessage,
237
237
  UpdateSsemcpServer,
238
+ UpdateStdioMcpServer,
238
239
  UpdateStreamableHttpmcpServer,
239
240
  UpdateSystemMessage,
240
241
  UpdateUserMessage,
@@ -607,6 +608,7 @@ __all__ = [
607
608
  "UpdateMcpServerResponse",
608
609
  "UpdateReasoningMessage",
609
610
  "UpdateSsemcpServer",
611
+ "UpdateStdioMcpServer",
610
612
  "UpdateStreamableHttpmcpServer",
611
613
  "UpdateSystemMessage",
612
614
  "UpdateUserMessage",
@@ -24,7 +24,7 @@ class BaseClientWrapper:
24
24
  headers: typing.Dict[str, str] = {
25
25
  "X-Fern-Language": "Python",
26
26
  "X-Fern-SDK-Name": "letta-client",
27
- "X-Fern-SDK-Version": "0.1.198",
27
+ "X-Fern-SDK-Version": "0.1.200",
28
28
  }
29
29
  if self._project is not None:
30
30
  headers["X-Project"] = self._project
@@ -469,12 +469,12 @@ class SourcesClient:
469
469
  self,
470
470
  *,
471
471
  name: str,
472
- embedding: typing.Optional[str] = OMIT,
473
- embedding_chunk_size: typing.Optional[int] = OMIT,
474
- embedding_config: typing.Optional[EmbeddingConfig] = OMIT,
475
472
  description: typing.Optional[str] = OMIT,
476
473
  instructions: typing.Optional[str] = OMIT,
477
474
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
475
+ embedding: typing.Optional[str] = OMIT,
476
+ embedding_chunk_size: typing.Optional[int] = OMIT,
477
+ embedding_config: typing.Optional[EmbeddingConfig] = OMIT,
478
478
  request_options: typing.Optional[RequestOptions] = None,
479
479
  ) -> Source:
480
480
  """
@@ -485,15 +485,6 @@ class SourcesClient:
485
485
  name : str
486
486
  The name of the source.
487
487
 
488
- embedding : typing.Optional[str]
489
- The hande for the embedding config used by the source.
490
-
491
- embedding_chunk_size : typing.Optional[int]
492
- The chunk size of the embedding.
493
-
494
- embedding_config : typing.Optional[EmbeddingConfig]
495
- (Legacy) The embedding configuration used by the source.
496
-
497
488
  description : typing.Optional[str]
498
489
  The description of the source.
499
490
 
@@ -503,6 +494,15 @@ class SourcesClient:
503
494
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
504
495
  Metadata associated with the source.
505
496
 
497
+ embedding : typing.Optional[str]
498
+ The handle for the embedding config used by the source.
499
+
500
+ embedding_chunk_size : typing.Optional[int]
501
+ The chunk size of the embedding.
502
+
503
+ embedding_config : typing.Optional[EmbeddingConfig]
504
+ (Legacy) The embedding configuration used by the source.
505
+
506
506
  request_options : typing.Optional[RequestOptions]
507
507
  Request-specific configuration.
508
508
 
@@ -528,14 +528,14 @@ class SourcesClient:
528
528
  method="POST",
529
529
  json={
530
530
  "name": name,
531
+ "description": description,
532
+ "instructions": instructions,
533
+ "metadata": metadata,
531
534
  "embedding": embedding,
532
535
  "embedding_chunk_size": embedding_chunk_size,
533
536
  "embedding_config": convert_and_respect_annotation_metadata(
534
537
  object_=embedding_config, annotation=EmbeddingConfig, direction="write"
535
538
  ),
536
- "description": description,
537
- "instructions": instructions,
538
- "metadata": metadata,
539
539
  },
540
540
  headers={
541
541
  "content-type": "application/json",
@@ -1144,12 +1144,12 @@ class AsyncSourcesClient:
1144
1144
  self,
1145
1145
  *,
1146
1146
  name: str,
1147
- embedding: typing.Optional[str] = OMIT,
1148
- embedding_chunk_size: typing.Optional[int] = OMIT,
1149
- embedding_config: typing.Optional[EmbeddingConfig] = OMIT,
1150
1147
  description: typing.Optional[str] = OMIT,
1151
1148
  instructions: typing.Optional[str] = OMIT,
1152
1149
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
1150
+ embedding: typing.Optional[str] = OMIT,
1151
+ embedding_chunk_size: typing.Optional[int] = OMIT,
1152
+ embedding_config: typing.Optional[EmbeddingConfig] = OMIT,
1153
1153
  request_options: typing.Optional[RequestOptions] = None,
1154
1154
  ) -> Source:
1155
1155
  """
@@ -1160,15 +1160,6 @@ class AsyncSourcesClient:
1160
1160
  name : str
1161
1161
  The name of the source.
1162
1162
 
1163
- embedding : typing.Optional[str]
1164
- The hande for the embedding config used by the source.
1165
-
1166
- embedding_chunk_size : typing.Optional[int]
1167
- The chunk size of the embedding.
1168
-
1169
- embedding_config : typing.Optional[EmbeddingConfig]
1170
- (Legacy) The embedding configuration used by the source.
1171
-
1172
1163
  description : typing.Optional[str]
1173
1164
  The description of the source.
1174
1165
 
@@ -1178,6 +1169,15 @@ class AsyncSourcesClient:
1178
1169
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
1179
1170
  Metadata associated with the source.
1180
1171
 
1172
+ embedding : typing.Optional[str]
1173
+ The handle for the embedding config used by the source.
1174
+
1175
+ embedding_chunk_size : typing.Optional[int]
1176
+ The chunk size of the embedding.
1177
+
1178
+ embedding_config : typing.Optional[EmbeddingConfig]
1179
+ (Legacy) The embedding configuration used by the source.
1180
+
1181
1181
  request_options : typing.Optional[RequestOptions]
1182
1182
  Request-specific configuration.
1183
1183
 
@@ -1211,14 +1211,14 @@ class AsyncSourcesClient:
1211
1211
  method="POST",
1212
1212
  json={
1213
1213
  "name": name,
1214
+ "description": description,
1215
+ "instructions": instructions,
1216
+ "metadata": metadata,
1214
1217
  "embedding": embedding,
1215
1218
  "embedding_chunk_size": embedding_chunk_size,
1216
1219
  "embedding_config": convert_and_respect_annotation_metadata(
1217
1220
  object_=embedding_config, annotation=EmbeddingConfig, direction="write"
1218
1221
  ),
1219
- "description": description,
1220
- "instructions": instructions,
1221
- "metadata": metadata,
1222
1222
  },
1223
1223
  headers={
1224
1224
  "content-type": "application/json",
@@ -1274,7 +1274,7 @@ class ToolsClient:
1274
1274
 
1275
1275
  Examples
1276
1276
  --------
1277
- from letta_client import Letta, UpdateSsemcpServer
1277
+ from letta_client import Letta, UpdateStdioMcpServer
1278
1278
 
1279
1279
  client = Letta(
1280
1280
  project="YOUR_PROJECT",
@@ -1282,7 +1282,7 @@ class ToolsClient:
1282
1282
  )
1283
1283
  client.tools.update_mcp_server(
1284
1284
  mcp_server_name="mcp_server_name",
1285
- request=UpdateSsemcpServer(),
1285
+ request=UpdateStdioMcpServer(),
1286
1286
  )
1287
1287
  """
1288
1288
  _response = self._client_wrapper.httpx_client.request(
@@ -2770,7 +2770,7 @@ class AsyncToolsClient:
2770
2770
  --------
2771
2771
  import asyncio
2772
2772
 
2773
- from letta_client import AsyncLetta, UpdateSsemcpServer
2773
+ from letta_client import AsyncLetta, UpdateStdioMcpServer
2774
2774
 
2775
2775
  client = AsyncLetta(
2776
2776
  project="YOUR_PROJECT",
@@ -2781,7 +2781,7 @@ class AsyncToolsClient:
2781
2781
  async def main() -> None:
2782
2782
  await client.tools.update_mcp_server(
2783
2783
  mcp_server_name="mcp_server_name",
2784
- request=UpdateSsemcpServer(),
2784
+ request=UpdateStdioMcpServer(),
2785
2785
  )
2786
2786
 
2787
2787
 
@@ -1,7 +1,8 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  import typing
4
+ from ...types.update_stdio_mcp_server import UpdateStdioMcpServer
4
5
  from ...types.update_ssemcp_server import UpdateSsemcpServer
5
6
  from ...types.update_streamable_httpmcp_server import UpdateStreamableHttpmcpServer
6
7
 
7
- UpdateMcpServerRequest = typing.Union[UpdateSsemcpServer, UpdateStreamableHttpmcpServer]
8
+ UpdateMcpServerRequest = typing.Union[UpdateStdioMcpServer, UpdateSsemcpServer, UpdateStreamableHttpmcpServer]
@@ -238,6 +238,7 @@ from .update_assistant_message import UpdateAssistantMessage
238
238
  from .update_assistant_message_content import UpdateAssistantMessageContent
239
239
  from .update_reasoning_message import UpdateReasoningMessage
240
240
  from .update_ssemcp_server import UpdateSsemcpServer
241
+ from .update_stdio_mcp_server import UpdateStdioMcpServer
241
242
  from .update_streamable_httpmcp_server import UpdateStreamableHttpmcpServer
242
243
  from .update_system_message import UpdateSystemMessage
243
244
  from .update_user_message import UpdateUserMessage
@@ -495,6 +496,7 @@ __all__ = [
495
496
  "UpdateAssistantMessageContent",
496
497
  "UpdateReasoningMessage",
497
498
  "UpdateSsemcpServer",
499
+ "UpdateStdioMcpServer",
498
500
  "UpdateStreamableHttpmcpServer",
499
501
  "UpdateSystemMessage",
500
502
  "UpdateUserMessage",
@@ -1,8 +1,8 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  from ..core.unchecked_base_model import UncheckedBaseModel
4
- import typing
5
4
  import pydantic
5
+ import typing
6
6
  from .file_processing_status import FileProcessingStatus
7
7
  import datetime as dt
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
@@ -13,11 +13,6 @@ class FileMetadata(UncheckedBaseModel):
13
13
  Representation of a single FileMetadata
14
14
  """
15
15
 
16
- id: typing.Optional[str] = pydantic.Field(default=None)
17
- """
18
- The human-friendly ID of the File
19
- """
20
-
21
16
  source_id: str = pydantic.Field()
22
17
  """
23
18
  The unique identifier of the source associated with the document.
@@ -78,6 +73,16 @@ class FileMetadata(UncheckedBaseModel):
78
73
  Number of chunks that have been embedded.
79
74
  """
80
75
 
76
+ content: typing.Optional[str] = pydantic.Field(default=None)
77
+ """
78
+ Optional full-text content of the file; only populated on demand due to its size.
79
+ """
80
+
81
+ id: typing.Optional[str] = pydantic.Field(default=None)
82
+ """
83
+ The human-friendly ID of the File
84
+ """
85
+
81
86
  created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
82
87
  """
83
88
  The creation date of the file.
@@ -93,11 +98,6 @@ class FileMetadata(UncheckedBaseModel):
93
98
  Whether this file is deleted or not.
94
99
  """
95
100
 
96
- content: typing.Optional[str] = pydantic.Field(default=None)
97
- """
98
- Optional full-text content of the file; only populated on demand due to its size.
99
- """
100
-
101
101
  if IS_PYDANTIC_V2:
102
102
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
103
103
  else:
@@ -13,24 +13,25 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
13
13
 
14
14
  class Message(UncheckedBaseModel):
15
15
  """
16
- Letta's internal representation of a message. Includes methods to convert to/from LLM provider formats.
17
-
18
- Attributes:
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.
23
- agent_id (str): The unique identifier of the agent.
24
- model (str): The model used to make the function call.
25
- name (str): The name of the participant.
26
- created_at (datetime): The time the message was created.
27
- tool_calls (List[OpenAIToolCall,]): The list of tool calls requested.
28
- tool_call_id (str): The id of the tool call.
29
- step_id (str): The id of the step that this message was created in.
30
- otid (str): The offline threading id associated with this message.
31
- tool_returns (List[ToolReturn]): The list of tool returns requested.
32
- group_id (str): The multi-agent group that the message was sent in.
33
- sender_id (str): The id of the sender of the message, can be an identity id or agent id.
16
+ Letta's internal representation of a message. Includes methods to convert to/from LLM provider formats.
17
+
18
+ Attributes:
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.
23
+ agent_id (str): The unique identifier of the agent.
24
+ model (str): The model used to make the function call.
25
+ name (str): The name of the participant.
26
+ created_at (datetime): The time the message was created.
27
+ tool_calls (List[OpenAIToolCall,]): The list of tool calls requested.
28
+ tool_call_id (str): The id of the tool call.
29
+ step_id (str): The id of the step that this message was created in.
30
+ otid (str): The offline threading id associated with this message.
31
+ tool_returns (List[ToolReturn]): The list of tool returns requested.
32
+ group_id (str): The multi-agent group that the message was sent in.
33
+ sender_id (str): The id of the sender of the message, can be an identity id or agent id.
34
+ t
34
35
  """
35
36
 
36
37
  created_by_id: typing.Optional[str] = pydantic.Field(default=None)
@@ -1,8 +1,8 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  from ..core.unchecked_base_model import UncheckedBaseModel
4
- import typing
5
4
  import pydantic
5
+ import typing
6
6
  from .embedding_config import EmbeddingConfig
7
7
  import datetime as dt
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
@@ -21,11 +21,6 @@ class Source(UncheckedBaseModel):
21
21
  description (str): The description of the source.
22
22
  """
23
23
 
24
- id: typing.Optional[str] = pydantic.Field(default=None)
25
- """
26
- The human-friendly ID of the Source
27
- """
28
-
29
24
  name: str = pydantic.Field()
30
25
  """
31
26
  The name of the source.
@@ -41,14 +36,19 @@ class Source(UncheckedBaseModel):
41
36
  Instructions for how to use the source.
42
37
  """
43
38
 
44
- embedding_config: EmbeddingConfig = pydantic.Field()
39
+ metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
45
40
  """
46
- The embedding configuration used by the source.
41
+ Metadata associated with the source.
47
42
  """
48
43
 
49
- metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
44
+ id: typing.Optional[str] = pydantic.Field(default=None)
50
45
  """
51
- Metadata associated with the source.
46
+ The human-friendly ID of the Source
47
+ """
48
+
49
+ embedding_config: EmbeddingConfig = pydantic.Field()
50
+ """
51
+ The embedding configuration used by the source.
52
52
  """
53
53
 
54
54
  created_by_id: typing.Optional[str] = pydantic.Field(default=None)
@@ -0,0 +1,32 @@
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 .stdio_server_config import StdioServerConfig
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
+
9
+
10
+ class UpdateStdioMcpServer(UncheckedBaseModel):
11
+ """
12
+ Update a Stdio MCP server
13
+ """
14
+
15
+ server_name: typing.Optional[str] = pydantic.Field(default=None)
16
+ """
17
+ The name of the server
18
+ """
19
+
20
+ stdio_config: typing.Optional[StdioServerConfig] = pydantic.Field(default=None)
21
+ """
22
+ The configuration for the server (MCP 'local' client will run this command)
23
+ """
24
+
25
+ if IS_PYDANTIC_V2:
26
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
27
+ else:
28
+
29
+ class Config:
30
+ frozen = True
31
+ smart_union = True
32
+ extra = pydantic.Extra.allow
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.198
3
+ Version: 0.1.200
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,4 +1,4 @@
1
- letta_client/__init__.py,sha256=7UcvvhxkXZUqVZWhBOLHnOxLzgbHcsHqTOV1WFlVWL0,18312
1
+ letta_client/__init__.py,sha256=ncvYffCbjHgkNqwjVFcYumDb9kI32VmuxobtHhelze8,18366
2
2
  letta_client/agents/__init__.py,sha256=i9PmBueIWESDLqmpzWt1oZVgZNr1rNkO6j0pl5sgvGo,2049
3
3
  letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
4
4
  letta_client/agents/blocks/client.py,sha256=4UGPYxfGwNN3ZW-SkIdfVZK6cvCcumVAw0_AM8OmoBY,25046
@@ -66,7 +66,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_re
66
66
  letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
67
67
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
68
68
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
69
- letta_client/core/client_wrapper.py,sha256=DOS406XB6hHhXcRbskkRFCUTO705UiKQcFzPhO9mvw8,2336
69
+ letta_client/core/client_wrapper.py,sha256=bNpmZuZ6wN_Yaj2H-kno_2GxTBk47MeuUVa2hcKrdPY,2336
70
70
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
71
71
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
72
72
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -127,7 +127,7 @@ letta_client/runs/steps/client.py,sha256=KgpKM6tLn7CgnkUlUihLvxucw4PW4bb_8XPVaEb
127
127
  letta_client/runs/usage/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
128
128
  letta_client/runs/usage/client.py,sha256=LGJL8cPGaVfTG5OBi85KRbwvv3P_jQNehFq2Kg0xrC4,4738
129
129
  letta_client/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
130
- letta_client/sources/client.py,sha256=GVZ8KaFIpWs2gbCJBeYNTJVKB9p3iLcU91u5TZ3fJeg,43006
130
+ letta_client/sources/client.py,sha256=bN1cht7KPYgGhZFQCuPducOl78gMU154Vx4aqY21zT0,43008
131
131
  letta_client/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
132
132
  letta_client/sources/files/client.py,sha256=6RgAo1778b1o_BLUZKDbdrSvhsLCvK_TnwFXBEUISpM,14659
133
133
  letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -152,16 +152,16 @@ letta_client/templates/types/__init__.py,sha256=dAr_dEh0BdwUxAcV1sJ9RM07Z8nCv4dC
152
152
  letta_client/templates/types/templates_list_response.py,sha256=HYloMVzk086c6fFGRYZz-Ozc_Yylozp2aPpweHS5uXI,866
153
153
  letta_client/templates/types/templates_list_response_templates_item.py,sha256=yyJq8wEOb2XIg99uhRMKoy2qD2CbuvI_5FAspwYWnfI,593
154
154
  letta_client/tools/__init__.py,sha256=kSIxsMdzxX6TlriU43BYesswM2yq_iPoF-6-p0LbJKI,525
155
- letta_client/tools/client.py,sha256=b0QnShEpu34pE4VFGj77xQ3xYxTCH1mpmolpmSFlNKs,96995
155
+ letta_client/tools/client.py,sha256=hedvLbLtOgS5evYipbQdp8RBQjUja9Mk9nWfuUrNtxQ,97003
156
156
  letta_client/tools/types/__init__.py,sha256=-U2DGiEFPko6D5VRQQRoiJeHDJqb2iZnrbtHSxhkL5w,751
157
157
  letta_client/tools/types/add_mcp_server_request.py,sha256=m3QdTmY2ZHQUWbxMTNsOhPnseWHVipsOTdSXuC7KHQI,371
158
158
  letta_client/tools/types/add_mcp_server_response_item.py,sha256=DNrB3LwstJzKrw_GRJ8tb3XCEJWfD16WzBoGrGY_ZQI,376
159
159
  letta_client/tools/types/delete_mcp_server_response_item.py,sha256=YLIBE7OD535NJAncGpzMDGaQRe1831DNKcj2UzS9e0c,379
160
160
  letta_client/tools/types/list_mcp_servers_response_value.py,sha256=Eyji5qB7FhowiogsAbpcU_aMyH9zClv9lUMmHOmNPYk,379
161
161
  letta_client/tools/types/test_mcp_server_request.py,sha256=sLlOEZdmLfkHqHCkUjntGbr8_MkBhsqpMQ-HwdNOnq0,372
162
- letta_client/tools/types/update_mcp_server_request.py,sha256=SEMNYHB_mwJNSMHKO7keU0C_CMBktV7lfZUnACPe_fU,314
162
+ letta_client/tools/types/update_mcp_server_request.py,sha256=nCpx9-OvpH0l5iJxEi8kgSok1F1r7liEAZm-kaqBtEo,402
163
163
  letta_client/tools/types/update_mcp_server_response.py,sha256=muwHagaQBMwQI0of9EBCBtG9lD-jELFAevgTB2MjpFQ,375
164
- letta_client/types/__init__.py,sha256=11T7t2B__ecZTkzdmYXDuf49JD69yCBAoHzmeSx5Nvk,22717
164
+ letta_client/types/__init__.py,sha256=x9wL7fPYikvZZXi2exF3cWIJI4LmXqmHiKW_Dwlj_5g,22803
165
165
  letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
166
166
  letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
167
167
  letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
@@ -255,7 +255,7 @@ letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21
255
255
  letta_client/types/feedback_type.py,sha256=sDfsniSnnpSwzZqfIkRL7vYPxYqdwURpI6LMI7eDkoQ,160
256
256
  letta_client/types/file.py,sha256=ZLCEYJqIJ1pzAJn4Pke6gVdKivKU9FrIg98P4GmFY8M,628
257
257
  letta_client/types/file_file.py,sha256=jbWcPKn-fSUlq9kl8n2us9fPU6x-Z20IKScHD_pJruw,665
258
- letta_client/types/file_metadata.py,sha256=Fhn8ptJSmczuUoXv-N6vI-yWbVTonAqdg7jcG4nZurs,2957
258
+ letta_client/types/file_metadata.py,sha256=51abJ_M4dmpRJetdWcMf_P39l3EaJ1R2kjuexzEWwMI,2957
259
259
  letta_client/types/file_processing_status.py,sha256=8W8VAx9-jCaUx6q6mvyCMyLoa2peLTE_sgIaGloOWo4,201
260
260
  letta_client/types/file_stats.py,sha256=gEaG0m4vulK21EoIuYlOcdy0IK4qWkjBTDoMzXw3GEQ,875
261
261
  letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
@@ -309,7 +309,7 @@ letta_client/types/max_count_per_step_tool_rule_schema.py,sha256=1Zq4vblRTqFycqk
309
309
  letta_client/types/mcp_server_type.py,sha256=cEiRY8zJw3YdV0RV6tt4JUYd0AHT_UNeLgxaouU-_4A,172
310
310
  letta_client/types/mcp_tool.py,sha256=1Bdh9eDfLWxEB_5spzGXImmcoEQ2XRo8BTaeolaMA1M,1015
311
311
  letta_client/types/memory.py,sha256=Fa07vLHBsc4eNK65Yla2zOuzYhtgFGlnPzAGo9GvJ-c,1210
312
- letta_client/types/message.py,sha256=xLOrSRBL3GHlEN_aZAVR_ruftSqqDMu3CVnRnB01ZD0,4493
312
+ letta_client/types/message.py,sha256=Y5wbp-VTYNmTQE0RtHARVB55vPJ5SpIFZvUfNbjQ4X8,4567
313
313
  letta_client/types/message_content_item.py,sha256=FrwERKfU5MpV4Y8LC5ejKFkoqqSV_Ooww-r32VGBbME,629
314
314
  letta_client/types/message_create.py,sha256=jgtA2pi59E7Pv37oyGO51wjZyRtfxVpgENXad8fxQqM,1601
315
315
  letta_client/types/message_create_content.py,sha256=KL3XAVKVrdsh4DZwdxKofUyehS-vnOT_VJNVzZDpE20,226
@@ -360,7 +360,7 @@ letta_client/types/sandbox_environment_variable_update.py,sha256=JMkX6nzvcBNEemj
360
360
  letta_client/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
361
361
  letta_client/types/sleeptime_manager.py,sha256=oKI3CCoA4guwktWs1bbPdCmv9jg94EeMvbXQWvzbt6M,778
362
362
  letta_client/types/sleeptime_manager_update.py,sha256=JMzgtvGMDI5VBzlTuzm4FpuFAL7uwPbQgN9TYxip93s,813
363
- letta_client/types/source.py,sha256=BsfE9yrefXREQtskGZnR-TFGqmHkFKIGHC5udtHUi14,2370
363
+ letta_client/types/source.py,sha256=EELyis2796C75CPBVh5Yu9s7qw2nCszu7QgtpR3wPr4,2370
364
364
  letta_client/types/source_stats.py,sha256=QNp0U24Y6gCLgQp3VDMjiQSgqLnk7CjzRfMobxgOslk,1168
365
365
  letta_client/types/sse_server_config.py,sha256=IN-FdECflYF-XiIM_fvVOwyDu215Csoixepv44PAVvQ,1738
366
366
  letta_client/types/stdio_server_config.py,sha256=dEQ7bguiLikGemLxYZJ3JCmmEQgAMsSPO_P52oHZSl0,1091
@@ -396,6 +396,7 @@ letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxP
396
396
  letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
397
397
  letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
398
398
  letta_client/types/update_ssemcp_server.py,sha256=J3rZnjOlKGJAuysbV32ZrWj2RJIEx3OvpKYX4eSxhQM,1198
399
+ letta_client/types/update_stdio_mcp_server.py,sha256=UEnQL5kqEbiU_Kr6_HiDwhYzNPlVOjWysQMD9bOuTM8,942
399
400
  letta_client/types/update_streamable_httpmcp_server.py,sha256=8zOyQlc583_36_J8KofdPy9_ozln2pTvIaSY8dC5TU4,1344
400
401
  letta_client/types/update_system_message.py,sha256=wm2yZUdhRQD5sQhqPiedWZAPECwYvWOvRy1lbALTfCI,779
401
402
  letta_client/types/update_user_message.py,sha256=7K0eNqN-ab2v3rR1FW3LLq7IHk6_0C0lv3zhTtthzzs,860
@@ -420,6 +421,6 @@ letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J
420
421
  letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
421
422
  letta_client/voice/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
422
423
  letta_client/voice/client.py,sha256=47iQYCuW_qpKI4hM3pYVxn3hw7kgQj3emU1_oRpkRMA,5811
423
- letta_client-0.1.198.dist-info/METADATA,sha256=zFusdvJHhAKZ7W2nQnqZ69vZptpp3aTfXsvZoP4LJ2s,5177
424
- letta_client-0.1.198.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
425
- letta_client-0.1.198.dist-info/RECORD,,
424
+ letta_client-0.1.200.dist-info/METADATA,sha256=38RDsGTsK7W2VSyxbqIbqFHLQvnkojP9XPJF0Xgbccg,5177
425
+ letta_client-0.1.200.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
426
+ letta_client-0.1.200.dist-info/RECORD,,