letta-client 0.1.241__py3-none-any.whl → 0.1.243__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/client.py +38 -8
- letta_client/agents/raw_client.py +40 -12
- letta_client/core/client_wrapper.py +2 -2
- {letta_client-0.1.241.dist-info → letta_client-0.1.243.dist-info}/METADATA +1 -1
- {letta_client-0.1.241.dist-info → letta_client-0.1.243.dist-info}/RECORD +6 -6
- {letta_client-0.1.241.dist-info → letta_client-0.1.243.dist-info}/WHEEL +0 -0
letta_client/agents/client.py
CHANGED
|
@@ -215,6 +215,7 @@ class AgentsClient:
|
|
|
215
215
|
max_tokens: typing.Optional[int] = OMIT,
|
|
216
216
|
max_reasoning_tokens: typing.Optional[int] = OMIT,
|
|
217
217
|
enable_reasoner: typing.Optional[bool] = OMIT,
|
|
218
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
218
219
|
from_template: typing.Optional[str] = OMIT,
|
|
219
220
|
template: typing.Optional[bool] = OMIT,
|
|
220
221
|
project: typing.Optional[str] = OMIT,
|
|
@@ -316,6 +317,9 @@ class AgentsClient:
|
|
|
316
317
|
enable_reasoner : typing.Optional[bool]
|
|
317
318
|
Whether to enable internal extended thinking step for a reasoner model.
|
|
318
319
|
|
|
320
|
+
reasoning : typing.Optional[bool]
|
|
321
|
+
Whether to enable reasoning for this agent.
|
|
322
|
+
|
|
319
323
|
from_template : typing.Optional[str]
|
|
320
324
|
The template id used to configure the agent
|
|
321
325
|
|
|
@@ -409,6 +413,7 @@ class AgentsClient:
|
|
|
409
413
|
max_tokens=max_tokens,
|
|
410
414
|
max_reasoning_tokens=max_reasoning_tokens,
|
|
411
415
|
enable_reasoner=enable_reasoner,
|
|
416
|
+
reasoning=reasoning,
|
|
412
417
|
from_template=from_template,
|
|
413
418
|
template=template,
|
|
414
419
|
project=project,
|
|
@@ -491,10 +496,11 @@ class AgentsClient:
|
|
|
491
496
|
self,
|
|
492
497
|
*,
|
|
493
498
|
file: core.File,
|
|
494
|
-
append_copy_suffix: typing.Optional[bool] =
|
|
495
|
-
override_existing_tools: typing.Optional[bool] =
|
|
496
|
-
project_id: typing.Optional[str] =
|
|
497
|
-
strip_messages: typing.Optional[bool] =
|
|
499
|
+
append_copy_suffix: typing.Optional[bool] = OMIT,
|
|
500
|
+
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
501
|
+
project_id: typing.Optional[str] = OMIT,
|
|
502
|
+
strip_messages: typing.Optional[bool] = OMIT,
|
|
503
|
+
env_vars: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
498
504
|
request_options: typing.Optional[RequestOptions] = None,
|
|
499
505
|
) -> AgentState:
|
|
500
506
|
"""
|
|
@@ -517,6 +523,9 @@ class AgentsClient:
|
|
|
517
523
|
strip_messages : typing.Optional[bool]
|
|
518
524
|
If set to True, strips all messages from the agent before importing.
|
|
519
525
|
|
|
526
|
+
env_vars : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
527
|
+
Environment variables to pass to the agent for tool execution.
|
|
528
|
+
|
|
520
529
|
request_options : typing.Optional[RequestOptions]
|
|
521
530
|
Request-specific configuration.
|
|
522
531
|
|
|
@@ -541,6 +550,7 @@ class AgentsClient:
|
|
|
541
550
|
override_existing_tools=override_existing_tools,
|
|
542
551
|
project_id=project_id,
|
|
543
552
|
strip_messages=strip_messages,
|
|
553
|
+
env_vars=env_vars,
|
|
544
554
|
request_options=request_options,
|
|
545
555
|
)
|
|
546
556
|
return _response.data
|
|
@@ -644,6 +654,7 @@ class AgentsClient:
|
|
|
644
654
|
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
645
655
|
model: typing.Optional[str] = OMIT,
|
|
646
656
|
embedding: typing.Optional[str] = OMIT,
|
|
657
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
647
658
|
enable_sleeptime: typing.Optional[bool] = OMIT,
|
|
648
659
|
response_format: typing.Optional[UpdateAgentResponseFormat] = OMIT,
|
|
649
660
|
last_run_completion: typing.Optional[dt.datetime] = OMIT,
|
|
@@ -721,6 +732,9 @@ class AgentsClient:
|
|
|
721
732
|
embedding : typing.Optional[str]
|
|
722
733
|
The embedding configuration handle used by the agent, specified in the format provider/model-name.
|
|
723
734
|
|
|
735
|
+
reasoning : typing.Optional[bool]
|
|
736
|
+
Whether to enable reasoning for this agent.
|
|
737
|
+
|
|
724
738
|
enable_sleeptime : typing.Optional[bool]
|
|
725
739
|
If set to True, memory management will move to a background agent thread.
|
|
726
740
|
|
|
@@ -787,6 +801,7 @@ class AgentsClient:
|
|
|
787
801
|
message_buffer_autoclear=message_buffer_autoclear,
|
|
788
802
|
model=model,
|
|
789
803
|
embedding=embedding,
|
|
804
|
+
reasoning=reasoning,
|
|
790
805
|
enable_sleeptime=enable_sleeptime,
|
|
791
806
|
response_format=response_format,
|
|
792
807
|
last_run_completion=last_run_completion,
|
|
@@ -1090,6 +1105,7 @@ class AsyncAgentsClient:
|
|
|
1090
1105
|
max_tokens: typing.Optional[int] = OMIT,
|
|
1091
1106
|
max_reasoning_tokens: typing.Optional[int] = OMIT,
|
|
1092
1107
|
enable_reasoner: typing.Optional[bool] = OMIT,
|
|
1108
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
1093
1109
|
from_template: typing.Optional[str] = OMIT,
|
|
1094
1110
|
template: typing.Optional[bool] = OMIT,
|
|
1095
1111
|
project: typing.Optional[str] = OMIT,
|
|
@@ -1191,6 +1207,9 @@ class AsyncAgentsClient:
|
|
|
1191
1207
|
enable_reasoner : typing.Optional[bool]
|
|
1192
1208
|
Whether to enable internal extended thinking step for a reasoner model.
|
|
1193
1209
|
|
|
1210
|
+
reasoning : typing.Optional[bool]
|
|
1211
|
+
Whether to enable reasoning for this agent.
|
|
1212
|
+
|
|
1194
1213
|
from_template : typing.Optional[str]
|
|
1195
1214
|
The template id used to configure the agent
|
|
1196
1215
|
|
|
@@ -1292,6 +1311,7 @@ class AsyncAgentsClient:
|
|
|
1292
1311
|
max_tokens=max_tokens,
|
|
1293
1312
|
max_reasoning_tokens=max_reasoning_tokens,
|
|
1294
1313
|
enable_reasoner=enable_reasoner,
|
|
1314
|
+
reasoning=reasoning,
|
|
1295
1315
|
from_template=from_template,
|
|
1296
1316
|
template=template,
|
|
1297
1317
|
project=project,
|
|
@@ -1390,10 +1410,11 @@ class AsyncAgentsClient:
|
|
|
1390
1410
|
self,
|
|
1391
1411
|
*,
|
|
1392
1412
|
file: core.File,
|
|
1393
|
-
append_copy_suffix: typing.Optional[bool] =
|
|
1394
|
-
override_existing_tools: typing.Optional[bool] =
|
|
1395
|
-
project_id: typing.Optional[str] =
|
|
1396
|
-
strip_messages: typing.Optional[bool] =
|
|
1413
|
+
append_copy_suffix: typing.Optional[bool] = OMIT,
|
|
1414
|
+
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
1415
|
+
project_id: typing.Optional[str] = OMIT,
|
|
1416
|
+
strip_messages: typing.Optional[bool] = OMIT,
|
|
1417
|
+
env_vars: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1397
1418
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1398
1419
|
) -> AgentState:
|
|
1399
1420
|
"""
|
|
@@ -1416,6 +1437,9 @@ class AsyncAgentsClient:
|
|
|
1416
1437
|
strip_messages : typing.Optional[bool]
|
|
1417
1438
|
If set to True, strips all messages from the agent before importing.
|
|
1418
1439
|
|
|
1440
|
+
env_vars : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
1441
|
+
Environment variables to pass to the agent for tool execution.
|
|
1442
|
+
|
|
1419
1443
|
request_options : typing.Optional[RequestOptions]
|
|
1420
1444
|
Request-specific configuration.
|
|
1421
1445
|
|
|
@@ -1448,6 +1472,7 @@ class AsyncAgentsClient:
|
|
|
1448
1472
|
override_existing_tools=override_existing_tools,
|
|
1449
1473
|
project_id=project_id,
|
|
1450
1474
|
strip_messages=strip_messages,
|
|
1475
|
+
env_vars=env_vars,
|
|
1451
1476
|
request_options=request_options,
|
|
1452
1477
|
)
|
|
1453
1478
|
return _response.data
|
|
@@ -1567,6 +1592,7 @@ class AsyncAgentsClient:
|
|
|
1567
1592
|
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
1568
1593
|
model: typing.Optional[str] = OMIT,
|
|
1569
1594
|
embedding: typing.Optional[str] = OMIT,
|
|
1595
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
1570
1596
|
enable_sleeptime: typing.Optional[bool] = OMIT,
|
|
1571
1597
|
response_format: typing.Optional[UpdateAgentResponseFormat] = OMIT,
|
|
1572
1598
|
last_run_completion: typing.Optional[dt.datetime] = OMIT,
|
|
@@ -1644,6 +1670,9 @@ class AsyncAgentsClient:
|
|
|
1644
1670
|
embedding : typing.Optional[str]
|
|
1645
1671
|
The embedding configuration handle used by the agent, specified in the format provider/model-name.
|
|
1646
1672
|
|
|
1673
|
+
reasoning : typing.Optional[bool]
|
|
1674
|
+
Whether to enable reasoning for this agent.
|
|
1675
|
+
|
|
1647
1676
|
enable_sleeptime : typing.Optional[bool]
|
|
1648
1677
|
If set to True, memory management will move to a background agent thread.
|
|
1649
1678
|
|
|
@@ -1718,6 +1747,7 @@ class AsyncAgentsClient:
|
|
|
1718
1747
|
message_buffer_autoclear=message_buffer_autoclear,
|
|
1719
1748
|
model=model,
|
|
1720
1749
|
embedding=embedding,
|
|
1750
|
+
reasoning=reasoning,
|
|
1721
1751
|
enable_sleeptime=enable_sleeptime,
|
|
1722
1752
|
response_format=response_format,
|
|
1723
1753
|
last_run_completion=last_run_completion,
|
|
@@ -194,6 +194,7 @@ class RawAgentsClient:
|
|
|
194
194
|
max_tokens: typing.Optional[int] = OMIT,
|
|
195
195
|
max_reasoning_tokens: typing.Optional[int] = OMIT,
|
|
196
196
|
enable_reasoner: typing.Optional[bool] = OMIT,
|
|
197
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
197
198
|
from_template: typing.Optional[str] = OMIT,
|
|
198
199
|
template: typing.Optional[bool] = OMIT,
|
|
199
200
|
project: typing.Optional[str] = OMIT,
|
|
@@ -295,6 +296,9 @@ class RawAgentsClient:
|
|
|
295
296
|
enable_reasoner : typing.Optional[bool]
|
|
296
297
|
Whether to enable internal extended thinking step for a reasoner model.
|
|
297
298
|
|
|
299
|
+
reasoning : typing.Optional[bool]
|
|
300
|
+
Whether to enable reasoning for this agent.
|
|
301
|
+
|
|
298
302
|
from_template : typing.Optional[str]
|
|
299
303
|
The template id used to configure the agent
|
|
300
304
|
|
|
@@ -391,6 +395,7 @@ class RawAgentsClient:
|
|
|
391
395
|
"max_tokens": max_tokens,
|
|
392
396
|
"max_reasoning_tokens": max_reasoning_tokens,
|
|
393
397
|
"enable_reasoner": enable_reasoner,
|
|
398
|
+
"reasoning": reasoning,
|
|
394
399
|
"from_template": from_template,
|
|
395
400
|
"template": template,
|
|
396
401
|
"project": project,
|
|
@@ -540,10 +545,11 @@ class RawAgentsClient:
|
|
|
540
545
|
self,
|
|
541
546
|
*,
|
|
542
547
|
file: core.File,
|
|
543
|
-
append_copy_suffix: typing.Optional[bool] =
|
|
544
|
-
override_existing_tools: typing.Optional[bool] =
|
|
545
|
-
project_id: typing.Optional[str] =
|
|
546
|
-
strip_messages: typing.Optional[bool] =
|
|
548
|
+
append_copy_suffix: typing.Optional[bool] = OMIT,
|
|
549
|
+
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
550
|
+
project_id: typing.Optional[str] = OMIT,
|
|
551
|
+
strip_messages: typing.Optional[bool] = OMIT,
|
|
552
|
+
env_vars: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
547
553
|
request_options: typing.Optional[RequestOptions] = None,
|
|
548
554
|
) -> HttpResponse[AgentState]:
|
|
549
555
|
"""
|
|
@@ -566,6 +572,9 @@ class RawAgentsClient:
|
|
|
566
572
|
strip_messages : typing.Optional[bool]
|
|
567
573
|
If set to True, strips all messages from the agent before importing.
|
|
568
574
|
|
|
575
|
+
env_vars : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
576
|
+
Environment variables to pass to the agent for tool execution.
|
|
577
|
+
|
|
569
578
|
request_options : typing.Optional[RequestOptions]
|
|
570
579
|
Request-specific configuration.
|
|
571
580
|
|
|
@@ -577,13 +586,13 @@ class RawAgentsClient:
|
|
|
577
586
|
_response = self._client_wrapper.httpx_client.request(
|
|
578
587
|
"v1/agents/import",
|
|
579
588
|
method="POST",
|
|
580
|
-
|
|
589
|
+
data={
|
|
581
590
|
"append_copy_suffix": append_copy_suffix,
|
|
582
591
|
"override_existing_tools": override_existing_tools,
|
|
583
592
|
"project_id": project_id,
|
|
584
593
|
"strip_messages": strip_messages,
|
|
594
|
+
"env_vars": env_vars,
|
|
585
595
|
},
|
|
586
|
-
data={},
|
|
587
596
|
files={
|
|
588
597
|
"file": file,
|
|
589
598
|
},
|
|
@@ -751,6 +760,7 @@ class RawAgentsClient:
|
|
|
751
760
|
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
752
761
|
model: typing.Optional[str] = OMIT,
|
|
753
762
|
embedding: typing.Optional[str] = OMIT,
|
|
763
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
754
764
|
enable_sleeptime: typing.Optional[bool] = OMIT,
|
|
755
765
|
response_format: typing.Optional[UpdateAgentResponseFormat] = OMIT,
|
|
756
766
|
last_run_completion: typing.Optional[dt.datetime] = OMIT,
|
|
@@ -828,6 +838,9 @@ class RawAgentsClient:
|
|
|
828
838
|
embedding : typing.Optional[str]
|
|
829
839
|
The embedding configuration handle used by the agent, specified in the format provider/model-name.
|
|
830
840
|
|
|
841
|
+
reasoning : typing.Optional[bool]
|
|
842
|
+
Whether to enable reasoning for this agent.
|
|
843
|
+
|
|
831
844
|
enable_sleeptime : typing.Optional[bool]
|
|
832
845
|
If set to True, memory management will move to a background agent thread.
|
|
833
846
|
|
|
@@ -890,6 +903,7 @@ class RawAgentsClient:
|
|
|
890
903
|
"message_buffer_autoclear": message_buffer_autoclear,
|
|
891
904
|
"model": model,
|
|
892
905
|
"embedding": embedding,
|
|
906
|
+
"reasoning": reasoning,
|
|
893
907
|
"enable_sleeptime": enable_sleeptime,
|
|
894
908
|
"response_format": convert_and_respect_annotation_metadata(
|
|
895
909
|
object_=response_format, annotation=UpdateAgentResponseFormat, direction="write"
|
|
@@ -1222,6 +1236,7 @@ class AsyncRawAgentsClient:
|
|
|
1222
1236
|
max_tokens: typing.Optional[int] = OMIT,
|
|
1223
1237
|
max_reasoning_tokens: typing.Optional[int] = OMIT,
|
|
1224
1238
|
enable_reasoner: typing.Optional[bool] = OMIT,
|
|
1239
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
1225
1240
|
from_template: typing.Optional[str] = OMIT,
|
|
1226
1241
|
template: typing.Optional[bool] = OMIT,
|
|
1227
1242
|
project: typing.Optional[str] = OMIT,
|
|
@@ -1323,6 +1338,9 @@ class AsyncRawAgentsClient:
|
|
|
1323
1338
|
enable_reasoner : typing.Optional[bool]
|
|
1324
1339
|
Whether to enable internal extended thinking step for a reasoner model.
|
|
1325
1340
|
|
|
1341
|
+
reasoning : typing.Optional[bool]
|
|
1342
|
+
Whether to enable reasoning for this agent.
|
|
1343
|
+
|
|
1326
1344
|
from_template : typing.Optional[str]
|
|
1327
1345
|
The template id used to configure the agent
|
|
1328
1346
|
|
|
@@ -1419,6 +1437,7 @@ class AsyncRawAgentsClient:
|
|
|
1419
1437
|
"max_tokens": max_tokens,
|
|
1420
1438
|
"max_reasoning_tokens": max_reasoning_tokens,
|
|
1421
1439
|
"enable_reasoner": enable_reasoner,
|
|
1440
|
+
"reasoning": reasoning,
|
|
1422
1441
|
"from_template": from_template,
|
|
1423
1442
|
"template": template,
|
|
1424
1443
|
"project": project,
|
|
@@ -1568,10 +1587,11 @@ class AsyncRawAgentsClient:
|
|
|
1568
1587
|
self,
|
|
1569
1588
|
*,
|
|
1570
1589
|
file: core.File,
|
|
1571
|
-
append_copy_suffix: typing.Optional[bool] =
|
|
1572
|
-
override_existing_tools: typing.Optional[bool] =
|
|
1573
|
-
project_id: typing.Optional[str] =
|
|
1574
|
-
strip_messages: typing.Optional[bool] =
|
|
1590
|
+
append_copy_suffix: typing.Optional[bool] = OMIT,
|
|
1591
|
+
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
1592
|
+
project_id: typing.Optional[str] = OMIT,
|
|
1593
|
+
strip_messages: typing.Optional[bool] = OMIT,
|
|
1594
|
+
env_vars: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
1575
1595
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1576
1596
|
) -> AsyncHttpResponse[AgentState]:
|
|
1577
1597
|
"""
|
|
@@ -1594,6 +1614,9 @@ class AsyncRawAgentsClient:
|
|
|
1594
1614
|
strip_messages : typing.Optional[bool]
|
|
1595
1615
|
If set to True, strips all messages from the agent before importing.
|
|
1596
1616
|
|
|
1617
|
+
env_vars : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
1618
|
+
Environment variables to pass to the agent for tool execution.
|
|
1619
|
+
|
|
1597
1620
|
request_options : typing.Optional[RequestOptions]
|
|
1598
1621
|
Request-specific configuration.
|
|
1599
1622
|
|
|
@@ -1605,13 +1628,13 @@ class AsyncRawAgentsClient:
|
|
|
1605
1628
|
_response = await self._client_wrapper.httpx_client.request(
|
|
1606
1629
|
"v1/agents/import",
|
|
1607
1630
|
method="POST",
|
|
1608
|
-
|
|
1631
|
+
data={
|
|
1609
1632
|
"append_copy_suffix": append_copy_suffix,
|
|
1610
1633
|
"override_existing_tools": override_existing_tools,
|
|
1611
1634
|
"project_id": project_id,
|
|
1612
1635
|
"strip_messages": strip_messages,
|
|
1636
|
+
"env_vars": env_vars,
|
|
1613
1637
|
},
|
|
1614
|
-
data={},
|
|
1615
1638
|
files={
|
|
1616
1639
|
"file": file,
|
|
1617
1640
|
},
|
|
@@ -1779,6 +1802,7 @@ class AsyncRawAgentsClient:
|
|
|
1779
1802
|
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
1780
1803
|
model: typing.Optional[str] = OMIT,
|
|
1781
1804
|
embedding: typing.Optional[str] = OMIT,
|
|
1805
|
+
reasoning: typing.Optional[bool] = OMIT,
|
|
1782
1806
|
enable_sleeptime: typing.Optional[bool] = OMIT,
|
|
1783
1807
|
response_format: typing.Optional[UpdateAgentResponseFormat] = OMIT,
|
|
1784
1808
|
last_run_completion: typing.Optional[dt.datetime] = OMIT,
|
|
@@ -1856,6 +1880,9 @@ class AsyncRawAgentsClient:
|
|
|
1856
1880
|
embedding : typing.Optional[str]
|
|
1857
1881
|
The embedding configuration handle used by the agent, specified in the format provider/model-name.
|
|
1858
1882
|
|
|
1883
|
+
reasoning : typing.Optional[bool]
|
|
1884
|
+
Whether to enable reasoning for this agent.
|
|
1885
|
+
|
|
1859
1886
|
enable_sleeptime : typing.Optional[bool]
|
|
1860
1887
|
If set to True, memory management will move to a background agent thread.
|
|
1861
1888
|
|
|
@@ -1918,6 +1945,7 @@ class AsyncRawAgentsClient:
|
|
|
1918
1945
|
"message_buffer_autoclear": message_buffer_autoclear,
|
|
1919
1946
|
"model": model,
|
|
1920
1947
|
"embedding": embedding,
|
|
1948
|
+
"reasoning": reasoning,
|
|
1921
1949
|
"enable_sleeptime": enable_sleeptime,
|
|
1922
1950
|
"response_format": convert_and_respect_annotation_metadata(
|
|
1923
1951
|
object_=response_format, annotation=UpdateAgentResponseFormat, direction="write"
|
|
@@ -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.243",
|
|
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.243",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
|
@@ -3,7 +3,7 @@ letta_client/agents/__init__.py,sha256=JkuWGGNJsCfnMr2DFzQ1SiqEB1tcFZnafdidODi0_
|
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=Akx-1SYEXkmdtLtytPtdFNhVts8JkjC2aMQnnWgd8Ug,14735
|
|
5
5
|
letta_client/agents/blocks/raw_client.py,sha256=7tdlieWtGyMe1G5Ne9Rcujvr43DbD4K3hVJ7eiJNuFo,24454
|
|
6
|
-
letta_client/agents/client.py,sha256=
|
|
6
|
+
letta_client/agents/client.py,sha256=1WZjtnWAdDV_suXJ1xnCte-cMKVEiw0bTWvQ3KvEhcw,68754
|
|
7
7
|
letta_client/agents/context/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
8
8
|
letta_client/agents/context/client.py,sha256=fhpJFWRs6INGreRyEw9gsFnlUWR48vIHbN_jVIHIBrw,3052
|
|
9
9
|
letta_client/agents/context/raw_client.py,sha256=j2gko-oEFWuCgPkcX9jCv31OWvR6sTOtAYcSWllXYDs,4747
|
|
@@ -35,7 +35,7 @@ letta_client/agents/messages/types/messages_preview_raw_payload_request.py,sha25
|
|
|
35
35
|
letta_client/agents/passages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
36
36
|
letta_client/agents/passages/client.py,sha256=XHPpqOH2BDjHkegTRM9MRdDVxW5VH40ERSFvWchWT48,16785
|
|
37
37
|
letta_client/agents/passages/raw_client.py,sha256=TnNrFsnrexrPVmemkFbRIBfFMcq1Iap2qk23L7mr1Z0,25710
|
|
38
|
-
letta_client/agents/raw_client.py,sha256=
|
|
38
|
+
letta_client/agents/raw_client.py,sha256=0bK7N9RIE9sic4_Miy_w4JYsXbBlPs-UYGmJRiIKF4g,90101
|
|
39
39
|
letta_client/agents/sources/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
40
40
|
letta_client/agents/sources/client.py,sha256=lCqB6FF9svrwf0oZSFs41WKlMXc-YRhUeb4FZkHbicM,6868
|
|
41
41
|
letta_client/agents/sources/raw_client.py,sha256=ts4c5UBuXzrHU-lFWWrYniQqrMEc8SN0rfiqNXJLP5Y,12399
|
|
@@ -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=sl3wXpkRFyOAKOcfgN7Li-ZqpTXhf1ziSVdV-uNwytc,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
|
|
@@ -500,6 +500,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
500
500
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
501
501
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
502
502
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
503
|
-
letta_client-0.1.
|
|
504
|
-
letta_client-0.1.
|
|
505
|
-
letta_client-0.1.
|
|
503
|
+
letta_client-0.1.243.dist-info/METADATA,sha256=7TXSPJYxRfIgj5IWxf5nn363z2ZpsmUK8zLIGfcjOi0,5781
|
|
504
|
+
letta_client-0.1.243.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
505
|
+
letta_client-0.1.243.dist-info/RECORD,,
|
|
File without changes
|