letta-client 0.1.186__py3-none-any.whl → 0.1.188__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
@@ -56,6 +56,7 @@ from .types import (
56
56
  ChatCompletionUserMessageParamContentItem,
57
57
  ChildToolRule,
58
58
  ChildToolRuleSchema,
59
+ CodeInput,
59
60
  CompletionCreateParamsNonStreaming,
60
61
  CompletionCreateParamsNonStreamingFunctionCall,
61
62
  CompletionCreateParamsNonStreamingMessagesItem,
@@ -400,6 +401,7 @@ __all__ = [
400
401
  "ClientSideAccessTokensCreateResponsePolicy",
401
402
  "ClientSideAccessTokensCreateResponsePolicyDataItem",
402
403
  "ClientSideAccessTokensCreateResponsePolicyDataItemAccessItem",
404
+ "CodeInput",
403
405
  "CompletionCreateParamsNonStreaming",
404
406
  "CompletionCreateParamsNonStreamingFunctionCall",
405
407
  "CompletionCreateParamsNonStreamingMessagesItem",
@@ -97,7 +97,6 @@ class BlocksClient:
97
97
  read_only: typing.Optional[bool] = OMIT,
98
98
  description: typing.Optional[str] = OMIT,
99
99
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
100
- source_id: typing.Optional[str] = OMIT,
101
100
  request_options: typing.Optional[RequestOptions] = None,
102
101
  ) -> Block:
103
102
  """
@@ -136,9 +135,6 @@ class BlocksClient:
136
135
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
137
136
  Metadata of the block.
138
137
 
139
- source_id : typing.Optional[str]
140
- The source ID associated with this block (for file blocks).
141
-
142
138
  request_options : typing.Optional[RequestOptions]
143
139
  Request-specific configuration.
144
140
 
@@ -173,7 +169,6 @@ class BlocksClient:
173
169
  "read_only": read_only,
174
170
  "description": description,
175
171
  "metadata": metadata,
176
- "source_id": source_id,
177
172
  },
178
173
  request_options=request_options,
179
174
  omit=OMIT,
@@ -472,7 +467,6 @@ class AsyncBlocksClient:
472
467
  read_only: typing.Optional[bool] = OMIT,
473
468
  description: typing.Optional[str] = OMIT,
474
469
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
475
- source_id: typing.Optional[str] = OMIT,
476
470
  request_options: typing.Optional[RequestOptions] = None,
477
471
  ) -> Block:
478
472
  """
@@ -511,9 +505,6 @@ class AsyncBlocksClient:
511
505
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
512
506
  Metadata of the block.
513
507
 
514
- source_id : typing.Optional[str]
515
- The source ID associated with this block (for file blocks).
516
-
517
508
  request_options : typing.Optional[RequestOptions]
518
509
  Request-specific configuration.
519
510
 
@@ -556,7 +547,6 @@ class AsyncBlocksClient:
556
547
  "read_only": read_only,
557
548
  "description": description,
558
549
  "metadata": metadata,
559
- "source_id": source_id,
560
550
  },
561
551
  request_options=request_options,
562
552
  omit=OMIT,
@@ -999,6 +999,68 @@ class AgentsClient:
999
999
  raise ApiError(status_code=_response.status_code, body=_response.text)
1000
1000
  raise ApiError(status_code=_response.status_code, body=_response_json)
1001
1001
 
