letta-client 0.1.277__py3-none-any.whl → 0.1.279__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.

@@ -24,10 +24,10 @@ class BaseClientWrapper:
24
24
 
25
25
  def get_headers(self) -> typing.Dict[str, str]:
26
26
  headers: typing.Dict[str, str] = {
27
- "User-Agent": "letta-client/0.1.277",
27
+ "User-Agent": "letta-client/0.1.279",
28
28
  "X-Fern-Language": "Python",
29
29
  "X-Fern-SDK-Name": "letta-client",
30
- "X-Fern-SDK-Version": "0.1.277",
30
+ "X-Fern-SDK-Version": "0.1.279",
31
31
  **(self.get_custom_headers() or {}),
32
32
  }
33
33
  if self._project is not None:
@@ -39,6 +39,7 @@ class RunsClient:
39
39
  self,
40
40
  *,
41
41
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
42
+ background: typing.Optional[bool] = None,
42
43
  request_options: typing.Optional[RequestOptions] = None,
43
44
  ) -> typing.List[Run]:
44
45
  """
@@ -49,6 +50,9 @@ class RunsClient:
49
50
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
50
51
  The unique identifier of the agent associated with the run.
51
52
 
53
+ background : typing.Optional[bool]
54
+ If True, filters for runs that were created in background mode.
55
+
52
56
  request_options : typing.Optional[RequestOptions]
53
57
  Request-specific configuration.
54
58
 
@@ -67,13 +71,14 @@ class RunsClient:
67
71
  )
68
72
  client.runs.list()
69
73
  """
70
- _response = self._raw_client.list(agent_ids=agent_ids, request_options=request_options)
74
+ _response = self._raw_client.list(agent_ids=agent_ids, background=background, request_options=request_options)
71
75
  return _response.data
72
76
 
73
77
  def list_active(
74
78
  self,
75
79
  *,
76
80
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
81
+ background: typing.Optional[bool] = None,
77
82
  request_options: typing.Optional[RequestOptions] = None,
78
83
  ) -> typing.List[Run]:
79
84
  """
@@ -84,6 +89,9 @@ class RunsClient:
84
89
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
85
90
  The unique identifier of the agent associated with the run.
86
91
 
92
+ background : typing.Optional[bool]
93
+ If True, filters for runs that were created in background mode.
94
+
87
95
  request_options : typing.Optional[RequestOptions]
88
96
  Request-specific configuration.
89
97
 
@@ -102,7 +110,9 @@ class RunsClient:
102
110
  )
103
111
  client.runs.list_active()
104
112
  """
105
- _response = self._raw_client.list_active(agent_ids=agent_ids, request_options=request_options)
113
+ _response = self._raw_client.list_active(
114
+ agent_ids=agent_ids, background=background, request_options=request_options
115
+ )
106
116
  return _response.data
107
117
 
108
118
  def retrieve(self, run_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> Run:
@@ -251,6 +261,7 @@ class AsyncRunsClient:
251
261
  self,
252
262
  *,
253
263
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
264
+ background: typing.Optional[bool] = None,
254
265
  request_options: typing.Optional[RequestOptions] = None,
255
266
  ) -> typing.List[Run]:
256
267
  """
@@ -261,6 +272,9 @@ class AsyncRunsClient:
261
272
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
262
273
  The unique identifier of the agent associated with the run.
263
274
 
275
+ background : typing.Optional[bool]
276
+ If True, filters for runs that were created in background mode.
277
+
264
278
  request_options : typing.Optional[RequestOptions]
265
279
  Request-specific configuration.
266
280
 
@@ -287,13 +301,16 @@ class AsyncRunsClient:
287
301
 
288
302
  asyncio.run(main())
289
303
  """
290
- _response = await self._raw_client.list(agent_ids=agent_ids, request_options=request_options)
304
+ _response = await self._raw_client.list(
305
+ agent_ids=agent_ids, background=background, request_options=request_options
306
+ )
291
307
  return _response.data
292
308
 
293
309
  async def list_active(
294
310
  self,
295
311
  *,
296
312
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
313
+ background: typing.Optional[bool] = None,
297
314
  request_options: typing.Optional[RequestOptions] = None,
298
315
  ) -> typing.List[Run]:
