letta-client 0.1.262__py3-none-any.whl → 0.1.264__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/agents/messages/client.py +2 -22
- letta_client/agents/messages/raw_client.py +0 -10
- letta_client/core/client_wrapper.py +2 -2
- letta_client/tools/client.py +10 -0
- letta_client/tools/raw_client.py +10 -0
- letta_client/types/code_input.py +6 -1
- {letta_client-0.1.262.dist-info → letta_client-0.1.264.dist-info}/METADATA +1 -1
- {letta_client-0.1.262.dist-info → letta_client-0.1.264.dist-info}/RECORD +9 -9
- {letta_client-0.1.262.dist-info → letta_client-0.1.264.dist-info}/WHEEL +0 -0
|
@@ -347,7 +347,6 @@ class MessagesClient:
|
|
|
347
347
|
self,
|
|
348
348
|
agent_id: str,
|
|
349
349
|
*,
|
|
350
|
-
cancel_agent_run_request_agent_id: str,
|
|
351
350
|
run_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
352
351
|
request_options: typing.Optional[RequestOptions] = None,
|
|
353
352
|
) -> typing.Dict[str, typing.Optional[typing.Any]]:
|
|
@@ -360,9 +359,6 @@ class MessagesClient:
|
|
|
360
359
|
----------
|
|
361
360
|
agent_id : str
|
|
362
361
|
|
|
363
|
-
cancel_agent_run_request_agent_id : str
|
|
364
|
-
ID of the agent to cancel runs for
|
|
365
|
-
|
|
366
362
|
run_ids : typing.Optional[typing.Sequence[str]]
|
|
367
363
|
Optional list of run IDs to cancel
|
|
368
364
|
|
|
@@ -384,15 +380,9 @@ class MessagesClient:
|
|
|
384
380
|
)
|
|
385
381
|
client.agents.messages.cancel(
|
|
386
382
|
agent_id="agent_id",
|
|
387
|
-
cancel_agent_run_request_agent_id="agent_id",
|
|
388
383
|
)
|
|
389
384
|
"""
|
|
390
|
-
_response = self._raw_client.cancel(
|
|
391
|
-
agent_id,
|
|
392
|
-
cancel_agent_run_request_agent_id=cancel_agent_run_request_agent_id,
|
|
393
|
-
run_ids=run_ids,
|
|
394
|
-
request_options=request_options,
|
|
395
|
-
)
|
|
385
|
+
_response = self._raw_client.cancel(agent_id, run_ids=run_ids, request_options=request_options)
|
|
396
386
|
return _response.data
|
|
397
387
|
|
|
398
388
|
def create_async(
|
|
@@ -948,7 +938,6 @@ class AsyncMessagesClient:
|
|
|
948
938
|
self,
|
|
949
939
|
agent_id: str,
|
|
950
940
|
*,
|
|
951
|
-
cancel_agent_run_request_agent_id: str,
|
|
952
941
|
run_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
953
942
|
request_options: typing.Optional[RequestOptions] = None,
|
|
954
943
|
) -> typing.Dict[str, typing.Optional[typing.Any]]:
|
|
@@ -961,9 +950,6 @@ class AsyncMessagesClient:
|
|
|
961
950
|
----------
|
|
962
951
|
agent_id : str
|
|
963
952
|
|
|
964
|
-
cancel_agent_run_request_agent_id : str
|
|
965
|
-
ID of the agent to cancel runs for
|
|
966
|
-
|
|
967
953
|
run_ids : typing.Optional[typing.Sequence[str]]
|
|
968
954
|
Optional list of run IDs to cancel
|
|
969
955
|
|
|
@@ -990,18 +976,12 @@ class AsyncMessagesClient:
|
|
|
990
976
|
async def main() -> None:
|
|
991
977
|
await client.agents.messages.cancel(
|
|
992
978
|
agent_id="agent_id",
|
|
993
|
-
cancel_agent_run_request_agent_id="agent_id",
|
|
994
979
|
)
|
|
995
980
|
|
|
996
981
|
|
|
997
982
|
asyncio.run(main())
|
|
998
983
|
"""
|
|
999
|
-
_response = await self._raw_client.cancel(
|
|
1000
|
-
agent_id,
|
|
1001
|
-
cancel_agent_run_request_agent_id=cancel_agent_run_request_agent_id,
|
|
1002
|
-
run_ids=run_ids,
|
|
1003
|
-
request_options=request_options,
|
|
1004
|
-
)
|
|
984
|
+
_response = await self._raw_client.cancel(agent_id, run_ids=run_ids, request_options=request_options)
|
|
1005
985
|
return _response.data
|
|
1006
986
|
|
|
1007
987
|
async def create_async(
|
|
@@ -419,7 +419,6 @@ class RawMessagesClient:
|
|
|
419
419
|
self,
|
|
420
420
|
agent_id: str,
|
|
421
421
|
*,
|
|
422
|
-
cancel_agent_run_request_agent_id: str,
|
|
423
422
|
run_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
424
423
|
request_options: typing.Optional[RequestOptions] = None,
|
|
425
424
|
) -> HttpResponse[typing.Dict[str, typing.Optional[typing.Any]]]:
|
|
@@ -432,9 +431,6 @@ class RawMessagesClient:
|
|
|
432
431
|
----------
|
|
433
432
|
agent_id : str
|
|
434
433
|
|
|
435
|
-
cancel_agent_run_request_agent_id : str
|
|
436
|
-
ID of the agent to cancel runs for
|
|
437
|
-
|
|
438
434
|
run_ids : typing.Optional[typing.Sequence[str]]
|
|
439
435
|
Optional list of run IDs to cancel
|
|
440
436
|
|
|
@@ -450,7 +446,6 @@ class RawMessagesClient:
|
|
|
450
446
|
f"v1/agents/{jsonable_encoder(agent_id)}/messages/cancel",
|
|
451
447
|
method="POST",
|
|
452
448
|
json={
|
|
453
|
-
"agent_id": cancel_agent_run_request_agent_id,
|
|
454
449
|
"run_ids": run_ids,
|
|
455
450
|
},
|
|
456
451
|
headers={
|
|
@@ -1104,7 +1099,6 @@ class AsyncRawMessagesClient:
|
|
|
1104
1099
|
self,
|
|
1105
1100
|
agent_id: str,
|
|
1106
1101
|
*,
|
|
1107
|
-
cancel_agent_run_request_agent_id: str,
|
|
1108
1102
|
run_ids: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
1109
1103
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1110
1104
|
) -> AsyncHttpResponse[typing.Dict[str, typing.Optional[typing.Any]]]:
|
|
@@ -1117,9 +1111,6 @@ class AsyncRawMessagesClient:
|
|
|
1117
1111
|
----------
|
|
1118
1112
|
agent_id : str
|
|
1119
1113
|
|
|
1120
|
-
cancel_agent_run_request_agent_id : str
|
|
1121
|
-
ID of the agent to cancel runs for
|
|
1122
|
-
|
|
1123
1114
|
run_ids : typing.Optional[typing.Sequence[str]]
|
|
1124
1115
|
Optional list of run IDs to cancel
|
|
1125
1116
|
|
|
@@ -1135,7 +1126,6 @@ class AsyncRawMessagesClient:
|
|
|
1135
1126
|
f"v1/agents/{jsonable_encoder(agent_id)}/messages/cancel",
|
|
1136
1127
|
method="POST",
|
|
1137
1128
|
json={
|
|
1138
|
-
"agent_id": cancel_agent_run_request_agent_id,
|
|
1139
1129
|
"run_ids": run_ids,
|
|
1140
1130
|
},
|
|
1141
1131
|
headers={
|
|
@@ -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.
|
|
27
|
+
"User-Agent": "letta-client/0.1.264",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "letta-client",
|
|
30
|
-
"X-Fern-SDK-Version": "0.1.
|
|
30
|
+
"X-Fern-SDK-Version": "0.1.264",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
letta_client/tools/client.py
CHANGED
|
@@ -118,6 +118,7 @@ class ToolsClient:
|
|
|
118
118
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
119
119
|
pip_requirements: typing.Optional[typing.Sequence[PipRequirement]] = OMIT,
|
|
120
120
|
npm_requirements: typing.Optional[typing.Sequence[NpmRequirement]] = OMIT,
|
|
121
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
121
122
|
request_options: typing.Optional[RequestOptions] = None,
|
|
122
123
|
) -> Tool:
|
|
123
124
|
"""
|
|
@@ -154,6 +155,9 @@ class ToolsClient:
|
|
|
154
155
|
npm_requirements : typing.Optional[typing.Sequence[NpmRequirement]]
|
|
155
156
|
Optional list of npm packages required by this tool.
|
|
156
157
|
|
|
158
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
159
|
+
A dictionary of additional metadata for the tool.
|
|
160
|
+
|
|
157
161
|
request_options : typing.Optional[RequestOptions]
|
|
158
162
|
Request-specific configuration.
|
|
159
163
|
|
|
@@ -185,6 +189,7 @@ class ToolsClient:
|
|
|
185
189
|
return_char_limit=return_char_limit,
|
|
186
190
|
pip_requirements=pip_requirements,
|
|
187
191
|
npm_requirements=npm_requirements,
|
|
192
|
+
metadata=metadata,
|
|
188
193
|
request_options=request_options,
|
|
189
194
|
)
|
|
190
195
|
return _response.data
|
|
@@ -1028,6 +1033,7 @@ class AsyncToolsClient:
|
|
|
1028
1033
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
1029
1034
|
pip_requirements: typing.Optional[typing.Sequence[PipRequirement]] = OMIT,
|
|
1030
1035
|
npm_requirements: typing.Optional[typing.Sequence[NpmRequirement]] = OMIT,
|
|
1036
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1031
1037
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1032
1038
|
) -> Tool:
|
|
1033
1039
|
"""
|
|
@@ -1064,6 +1070,9 @@ class AsyncToolsClient:
|
|
|
1064
1070
|
npm_requirements : typing.Optional[typing.Sequence[NpmRequirement]]
|
|
1065
1071
|
Optional list of npm packages required by this tool.
|
|
1066
1072
|
|
|
1073
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
1074
|
+
A dictionary of additional metadata for the tool.
|
|
1075
|
+
|
|
1067
1076
|
request_options : typing.Optional[RequestOptions]
|
|
1068
1077
|
Request-specific configuration.
|
|
1069
1078
|
|
|
@@ -1103,6 +1112,7 @@ class AsyncToolsClient:
|
|
|
1103
1112
|
return_char_limit=return_char_limit,
|
|
1104
1113
|
pip_requirements=pip_requirements,
|
|
1105
1114
|
npm_requirements=npm_requirements,
|
|
1115
|
+
metadata=metadata,
|
|
1106
1116
|
request_options=request_options,
|
|
1107
1117
|
)
|
|
1108
1118
|
return _response.data
|
letta_client/tools/raw_client.py
CHANGED
|
@@ -151,6 +151,7 @@ class RawToolsClient:
|
|
|
151
151
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
152
152
|
pip_requirements: typing.Optional[typing.Sequence[PipRequirement]] = OMIT,
|
|
153
153
|
npm_requirements: typing.Optional[typing.Sequence[NpmRequirement]] = OMIT,
|
|
154
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
154
155
|
request_options: typing.Optional[RequestOptions] = None,
|
|
155
156
|
) -> HttpResponse[Tool]:
|
|
156
157
|
"""
|
|
@@ -187,6 +188,9 @@ class RawToolsClient:
|
|
|
187
188
|
npm_requirements : typing.Optional[typing.Sequence[NpmRequirement]]
|
|
188
189
|
Optional list of npm packages required by this tool.
|
|
189
190
|
|
|
191
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
192
|
+
A dictionary of additional metadata for the tool.
|
|
193
|
+
|
|
190
194
|
request_options : typing.Optional[RequestOptions]
|
|
191
195
|
Request-specific configuration.
|
|
192
196
|
|
|
@@ -212,6 +216,7 @@ class RawToolsClient:
|
|
|
212
216
|
"npm_requirements": convert_and_respect_annotation_metadata(
|
|
213
217
|
object_=npm_requirements, annotation=typing.Sequence[NpmRequirement], direction="write"
|
|
214
218
|
),
|
|
219
|
+
"metadata_": metadata,
|
|
215
220
|
},
|
|
216
221
|
headers={
|
|
217
222
|
"content-type": "application/json",
|
|
@@ -1445,6 +1450,7 @@ class AsyncRawToolsClient:
|
|
|
1445
1450
|
return_char_limit: typing.Optional[int] = OMIT,
|
|
1446
1451
|
pip_requirements: typing.Optional[typing.Sequence[PipRequirement]] = OMIT,
|
|
1447
1452
|
npm_requirements: typing.Optional[typing.Sequence[NpmRequirement]] = OMIT,
|
|
1453
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1448
1454
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1449
1455
|
) -> AsyncHttpResponse[Tool]:
|
|
1450
1456
|
"""
|
|
@@ -1481,6 +1487,9 @@ class AsyncRawToolsClient:
|
|
|
1481
1487
|
npm_requirements : typing.Optional[typing.Sequence[NpmRequirement]]
|
|
1482
1488
|
Optional list of npm packages required by this tool.
|
|
1483
1489
|
|
|
1490
|
+
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
1491
|
+
A dictionary of additional metadata for the tool.
|
|
1492
|
+
|
|
1484
1493
|
request_options : typing.Optional[RequestOptions]
|
|
1485
1494
|
Request-specific configuration.
|
|
1486
1495
|
|
|
@@ -1506,6 +1515,7 @@ class AsyncRawToolsClient:
|
|
|
1506
1515
|
"npm_requirements": convert_and_respect_annotation_metadata(
|
|
1507
1516
|
object_=npm_requirements, annotation=typing.Sequence[NpmRequirement], direction="write"
|
|
1508
1517
|
),
|
|
1518
|
+
"metadata_": metadata,
|
|
1509
1519
|
},
|
|
1510
1520
|
headers={
|
|
1511
1521
|
"content-type": "application/json",
|
letta_client/types/code_input.py
CHANGED
|
@@ -10,7 +10,12 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
10
10
|
class CodeInput(UncheckedBaseModel):
|
|
11
11
|
code: str = pydantic.Field()
|
|
12
12
|
"""
|
|
13
|
-
|
|
13
|
+
Source code to parse for JSON schema
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
source_type: typing.Optional[str] = pydantic.Field(default=None)
|
|
17
|
+
"""
|
|
18
|
+
The source type of the code (python or typescript)
|
|
14
19
|
"""
|
|
15
20
|
|
|
16
21
|
if IS_PYDANTIC_V2:
|
|
@@ -25,8 +25,8 @@ letta_client/agents/memory_variables/raw_client.py,sha256=lwWJQlKh4InQgrCH8iHPBw
|
|
|
25
25
|
letta_client/agents/memory_variables/types/__init__.py,sha256=r_Wc0Jjyp1_Y2qC_eWsabWx1sTwoxAaV1s24y8Ep_Zg,200
|
|
26
26
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=iAXAqp-J0fnyUK4MMa3PMrYwqQfbui3tiaWaWR9_O5M,600
|
|
27
27
|
letta_client/agents/messages/__init__.py,sha256=e8v77Rj3x-BqXX_NKI1ON66_rDZwbb7ub2nGivPuxnM,373
|
|
28
|
-
letta_client/agents/messages/client.py,sha256
|
|
29
|
-
letta_client/agents/messages/raw_client.py,sha256=
|
|
28
|
+
letta_client/agents/messages/client.py,sha256=iCYSrSpnLIBpgMWP0pOQ3fAwuJVefPfOLTZO4Qo9gBU,39737
|
|
29
|
+
letta_client/agents/messages/raw_client.py,sha256=FI2JXCjv8-xK1Rr16Z6mNxei0lbW7GbySurh_uJmZAY,57620
|
|
30
30
|
letta_client/agents/messages/types/__init__.py,sha256=UVYgxnuengkOnW2BzXKiWodjQxdBEuwtJd7U83-TIbk,493
|
|
31
31
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=TEqXH71L621ToSXJpmJk8QUJE71QhXuZOVk4AMeWgFc,801
|
|
32
32
|
letta_client/agents/messages/types/messages_modify_request.py,sha256=0NT3pgbqQItc_p5cjBl4MaJ6bIMAlMhvdBJWm9zilpQ,476
|
|
@@ -92,7 +92,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
|
|
|
92
92
|
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
|
|
93
93
|
letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
|
|
94
94
|
letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
95
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
95
|
+
letta_client/core/client_wrapper.py,sha256=MhNS4q8YyAEZMI7JfeeKe8pxcZ8VdX82EpWfIj75Adk,2776
|
|
96
96
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
97
97
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
98
98
|
letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -215,8 +215,8 @@ letta_client/templates/types/__init__.py,sha256=dYa1-Xhxgs1FUtz6gkhZhY59EZuhmBDq
|
|
|
215
215
|
letta_client/templates/types/templates_list_response.py,sha256=M2vTXGuqbQBEsh-lO0OWLRaYk5VgWD7pUTfOeERAyXk,729
|
|
216
216
|
letta_client/templates/types/templates_list_response_templates_item.py,sha256=qplmgPLb_EtucsvkZ9GFj7BCq6D7OSqtVQ2rnMacO_g,775
|
|
217
217
|
letta_client/tools/__init__.py,sha256=ZR4ev9ZmyWZl9iJPXK_FRk79YjgIytkA_2TlNS1PaQI,725
|
|
218
|
-
letta_client/tools/client.py,sha256=
|
|
219
|
-
letta_client/tools/raw_client.py,sha256=
|
|
218
|
+
letta_client/tools/client.py,sha256=uF7Z2l1_TF1Wu6HBHHh3D_g3tfIqMe5ZKvUNiwL8sqI,59151
|
|
219
|
+
letta_client/tools/raw_client.py,sha256=ulZZNTVaUUcfMggx9KnHAv1z4R5cuLYvDAxo0aDDt1o,105489
|
|
220
220
|
letta_client/tools/types/__init__.py,sha256=A6LN4Xvy2t4O23X5AihXMQwRs1iLnYrA6HOwFqBL720,1055
|
|
221
221
|
letta_client/tools/types/add_mcp_server_request.py,sha256=N9WDntHlIAxRQafdSnIydUNEEaOwnDISqGLMyHBrWr8,372
|
|
222
222
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=LryGwJSSLAX6crN_EctrRlJo0OCOUOK5mEGsgR4hONg,377
|
|
@@ -285,7 +285,7 @@ letta_client/types/chat_completion_user_message_param_content.py,sha256=bLJRnIuu
|
|
|
285
285
|
letta_client/types/chat_completion_user_message_param_content_item.py,sha256=Vfi7YnB1V9FBfD452M6ea-cVG8k9eoIUzCMYjeLbAds,580
|
|
286
286
|
letta_client/types/child_tool_rule.py,sha256=5Wl7jQgpSSTqYvK29yrQotZebjzQL1ACweJhTVNhpfo,1121
|
|
287
287
|
letta_client/types/child_tool_rule_schema.py,sha256=g43as4Qsi7p_kL9pnheGdJwaYbfhYdOKr-fpy3V0Ic4,615
|
|
288
|
-
letta_client/types/code_input.py,sha256=
|
|
288
|
+
letta_client/types/code_input.py,sha256=_Emu9EQBxJ-mD8MFliFaXb4tsD3NiGl-FhiytlfaZv8,772
|
|
289
289
|
letta_client/types/completion_create_params_non_streaming.py,sha256=WtfSfUapc6UKhyyVku98I9hZMIPAlJpiiT69d5CoUXM,4110
|
|
290
290
|
letta_client/types/completion_create_params_non_streaming_function_call.py,sha256=rOhhZE6sp3nXl7eza8uPzc1CKsG3cn-fa8x8wvsqfh0,330
|
|
291
291
|
letta_client/types/completion_create_params_non_streaming_messages_item.py,sha256=_oNVb2SP0tpUWPtmPwbBS6jVP33j8uHmcsG83rFmKbE,884
|
|
@@ -518,6 +518,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
518
518
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
519
519
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
520
520
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
521
|
-
letta_client-0.1.
|
|
522
|
-
letta_client-0.1.
|
|
523
|
-
letta_client-0.1.
|
|
521
|
+
letta_client-0.1.264.dist-info/METADATA,sha256=CxL8z6IfwYdZBvVQwb2-ojMNXIT98kW3phxxd1pma4A,5781
|
|
522
|
+
letta_client-0.1.264.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
523
|
+
letta_client-0.1.264.dist-info/RECORD,,
|
|
File without changes
|