1002
+ def close_all_open_files(
1003
+ self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
1004
+ ) -> typing.List[str]:
1005
+ """
1006
+ Closes all currently open files for a given agent.
1007
+
1008
+ This endpoint updates the file state for the agent so that no files are marked as open.
1009
+ Typically used to reset the working memory view for the agent.
1010
+
1011
+ Parameters
1012
+ ----------
1013
+ agent_id : str
1014
+
1015
+ request_options : typing.Optional[RequestOptions]
1016
+ Request-specific configuration.
1017
+
1018
+ Returns
1019
+ -------
1020
+ typing.List[str]
1021
+ Successful Response
1022
+
1023
+ Examples
1024
+ --------
1025
+ from letta_client import Letta
1026
+
1027
+ client = Letta(
1028
+ project="YOUR_PROJECT",
1029
+ token="YOUR_TOKEN",
1030
+ )
1031
+ client.agents.close_all_open_files(
1032
+ agent_id="agent_id",
1033
+ )
1034
+ """
1035
+ _response = self._client_wrapper.httpx_client.request(
1036
+ f"v1/agents/{jsonable_encoder(agent_id)}/files/close-all",
1037
+ method="PATCH",
1038
+ request_options=request_options,
1039
+ )
1040
+ try:
1041
+ if 200 <= _response.status_code < 300:
1042
+ return typing.cast(
1043
+ typing.List[str],
1044
+ construct_type(
1045
+ type_=typing.List[str], # type: ignore
1046
+ object_=_response.json(),
1047
+ ),
1048
+ )
1049
+ if _response.status_code == 422:
1050
+ raise UnprocessableEntityError(
1051
+ typing.cast(
1052
+ HttpValidationError,
1053
+ construct_type(
1054
+ type_=HttpValidationError, # type: ignore
1055
+ object_=_response.json(),
1056
+ ),
1057
+ )
1058
+ )
1059
+ _response_json = _response.json()
1060
+ except JSONDecodeError:
1061
+ raise ApiError(status_code=_response.status_code, body=_response.text)
1062
+ raise ApiError(status_code=_response.status_code, body=_response_json)
1063
+
1002
1064
  def summarize_agent_conversation(
1003
1065
  self, agent_id: str, *, max_message_length: int, request_options: typing.Optional[RequestOptions] = None
1004
1066
  ) -> AgentState:
@@ -2166,6 +2228,76 @@ class AsyncAgentsClient:
2166
2228
  raise ApiError(status_code=_response.status_code, body=_response.text)
2167
2229
  raise ApiError(status_code=_response.status_code, body=_response_json)
2168
2230
 
2231
+ async def close_all_open_files(
2232
+ self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
2233
+ ) -> typing.List[str]:
2234
+ """
2235
+ Closes all currently open files for a given agent.
2236
+
2237
+ This endpoint updates the file state for the agent so that no files are marked as open.
2238
+ Typically used to reset the working memory view for the agent.
2239
+
2240
+ Parameters
2241
+ ----------
2242
+ agent_id : str
2243
+
2244
+ request_options : typing.Optional[RequestOptions]
2245
+ Request-specific configuration.
2246
+
2247
+ Returns
2248
+ -------
2249
+ typing.List[str]
2250
+ Successful Response
2251
+
2252
+ Examples
2253
+ --------
2254
+ import asyncio
2255
+
2256
+ from letta_client import AsyncLetta
2257
+
2258
+ client = AsyncLetta(
2259
+ project="YOUR_PROJECT",
2260
+ token="YOUR_TOKEN",
2261
+ )
2262
+
2263
+
2264
+ async def main() -> None:
2265
+ await client.agents.close_all_open_files(
2266
+ agent_id="agent_id",
2267
+ )
2268
+
2269
+
2270
+ asyncio.run(main())
2271
+ """
2272
+ _response = await self._client_wrapper.httpx_client.request(
2273
+ f"v1/agents/{jsonable_encoder(agent_id)}/files/close-all",
2274
+ method="PATCH",
2275
+ request_options=request_options,
2276
+ )
2277
+ try:
2278
+ if 200 <= _response.status_code < 300:
2279
+ return typing.cast(
2280
+ typing.List[str],
2281
+ construct_type(
2282
+ type_=typing.List[str], # type: ignore
2283
+ object_=_response.json(),
2284
+ ),
2285
+ )
2286
+ if _response.status_code == 422:
2287
+ raise UnprocessableEntityError(
2288
+ typing.cast(
2289
+ HttpValidationError,
2290
+ construct_type(
2291
+ type_=HttpValidationError, # type: ignore
2292
+ object_=_response.json(),
2293
+ ),
2294
+ )
2295
+ )
2296
+ _response_json = _response.json()
2297
+ except JSONDecodeError:
2298
+ raise ApiError(status_code=_response.status_code, body=_response.text)
2299
+ raise ApiError(status_code=_response.status_code, body=_response_json)
2300
+
2169
2301
  async def summarize_agent_conversation(
2170
2302
  self, agent_id: str, *, max_message_length: int, request_options: typing.Optional[RequestOptions] = None
2171
2303
  ) -> AgentState:
@@ -122,7 +122,6 @@ class BlocksClient:
122
122
  read_only: typing.Optional[bool] = OMIT,