299
316
  """
@@ -304,6 +321,9 @@ class AsyncRunsClient:
304
321
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
305
322
  The unique identifier of the agent associated with the run.
306
323
 
324
+ background : typing.Optional[bool]
325
+ If True, filters for runs that were created in background mode.
326
+
307
327
  request_options : typing.Optional[RequestOptions]
308
328
  Request-specific configuration.
309
329
 
@@ -330,7 +350,9 @@ class AsyncRunsClient:
330
350
 
331
351
  asyncio.run(main())
332
352
  """
333
- _response = await self._raw_client.list_active(agent_ids=agent_ids, request_options=request_options)
353
+ _response = await self._raw_client.list_active(
354
+ agent_ids=agent_ids, background=background, request_options=request_options
355
+ )
334
356
  return _response.data
335
357
 
336
358
  async def retrieve(self, run_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> Run:
@@ -29,6 +29,7 @@ class RawRunsClient:
29
29
  self,
30
30
  *,
31
31
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
32
+ background: typing.Optional[bool] = None,
32
33
  request_options: typing.Optional[RequestOptions] = None,
33
34
  ) -> HttpResponse[typing.List[Run]]:
34
35
  """
@@ -39,6 +40,9 @@ class RawRunsClient:
39
40
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
40
41
  The unique identifier of the agent associated with the run.
41
42
 
43
+ background : typing.Optional[bool]
44
+ If True, filters for runs that were created in background mode.
45
+
42
46
  request_options : typing.Optional[RequestOptions]
43
47
  Request-specific configuration.
44
48
 
@@ -52,6 +56,7 @@ class RawRunsClient:
52
56
  method="GET",
53
57
  params={
54
58
  "agent_ids": agent_ids,
59
+ "background": background,
55
60
  },
56
61
  request_options=request_options,
57
62
  )
@@ -85,6 +90,7 @@ class RawRunsClient:
85
90
  self,
86
91
  *,
87
92
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
93
+ background: typing.Optional[bool] = None,
88
94
  request_options: typing.Optional[RequestOptions] = None,
89
95
  ) -> HttpResponse[typing.List[Run]]:
90
96
  """
@@ -95,6 +101,9 @@ class RawRunsClient:
95
101
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
96
102
  The unique identifier of the agent associated with the run.
97
103
 
104
+ background : typing.Optional[bool]
105
+ If True, filters for runs that were created in background mode.
106
+
98
107
  request_options : typing.Optional[RequestOptions]
99
108
  Request-specific configuration.
100
109
 
@@ -108,6 +117,7 @@ class RawRunsClient:
108
117
  method="GET",
109
118
  params={
110
119
  "agent_ids": agent_ids,
120
+ "background": background,
111
121
  },
112
122
  request_options=request_options,
113
123
  )
@@ -335,6 +345,7 @@ class AsyncRawRunsClient:
335
345
  self,
336
346
  *,
337
347
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
348
+ background: typing.Optional[bool] = None,
338
349
  request_options: typing.Optional[RequestOptions] = None,
339
350
  ) -> AsyncHttpResponse[typing.List[Run]]:
340
351
  """
@@ -345,6 +356,9 @@ class AsyncRawRunsClient:
345
356
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
346
357
  The unique identifier of the agent associated with the run.
347
358
 
359
+ background : typing.Optional[bool]
360
+ If True, filters for runs that were created in background mode.
361
+
348
362
  request_options : typing.Optional[RequestOptions]
349
363
  Request-specific configuration.
350
364
 
@@ -358,6 +372,7 @@ class AsyncRawRunsClient:
358
372
  method="GET",
359
373
  params={
360
374
  "agent_ids": agent_ids,
375
+ "background": background,
361
376
  },
362
377
  request_options=request_options,
363
378
  )
@@ -391,6 +406,7 @@ class AsyncRawRunsClient:
391
406
  self,
392
407
  *,
393
408
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
409
+ background: typing.Optional[bool] = None,
394
410
  request_options: typing.Optional[RequestOptions] = None,
395
411
  ) -> AsyncHttpResponse[typing.List[Run]]:
396
412
  """
@@ -401,6 +417,9 @@ class AsyncRawRunsClient:
401
417
  agent_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
402
418
  The unique identifier of the agent associated with the run.
403
419
 
420
+ background : typing.Optional[bool]
421
+ If True, filters for runs that were created in background mode.
422
+
404
423
  request_options : typing.Optional[RequestOptions]