123
123
  description: typing.Optional[str] = OMIT,
124
124
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
125
- source_id: typing.Optional[str] = OMIT,
126
125
  request_options: typing.Optional[RequestOptions] = None,
127
126
  ) -> Block:
128
127
  """
@@ -154,9 +153,6 @@ class BlocksClient:
154
153
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
155
154
  Metadata of the block.
156
155
 
157
- source_id : typing.Optional[str]
158
- The source ID associated with this block (for file blocks).
159
-
160
156
  request_options : typing.Optional[RequestOptions]
161
157
  Request-specific configuration.
162
158
 
@@ -191,7 +187,6 @@ class BlocksClient:
191
187
  "read_only": read_only,
192
188
  "description": description,
193
189
  "metadata": metadata,
194
- "source_id": source_id,
195
190
  },
196
191
  request_options=request_options,
197
192
  omit=OMIT,
@@ -396,7 +391,6 @@ class BlocksClient:
396
391
  read_only: typing.Optional[bool] = OMIT,
397
392
  description: typing.Optional[str] = OMIT,
398
393
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
399
- source_id: typing.Optional[str] = OMIT,
400
394
  request_options: typing.Optional[RequestOptions] = None,
401
395
  ) -> Block:
402
396
  """
@@ -431,9 +425,6 @@ class BlocksClient:
431
425
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
432
426
  Metadata of the block.
433
427
 
434
- source_id : typing.Optional[str]
435
- The source ID associated with this block (for file blocks).
436
-
437
428
  request_options : typing.Optional[RequestOptions]
438
429
  Request-specific configuration.
439
430
 
@@ -467,7 +458,6 @@ class BlocksClient:
467
458
  "read_only": read_only,
468
459
  "description": description,
469
460
  "metadata": metadata,
470
- "source_id": source_id,
471
461
  },
472
462
  request_options=request_options,
473
463
  omit=OMIT,
@@ -609,7 +599,6 @@ class AsyncBlocksClient:
609
599
  read_only: typing.Optional[bool] = OMIT,
610
600
  description: typing.Optional[str] = OMIT,
611
601
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
612
- source_id: typing.Optional[str] = OMIT,
613
602
  request_options: typing.Optional[RequestOptions] = None,
614
603
  ) -> Block:
615
604
  """
@@ -641,9 +630,6 @@ class AsyncBlocksClient:
641
630
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
642
631
  Metadata of the block.
643
632
 
644
- source_id : typing.Optional[str]
645
- The source ID associated with this block (for file blocks).
646
-
647
633
  request_options : typing.Optional[RequestOptions]
648
634
  Request-specific configuration.
649
635
 
@@ -686,7 +672,6 @@ class AsyncBlocksClient:
686
672
  "read_only": read_only,
687
673
  "description": description,
688
674
  "metadata": metadata,
689
- "source_id": source_id,
690
675
  },
691
676
  request_options=request_options,
692
677
  omit=OMIT,
@@ -915,7 +900,6 @@ class AsyncBlocksClient:
915
900
  read_only: typing.Optional[bool] = OMIT,
916
901
  description: typing.Optional[str] = OMIT,
917
902
  metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
918
- source_id: typing.Optional[str] = OMIT,
919
903
  request_options: typing.Optional[RequestOptions] = None,
920
904
  ) -> Block:
921
905
  """
@@ -950,9 +934,6 @@ class AsyncBlocksClient:
950
934
  metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
951
935
  Metadata of the block.
952
936
 
953
- source_id : typing.Optional[str]
954
- The source ID associated with this block (for file blocks).
955
-
956
937
  request_options : typing.Optional[RequestOptions]
957
938
  Request-specific configuration.
958
939
 
@@ -994,7 +975,6 @@ class AsyncBlocksClient:
994
975
  "read_only": read_only,
995
976
  "description": description,
996
977
  "metadata": metadata,
997
- "source_id": source_id,
998
978
  },
999
979
  request_options=request_options,
1000
980
  omit=OMIT,
@@ -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.186",
27
+ "X-Fern-SDK-Version": "0.1.188",
28
28
  }
29
29
  if self._project is not None:
30
30
  headers["X-Project"] = self._project