405
424
  Request-specific configuration.
406
425
 
@@ -414,6 +433,7 @@ class AsyncRawRunsClient:
414
433
  method="GET",
415
434
  params={
416
435
  "agent_ids": agent_ids,
436
+ "background": background,
417
437
  },
418
438
  request_options=request_options,
419
439
  )
@@ -85,6 +85,7 @@ class FilesClient:
85
85
  limit: typing.Optional[int] = None,
86
86
  after: typing.Optional[str] = None,
87
87
  include_content: typing.Optional[bool] = None,
88
+ check_status_updates: typing.Optional[bool] = None,
88
89
  request_options: typing.Optional[RequestOptions] = None,
89
90
  ) -> typing.List[FileMetadata]:
90
91
  """
@@ -103,6 +104,9 @@ class FilesClient:
103
104
  include_content : typing.Optional[bool]
104
105
  Whether to include full file content
105
106
 
107
+ check_status_updates : typing.Optional[bool]
108
+ Whether to check and update file processing status (from the vector db service). If False, will not fetch and update the status, which may lead to performance gains.
109
+
106
110
  request_options : typing.Optional[RequestOptions]
107
111
  Request-specific configuration.
108
112
 
@@ -124,7 +128,12 @@ class FilesClient:
124
128
  )
125
129
  """
126
130
  _response = self._raw_client.list(
127
- source_id, limit=limit, after=after, include_content=include_content, request_options=request_options
131
+ source_id,
132
+ limit=limit,
133
+ after=after,
134
+ include_content=include_content,
135
+ check_status_updates=check_status_updates,
136
+ request_options=request_options,
128
137
  )
129
138
  return _response.data
130
139
 
@@ -242,6 +251,7 @@ class AsyncFilesClient:
242
251
  limit: typing.Optional[int] = None,
243
252
  after: typing.Optional[str] = None,
244
253
  include_content: typing.Optional[bool] = None,
254
+ check_status_updates: typing.Optional[bool] = None,
245
255
  request_options: typing.Optional[RequestOptions] = None,
246
256
  ) -> typing.List[FileMetadata]:
247
257
  """
@@ -260,6 +270,9 @@ class AsyncFilesClient:
260
270
  include_content : typing.Optional[bool]
261
271
  Whether to include full file content
262
272
 
273
+ check_status_updates : typing.Optional[bool]
274
+ Whether to check and update file processing status (from the vector db service). If False, will not fetch and update the status, which may lead to performance gains.
275
+
263
276
  request_options : typing.Optional[RequestOptions]
264
277
  Request-specific configuration.
265
278
 
@@ -289,7 +302,12 @@ class AsyncFilesClient:
289
302
  asyncio.run(main())
290
303
  """
291
304
  _response = await self._raw_client.list(
292
- source_id, limit=limit, after=after, include_content=include_content, request_options=request_options
305
+ source_id,
306
+ limit=limit,
307
+ after=after,
308
+ include_content=include_content,
309
+ check_status_updates=check_status_updates,
310
+ request_options=request_options,
293
311
  )
294
312
  return _response.data
295
313
 
@@ -104,6 +104,7 @@ class RawFilesClient:
104
104
  limit: typing.Optional[int] = None,
105
105
  after: typing.Optional[str] = None,
106
106
  include_content: typing.Optional[bool] = None,
107
+ check_status_updates: typing.Optional[bool] = None,
107
108
  request_options: typing.Optional[RequestOptions] = None,
108
109
  ) -> HttpResponse[typing.List[FileMetadata]]:
109
110
  """
@@ -122,6 +123,9 @@ class RawFilesClient:
122
123
  include_content : typing.Optional[bool]
123
124
  Whether to include full file content
124
125
 
126
+ check_status_updates : typing.Optional[bool]
127
+ Whether to check and update file processing status (from the vector db service). If False, will not fetch and update the status, which may lead to performance gains.
128
+
125
129
  request_options : typing.Optional[RequestOptions]
126
130
  Request-specific configuration.
127
131
 
@@ -137,6 +141,7 @@ class RawFilesClient:
137
141
  "limit": limit,
138
142
  "after": after,
139
143
  "include_content": include_content,
144
+ "check_status_updates": check_status_updates,
140
145
  },
141
146
  request_options=request_options,
142
147
  )
@@ -295,6 +300,7 @@ class AsyncRawFilesClient:
295
300
  limit: typing.Optional[int] = None,
296
301
  after: typing.Optional[str] = None,
297
302
  include_content: typing.Optional[bool] = None,
303
+ check_status_updates: typing.Optional[bool] = None,
298
304
  request_options: typing.Optional[RequestOptions] = None,
299
305
  ) -> AsyncHttpResponse[typing.List[FileMetadata]]:
300
306
  """