@@ -55,6 +55,7 @@ from .chat_completion_user_message_param_content import ChatCompletionUserMessag
55
55
  from .chat_completion_user_message_param_content_item import ChatCompletionUserMessageParamContentItem
56
56
  from .child_tool_rule import ChildToolRule
57
57
  from .child_tool_rule_schema import ChildToolRuleSchema
58
+ from .code_input import CodeInput
58
59
  from .completion_create_params_non_streaming import CompletionCreateParamsNonStreaming
59
60
  from .completion_create_params_non_streaming_function_call import CompletionCreateParamsNonStreamingFunctionCall
60
61
  from .completion_create_params_non_streaming_messages_item import CompletionCreateParamsNonStreamingMessagesItem
@@ -311,6 +312,7 @@ __all__ = [
311
312
  "ChatCompletionUserMessageParamContentItem",
312
313
  "ChildToolRule",
313
314
  "ChildToolRuleSchema",
315
+ "CodeInput",
314
316
  "CompletionCreateParamsNonStreaming",
315
317
  "CompletionCreateParamsNonStreamingFunctionCall",
316
318
  "CompletionCreateParamsNonStreamingMessagesItem",
@@ -67,11 +67,6 @@ class Block(UncheckedBaseModel):
67
67
  Metadata of the block.
68
68
  """
69
69
 
70
- source_id: typing.Optional[str] = pydantic.Field(default=None)
71
- """
72
- The source ID associated with this block (for file blocks).
73
- """
74
-
75
70
  id: typing.Optional[str] = pydantic.Field(default=None)
76
71
  """
77
72
  The human-friendly ID of the Block
@@ -56,11 +56,6 @@ class BlockUpdate(UncheckedBaseModel):
56
56
  Metadata of the block.
57
57
  """
58
58
 
59
- source_id: typing.Optional[str] = pydantic.Field(default=None)
60
- """
61
- The source ID associated with this block (for file blocks).
62
- """
63
-
64
59
  if IS_PYDANTIC_V2:
65
60
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
66
61
  else:
@@ -0,0 +1,22 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.unchecked_base_model import UncheckedBaseModel
4
+ import pydantic
5
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
6
+ import typing
7
+
8
+
9
+ class CodeInput(UncheckedBaseModel):
10
+ code: str = pydantic.Field()
11
+ """
12
+ Python source code to parse for JSON schema
13
+ """
14
+
15
+ if IS_PYDANTIC_V2:
16
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
17
+ else:
18
+
19
+ class Config:
20
+ frozen = True
21
+ smart_union = True
22
+ extra = pydantic.Extra.allow
@@ -52,11 +52,6 @@ class CreateBlock(UncheckedBaseModel):
52
52
  Metadata of the block.
53
53
  """
54
54
 
55
- source_id: typing.Optional[str] = pydantic.Field(default=None)
56
- """
57
- The source ID associated with this block (for file blocks).
58
- """
59
-
60
55
  if IS_PYDANTIC_V2:
61
56
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
62
57
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.186
3
+ Version: 0.1.188
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=OW9d5lmZRZOZF5Yn7b_1h3oJUoJz5TyMSayQW89iZRw,18094
1
+ letta_client/__init__.py,sha256=qJr7FK3esCAtlSArEc7x1oXME3Eo_eyGJb2MxXE0oRY,18126
2
2
  letta_client/agents/__init__.py,sha256=9L60SAZIihZzh_KhVxu0uX4RS7z2iKKctzQsS8ycXHc,1954
3
3
  letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
4
- letta_client/agents/blocks/client.py,sha256=T9Hrp3O6Bbpk_w9X-quR_WStTWDy7l1T1vsaMPqE4QE,25448
5
- letta_client/agents/client.py,sha256=95dMCgwMeIFtBwcDWw3-e14fUhd8N6d-mTDG6TRAhIk,89413
4
+ letta_client/agents/blocks/client.py,sha256=HwUOGmCQ_wuKb3_52ij1BBHRXdzIEd8SjW9-9Rop26Q,25044
5
+ letta_client/agents/client.py,sha256=B7ZsJGQqmeTUdP8yybRWh6qaoybopFCujzP99EDwk_k,93753
6
6
  letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
7
7
  letta_client/agents/context/client.py,sha256=O1gxStQyfzXi4MblatWalLTWM425gS_fndW3W_es08U,4887
8
8
  letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -52,7 +52,7 @@ letta_client/batches/client.py,sha256=DHnsRYHgxVh6OvfAE8etlbno1FMg4cIzAYiydJrfmJ
52
52
  letta_client/blocks/__init__.py,sha256=c6SGOs9_YGdydYAzhe5TUiaXq52rpWT1mNMcke8qGTQ,108
53
53
  letta_client/blocks/agents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
54
54
  letta_client/blocks/agents/client.py,sha256=KBeIrslvPqO4AlYMb3L4iDxvtqsS2GfvPRgzhvxI4Ws,4976
55
- letta_client/blocks/client.py,sha256=Prnpr1q2CIdBI6PgtsSjJC5V3gOlLr_HAdlfreANABE,32915
55
+ letta_client/blocks/client.py,sha256=N4wZjI0gCDOQDgquwAnV9FfVPUudxo-js5AEzW8rJz0,32107
56
56
  letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
57
57
  letta_client/client_side_access_tokens/__init__.py,sha256=z_wHT4UTBK7RzDIfLpdLMtBJBuuDosqgbzdmx-QME_o,763
58
58
  letta_client/client_side_access_tokens/client.py,sha256=0JUMP4g57xaoXY17g1XiPrfQXpIHMcat6hvwF3jGEMw,12416
@@ -65,7 +65,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_re
65
65
  letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
66
66
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
67
67
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
68
- letta_client/core/client_wrapper.py,sha256=8G_jACxEL8hyDvZDV0T68ISe1CkCwDTKzDl00Uc8KMg,2336
68
+ letta_client/core/client_wrapper.py,sha256=oB_S7J3NfdLa_T2UD9s14p8y3930PmlR4Z9RYwZiZZw,2336
69
69
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
70
70
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
71
71
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -160,7 +160,7 @@ letta_client/tools/types/list_mcp_servers_response_value.py,sha256=Eyji5qB7Fhowi
160
160
  letta_client/tools/types/test_mcp_server_request.py,sha256=sLlOEZdmLfkHqHCkUjntGbr8_MkBhsqpMQ-HwdNOnq0,372
161
161
  letta_client/tools/types/update_mcp_server_request.py,sha256=SEMNYHB_mwJNSMHKO7keU0C_CMBktV7lfZUnACPe_fU,314
162
162
  letta_client/tools/types/update_mcp_server_response.py,sha256=muwHagaQBMwQI0of9EBCBtG9lD-jELFAevgTB2MjpFQ,375
163
- letta_client/types/__init__.py,sha256=zN8B2TBwrfgDPvDp4E68EIn3SILewbUy618B_z35cgk,22373
163
+ letta_client/types/__init__.py,sha256=zgGRiro77khcejeFnKPl0Kazt-b6UDp8DV2xm4wqcOQ,22424
164
164
  letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
165
165
  letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
166
166
  letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
@@ -184,8 +184,8 @@ letta_client/types/bad_request_error_body.py,sha256=E4_eWEc9xeW9BkXGViBDrevV8Jf6
184
184
  letta_client/types/base_64_image.py,sha256=RarQnUE-5AnRAZF8W73h6y9K-b6Deq27KnMe93te5Lw,964
185
185
  letta_client/types/base_tool_rule_schema.py,sha256=FbnJy6gb8wY_DPiU3Gs-u1Ol_l4K7-nAmPTc1oR3kOo,582
186
186
  letta_client/types/batch_job.py,sha256=MIycCFHvBeVqSoi4WX_L_MPI92jnq-x4-F5XnHw-sYg,2364
187
- letta_client/types/block.py,sha256=FZsL0BAOAjdPNXEZDqTFkbFd6vnaI3VsF9PqL0NISzw,3333
188
- letta_client/types/block_update.py,sha256=GuMV8FOP9ww2BUTy1deirJO5OiL_0I8t_RGnKFexqfg,1929
187
+ letta_client/types/block.py,sha256=43aeirQFWcifNrXLjQnfEekQjfodO6DbTQXKjy8gofY,3185
188
+ letta_client/types/block_update.py,sha256=ALEConFeolPh9N1fhW9oY3De9JWOs75KK6DtkTUaWV4,1781
189
189
  letta_client/types/chat_completion_assistant_message_param.py,sha256=QwxAJ9RQqxtZKnt6g6RfDppuMIt-1RAIlpnfSrVdHgg,1219
190
190
  letta_client/types/chat_completion_assistant_message_param_content.py,sha256=CJ7Z_Jik2fzBYGy0UuvgDk0aLt3-Xpj3qswBLmWM0Sg,323
191
191
  letta_client/types/chat_completion_assistant_message_param_content_item.py,sha256=tF-E0jNH0ilRJgm4vPTqHguCb-TZZ0LJfTXxOnon23w,405
@@ -216,6 +216,7 @@ letta_client/types/chat_completion_user_message_param_content.py,sha256=XNFFnok5
216
216
  letta_client/types/chat_completion_user_message_param_content_item.py,sha256=ONQbm9RX1bbM9KO8a9mbWHyUEIuOq70wPiVFMhagLbU,579
217
217
  letta_client/types/child_tool_rule.py,sha256=GjRjRV2c4VF3h0fXNF75_yaZgHxSnAf75RRnfW1VvqM,1120
218
218
  letta_client/types/child_tool_rule_schema.py,sha256=1FrJDSyQvQ6eEyKUIvuNFfGzbrTdSdUfJg4gpNo6DrM,614
219
+ letta_client/types/code_input.py,sha256=WP1riaIt95ScwzjFO3gbuHIvgRarbO9dFnh88ET4CIo,637
219
220
  letta_client/types/completion_create_params_non_streaming.py,sha256=hjEJ-wJWuFuTy4Y73RIllBa1EMisK9gr7yQd8rrv_r8,4008
220
221
  letta_client/types/completion_create_params_non_streaming_function_call.py,sha256=6iCjgXwsXnflllhfDDKtHRyxzKqtLcX6-HVr7AXlyUM,329
221
222
  letta_client/types/completion_create_params_non_streaming_messages_item.py,sha256=pKMxLh1XFgMl7LqcjKJmdeKYTCwlr3FLFPTuvaLf3D0,883
@@ -243,7 +244,7 @@ letta_client/types/conflict_error_body.py,sha256=Mena-q1jti6nv_7-xrp6sDb_5MXNKPG
243
244
  letta_client/types/context_window_overview.py,sha256=9pwiObSxu-SFyQ1pxSTlQiRatVAyFgqa6t0_qrrsGfU,2815
244
245
  letta_client/types/continue_tool_rule.py,sha256=cGKyCh9LwxXJfWKEi8HMAcyBv3QTrmZkwt9YugzwtqY,1035
245
246
  letta_client/types/core_memory_block_schema.py,sha256=DGHyLAcFhHBm7oXkhkGIkkckcl9S2bCaU9b3qrUeNtc,984
246
- letta_client/types/create_block.py,sha256=fbmJT8mXoTYt7_SntNZW8QjZM8lhi6pDpo85RLQv1rE,1710
247
+ letta_client/types/create_block.py,sha256=cyyufU4MBcLGjCNeTFZE7TX4LUhQXIaZAVwaoYkMlpE,1562
247
248
  letta_client/types/dynamic_manager.py,sha256=5DRNqtUnjeTwOe5mkNB-SXItqLOfEX0avSrwsrJt1Aw,853
248
249
  letta_client/types/dynamic_manager_update.py,sha256=Kew94BsFP6vP9pUXpZDMFZAo3TyaYWKu1KPgoQQjKYg,888
249
250
  letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
@@ -414,6 +415,6 @@ letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J
414
415
  letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
415
416
  letta_client/voice/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
416
417
  letta_client/voice/client.py,sha256=47iQYCuW_qpKI4hM3pYVxn3hw7kgQj3emU1_oRpkRMA,5811
417
- letta_client-0.1.186.dist-info/METADATA,sha256=v4T5GG9qyqmDmNUSn9ZLIISKpHON-Jv7bKRqO9EnWUA,5177
418
- letta_client-0.1.186.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
419
- letta_client-0.1.186.dist-info/RECORD,,
418
+ letta_client-0.1.188.dist-info/METADATA,sha256=TEkQ5V_UrMFFUnhCY6eoYmSUg35MedSSfdkuIuhHwTM,5177
419
+ letta_client-0.1.188.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
420
+ letta_client-0.1.188.dist-info/RECORD,,