@@ -313,6 +319,9 @@ class AsyncRawFilesClient:
313
319
  include_content : typing.Optional[bool]
314
320
  Whether to include full file content
315
321
 
322
+ check_status_updates : typing.Optional[bool]
323
+ Whether to check and update file processing status (from the vector db service). If False, will not fetch and update the status, which may lead to performance gains.
324
+
316
325
  request_options : typing.Optional[RequestOptions]
317
326
  Request-specific configuration.
318
327
 
@@ -328,6 +337,7 @@ class AsyncRawFilesClient:
328
337
  "limit": limit,
329
338
  "after": after,
330
339
  "include_content": include_content,
340
+ "check_status_updates": check_status_updates,
331
341
  },
332
342
  request_options=request_options,
333
343
  )
@@ -16,6 +16,7 @@ class TemplatesGetTemplateSnapshotResponseAgentsItemProperties(UncheckedBaseMode
16
16
  max_files_open: typing.Optional[float] = None
17
17
  message_buffer_autoclear: typing.Optional[bool] = None
18
18
  per_file_view_window_char_limit: typing.Optional[float] = None
19
+ temperature: typing.Optional[float] = None
19
20
 
20
21
  if IS_PYDANTIC_V2:
21
22
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.277
3
+ Version: 0.1.279
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
30
30
  [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fletta-ai%2Fletta-python)
31
31
  [![pypi](https://img.shields.io/pypi/v/letta-client)](https://pypi.python.org/pypi/letta-client)
32
32
 
33
- The Letta Python library provides convenient access to the Letta API from Python.
33
+ The Letta Python library provides convenient access to the Letta APIs from Python.
34
34
 
35
35
  ## Installation
36
36
 
@@ -90,7 +90,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
90
90
  letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py,sha256=kNHfEWFl7u71Pu8NPqutod0a2NXfvq8il05Hqm0iBB4,284
91
91
  letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
92
92
  letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
93
- letta_client/core/client_wrapper.py,sha256=qM2jq77f0f7-rxfEu2Bs-StIY2KCCf7374oISiMizqw,2776
93
+ letta_client/core/client_wrapper.py,sha256=TRLBxm8O2-zoarCi6gHYF23PNBX56FaYtCAex0bcRhw,2776
94
94
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
95
95
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
96
96
  letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -164,11 +164,11 @@ letta_client/providers/client.py,sha256=999OcO9GFtwmgx9PxA3lF-dEOp4ZEADsWDckeIKc
164
164
  letta_client/providers/raw_client.py,sha256=vg3z7P7UOjtLraW6GYb2YS5q496GYoyWN1s7u127q8E,30135
165
165
  letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
166
  letta_client/runs/__init__.py,sha256=rTMzYM1OUKbBt0EOGKEhjNDseImuXG9gUdMCjy2mEbQ,232
167
- letta_client/runs/client.py,sha256=SOg_BxqMyHafUJnS7Gf-J5pbMsx87RZ-s7D198neiHs,13242
167
+ letta_client/runs/client.py,sha256=b2gKIc2l9KMao09cGRnmOrbjKmhUVUhKUR-cfutDnnA,14080
168
168
  letta_client/runs/messages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
169
169
  letta_client/runs/messages/client.py,sha256=Ir9uA6W7kSpMLaOgmJeUKAokT4FgAH3l3sMucH-yqds,6998
170
170
  letta_client/runs/messages/raw_client.py,sha256=PbbkMSucuK-AmhcUyAdMtdtbnDSZGHb0nvw0vJqlb3s,8963
171
- letta_client/runs/raw_client.py,sha256=oQFNOL2zY46DiaM3qsBuEXm_j0vPZC2EC6NhxNLQ8N8,24658
171
+ letta_client/runs/raw_client.py,sha256=m4teQ7fO-2zPzTz7uRl05S787aogA5zeKeNGlXMNNlQ,25506
172
172
  letta_client/runs/steps/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
173
173
  letta_client/runs/steps/client.py,sha256=4MiWOwmSiIX-0U_ic5a-x72Svjh2N7q6etXA5VJ9V30,6074
174
174
  letta_client/runs/steps/raw_client.py,sha256=dbM7QYusDn_u4UYZl0I_jK-hCOek_m525we6boGo8jA,7973
@@ -180,8 +180,8 @@ letta_client/runs/usage/raw_client.py,sha256=cNOsh9fT6MifL9Nh7sEpuNo6LmU0C0AfRv-
180
180
  letta_client/sources/__init__.py,sha256=Y43-19f7EppL3LmM4hO5LtqT2CRaDJb0LAfnHurqYxU,148
181
181
  letta_client/sources/client.py,sha256=A_wBPqj8kkQ5RPeeJljvj8lQ9-HuDogNG6t3DJUnHWk,25755
182
182
  letta_client/sources/files/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
183
- letta_client/sources/files/client.py,sha256=IK44DV9IfnRNC6q0kPI8KTfAklp8ov2Qfc3y3BEYIS0,8924
184
- letta_client/sources/files/raw_client.py,sha256=czmNIQkCnAykz5C4CInJwcyzx_4qji2zrxeBCZh0Z-U,14497
183
+ letta_client/sources/files/client.py,sha256=vicwwYIuRJeCzjNUeYGx9Qs3OsrSIWs8TU3iCGyQYIw,9716
184
+ letta_client/sources/files/raw_client.py,sha256=7_ZU-U2rf9I0lwc0MLCV-K8zXNGbfBdYbnCvCUvd9sw,15205
185
185
  letta_client/sources/passages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
186
186
  letta_client/sources/passages/client.py,sha256=6wo3iTfQcDLvmS-TaoX6wUXZ31t1l3VAdoIoJwEVVFY,4064
187
187
  letta_client/sources/passages/raw_client.py,sha256=iPIHJs_pmSsbyu5vBFuQdopymxlfQDkEKN4cs4YKVB8,5901
@@ -218,7 +218,7 @@ letta_client/templates/types/templates_get_template_snapshot_response.py,sha256=
218
218
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item.py,sha256=ciczqvGIPMcuZCu3ObpVAZh8u_cDWbY6ImApwBOK6lc,2567
219
219
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables.py,sha256=POh1PTstz0UC_rOnkpEyIQI0yHrANeM6Y5vuJlJAruU,877
220
220
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_memory_variables_data_item.py,sha256=TNgE_92wCm2MEGERb_q24_GKzvbh1z1I3pchuwowowA,816
221
- letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties.py,sha256=kIyAiTnIdJ5M5tM96lq4zJE7EGVMzZKnJzi8UtruKgw,1037
221
+ letta_client/templates/types/templates_get_template_snapshot_response_agents_item_properties.py,sha256=9s-Abzd4QfGjeOyzrdwrPLad4mZx7z4cvX7aOKbeyHs,1084
222
222
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item.py,sha256=qoZ-EdDcNRYAQ2bADpvPLAzTKURXZR7ubz4o8yIu3LA,2061
223
223
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_child_output_mapping.py,sha256=LLnaNqnXFnoLRTZo2O9nCFlkLTkdj2Re1h6ItsM-_RQ,895
224
224
  letta_client/templates/types/templates_get_template_snapshot_response_agents_item_tool_rules_item_five.py,sha256=6yyJTWEoTy6UVFHqqzbvfY_i1VmWLuZVaRBWU8EbKx8,738
@@ -566,6 +566,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
566
566
  letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
567
567
  letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
568
568
  letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
569
- letta_client-0.1.277.dist-info/METADATA,sha256=jYPmqfBlNJx64sEmeU4N7WhE20n-rwrAULTToFf_2_I,5781
570
- letta_client-0.1.277.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
571
- letta_client-0.1.277.dist-info/RECORD,,
569
+ letta_client-0.1.279.dist-info/METADATA,sha256=Qi7i-C24HlApUWaBDl6Ml4sygCASQMMx6hmkTP7wkIs,5782
570
+ letta_client-0.1.279.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
571
+ letta_client-0.1.279.dist-info/RECORD,,