letta-client 0.1.281__py3-none-any.whl → 0.1.283__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 +2 -0
- letta_client/agents/client.py +8 -8
- letta_client/agents/raw_client.py +8 -8
- letta_client/core/client_wrapper.py +2 -2
- letta_client/templates/__init__.py +2 -0
- letta_client/templates/client.py +9 -0
- letta_client/templates/raw_client.py +9 -0
- letta_client/templates/types/__init__.py +2 -0
- letta_client/templates/types/templates_create_template_response.py +5 -0
- letta_client/templates/types/templates_fork_template_response.py +5 -0
- letta_client/templates/types/templates_list_request_sort_by.py +5 -0
- letta_client/templates/types/templates_list_response_templates_item.py +5 -0
- letta_client/templates/types/templates_save_template_version_response.py +5 -0
- {letta_client-0.1.281.dist-info → letta_client-0.1.283.dist-info}/METADATA +1 -1
- {letta_client-0.1.281.dist-info → letta_client-0.1.283.dist-info}/RECORD +16 -15
- {letta_client-0.1.281.dist-info → letta_client-0.1.283.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -395,6 +395,7 @@ from .templates import (
|
|
|
395
395
|
TemplatesGetTemplateSnapshotResponseBlocksItem,
|
|
396
396
|
TemplatesGetTemplateSnapshotResponseConfiguration,
|
|
397
397
|
TemplatesGetTemplateSnapshotResponseType,
|
|
398
|
+
TemplatesListRequestSortBy,
|
|
398
399
|
TemplatesListResponse,
|
|
399
400
|
TemplatesListResponseTemplatesItem,
|
|
400
401
|
TemplatesListTemplateVersionsResponse,
|
|
@@ -745,6 +746,7 @@ __all__ = [
|
|
|
745
746
|
"TemplatesGetTemplateSnapshotResponseBlocksItem",
|
|
746
747
|
"TemplatesGetTemplateSnapshotResponseConfiguration",
|
|
747
748
|
"TemplatesGetTemplateSnapshotResponseType",
|
|
749
|
+
"TemplatesListRequestSortBy",
|
|
748
750
|
"TemplatesListResponse",
|
|
749
751
|
"TemplatesListResponseTemplatesItem",
|
|
750
752
|
"TemplatesListTemplateVersionsResponse",
|
letta_client/agents/client.py
CHANGED
|
@@ -520,7 +520,7 @@ class AgentsClient:
|
|
|
520
520
|
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
521
521
|
project_id: typing.Optional[str] = OMIT,
|
|
522
522
|
strip_messages: typing.Optional[bool] = OMIT,
|
|
523
|
-
|
|
523
|
+
env_vars_json: typing.Optional[str] = OMIT,
|
|
524
524
|
request_options: typing.Optional[RequestOptions] = None,
|
|
525
525
|
) -> ImportedAgentsResponse:
|
|
526
526
|
"""
|
|
@@ -544,8 +544,8 @@ class AgentsClient:
|
|
|
544
544
|
strip_messages : typing.Optional[bool]
|
|
545
545
|
If set to True, strips all messages from the agent before importing.
|
|
546
546
|
|
|
547
|
-
|
|
548
|
-
Environment variables to pass to the agent for tool execution.
|
|
547
|
+
env_vars_json : typing.Optional[str]
|
|
548
|
+
Environment variables as a JSON string to pass to the agent for tool execution.
|
|
549
549
|
|
|
550
550
|
request_options : typing.Optional[RequestOptions]
|
|
551
551
|
Request-specific configuration.
|
|
@@ -571,7 +571,7 @@ class AgentsClient:
|
|
|
571
571
|
override_existing_tools=override_existing_tools,
|
|
572
572
|
project_id=project_id,
|
|
573
573
|
strip_messages=strip_messages,
|
|
574
|
-
|
|
574
|
+
env_vars_json=env_vars_json,
|
|
575
575
|
request_options=request_options,
|
|
576
576
|
)
|
|
577
577
|
return _response.data
|
|
@@ -1503,7 +1503,7 @@ class AsyncAgentsClient:
|
|
|
1503
1503
|
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
1504
1504
|
project_id: typing.Optional[str] = OMIT,
|
|
1505
1505
|
strip_messages: typing.Optional[bool] = OMIT,
|
|
1506
|
-
|
|
1506
|
+
env_vars_json: typing.Optional[str] = OMIT,
|
|
1507
1507
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1508
1508
|
) -> ImportedAgentsResponse:
|
|
1509
1509
|
"""
|
|
@@ -1527,8 +1527,8 @@ class AsyncAgentsClient:
|
|
|
1527
1527
|
strip_messages : typing.Optional[bool]
|
|
1528
1528
|
If set to True, strips all messages from the agent before importing.
|
|
1529
1529
|
|
|
1530
|
-
|
|
1531
|
-
Environment variables to pass to the agent for tool execution.
|
|
1530
|
+
env_vars_json : typing.Optional[str]
|
|
1531
|
+
Environment variables as a JSON string to pass to the agent for tool execution.
|
|
1532
1532
|
|
|
1533
1533
|
request_options : typing.Optional[RequestOptions]
|
|
1534
1534
|
Request-specific configuration.
|
|
@@ -1562,7 +1562,7 @@ class AsyncAgentsClient:
|
|
|
1562
1562
|
override_existing_tools=override_existing_tools,
|
|
1563
1563
|
project_id=project_id,
|
|
1564
1564
|
strip_messages=strip_messages,
|
|
1565
|
-
|
|
1565
|
+
env_vars_json=env_vars_json,
|
|
1566
1566
|
request_options=request_options,
|
|
1567
1567
|
)
|
|
1568
1568
|
return _response.data
|
|
@@ -569,7 +569,7 @@ class RawAgentsClient:
|
|
|
569
569
|
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
570
570
|
project_id: typing.Optional[str] = OMIT,
|
|
571
571
|
strip_messages: typing.Optional[bool] = OMIT,
|
|
572
|
-
|
|
572
|
+
env_vars_json: typing.Optional[str] = OMIT,
|
|
573
573
|
request_options: typing.Optional[RequestOptions] = None,
|
|
574
574
|
) -> HttpResponse[ImportedAgentsResponse]:
|
|
575
575
|
"""
|
|
@@ -593,8 +593,8 @@ class RawAgentsClient:
|
|
|
593
593
|
strip_messages : typing.Optional[bool]
|
|
594
594
|
If set to True, strips all messages from the agent before importing.
|
|
595
595
|
|
|
596
|
-
|
|
597
|
-
Environment variables to pass to the agent for tool execution.
|
|
596
|
+
env_vars_json : typing.Optional[str]
|
|
597
|
+
Environment variables as a JSON string to pass to the agent for tool execution.
|
|
598
598
|
|
|
599
599
|
request_options : typing.Optional[RequestOptions]
|
|
600
600
|
Request-specific configuration.
|
|
@@ -612,7 +612,7 @@ class RawAgentsClient:
|
|
|
612
612
|
"override_existing_tools": override_existing_tools,
|
|
613
613
|
"project_id": project_id,
|
|
614
614
|
"strip_messages": strip_messages,
|
|
615
|
-
"
|
|
615
|
+
"env_vars_json": env_vars_json,
|
|
616
616
|
},
|
|
617
617
|
files={
|
|
618
618
|
"file": file,
|
|
@@ -1699,7 +1699,7 @@ class AsyncRawAgentsClient:
|
|
|
1699
1699
|
override_existing_tools: typing.Optional[bool] = OMIT,
|
|
1700
1700
|
project_id: typing.Optional[str] = OMIT,
|
|
1701
1701
|
strip_messages: typing.Optional[bool] = OMIT,
|
|
1702
|
-
|
|
1702
|
+
env_vars_json: typing.Optional[str] = OMIT,
|
|
1703
1703
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1704
1704
|
) -> AsyncHttpResponse[ImportedAgentsResponse]:
|
|
1705
1705
|
"""
|
|
@@ -1723,8 +1723,8 @@ class AsyncRawAgentsClient:
|
|
|
1723
1723
|
strip_messages : typing.Optional[bool]
|
|
1724
1724
|
If set to True, strips all messages from the agent before importing.
|
|
1725
1725
|
|
|
1726
|
-
|
|
1727
|
-
Environment variables to pass to the agent for tool execution.
|
|
1726
|
+
env_vars_json : typing.Optional[str]
|
|
1727
|
+
Environment variables as a JSON string to pass to the agent for tool execution.
|
|
1728
1728
|
|
|
1729
1729
|
request_options : typing.Optional[RequestOptions]
|
|
1730
1730
|
Request-specific configuration.
|
|
@@ -1742,7 +1742,7 @@ class AsyncRawAgentsClient:
|
|
|
1742
1742
|
"override_existing_tools": override_existing_tools,
|
|
1743
1743
|
"project_id": project_id,
|
|
1744
1744
|
"strip_messages": strip_messages,
|
|
1745
|
-
"
|
|
1745
|
+
"env_vars_json": env_vars_json,
|
|
1746
1746
|
},
|
|
1747
1747
|
files={
|
|
1748
1748
|
"file": file,
|
|
@@ -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.283",
|
|
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.283",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._project is not None:
|
|
@@ -25,6 +25,7 @@ from .types import (
|
|
|
25
25
|
TemplatesGetTemplateSnapshotResponseBlocksItem,
|
|
26
26
|
TemplatesGetTemplateSnapshotResponseConfiguration,
|
|
27
27
|
TemplatesGetTemplateSnapshotResponseType,
|
|
28
|
+
TemplatesListRequestSortBy,
|
|
28
29
|
TemplatesListResponse,
|
|
29
30
|
TemplatesListResponseTemplatesItem,
|
|
30
31
|
TemplatesListTemplateVersionsResponse,
|
|
@@ -65,6 +66,7 @@ __all__ = [
|
|
|
65
66
|
"TemplatesGetTemplateSnapshotResponseBlocksItem",
|
|
66
67
|
"TemplatesGetTemplateSnapshotResponseConfiguration",
|
|
67
68
|
"TemplatesGetTemplateSnapshotResponseType",
|
|
69
|
+
"TemplatesListRequestSortBy",
|
|
68
70
|
"TemplatesListResponse",
|
|
69
71
|
"TemplatesListResponseTemplatesItem",
|
|
70
72
|
"TemplatesListTemplateVersionsResponse",
|
letta_client/templates/client.py
CHANGED
|
@@ -10,6 +10,7 @@ from .types.templates_create_template_response import TemplatesCreateTemplateRes
|
|
|
10
10
|
from .types.templates_delete_template_response import TemplatesDeleteTemplateResponse
|
|
11
11
|
from .types.templates_fork_template_response import TemplatesForkTemplateResponse
|
|
12
12
|
from .types.templates_get_template_snapshot_response import TemplatesGetTemplateSnapshotResponse
|
|
13
|
+
from .types.templates_list_request_sort_by import TemplatesListRequestSortBy
|
|
13
14
|
from .types.templates_list_response import TemplatesListResponse
|
|
14
15
|
from .types.templates_list_template_versions_response import TemplatesListTemplateVersionsResponse
|
|
15
16
|
from .types.templates_rename_template_response import TemplatesRenameTemplateResponse
|
|
@@ -45,6 +46,7 @@ class TemplatesClient:
|
|
|
45
46
|
search: typing.Optional[str] = None,
|
|
46
47
|
project_slug: typing.Optional[str] = None,
|
|
47
48
|
project_id: typing.Optional[str] = None,
|
|
49
|
+
sort_by: typing.Optional[TemplatesListRequestSortBy] = None,
|
|
48
50
|
request_options: typing.Optional[RequestOptions] = None,
|
|
49
51
|
) -> TemplatesListResponse:
|
|
50
52
|
"""
|
|
@@ -66,6 +68,8 @@ class TemplatesClient:
|
|
|
66
68
|
|
|
67
69
|
project_id : typing.Optional[str]
|
|
68
70
|
|
|
71
|
+
sort_by : typing.Optional[TemplatesListRequestSortBy]
|
|
72
|
+
|
|
69
73
|
request_options : typing.Optional[RequestOptions]
|
|
70
74
|
Request-specific configuration.
|
|
71
75
|
|
|
@@ -92,6 +96,7 @@ class TemplatesClient:
|
|
|
92
96
|
search=search,
|
|
93
97
|
project_slug=project_slug,
|
|
94
98
|
project_id=project_id,
|
|
99
|
+
sort_by=sort_by,
|
|
95
100
|
request_options=request_options,
|
|
96
101
|
)
|
|
97
102
|
return _response.data
|
|
@@ -458,6 +463,7 @@ class AsyncTemplatesClient:
|
|
|
458
463
|
search: typing.Optional[str] = None,
|
|
459
464
|
project_slug: typing.Optional[str] = None,
|
|
460
465
|
project_id: typing.Optional[str] = None,
|
|
466
|
+
sort_by: typing.Optional[TemplatesListRequestSortBy] = None,
|
|
461
467
|
request_options: typing.Optional[RequestOptions] = None,
|
|
462
468
|
) -> TemplatesListResponse:
|
|
463
469
|
"""
|
|
@@ -479,6 +485,8 @@ class AsyncTemplatesClient:
|
|
|
479
485
|
|
|
480
486
|
project_id : typing.Optional[str]
|
|
481
487
|
|
|
488
|
+
sort_by : typing.Optional[TemplatesListRequestSortBy]
|
|
489
|
+
|
|
482
490
|
request_options : typing.Optional[RequestOptions]
|
|
483
491
|
Request-specific configuration.
|
|
484
492
|
|
|
@@ -513,6 +521,7 @@ class AsyncTemplatesClient:
|
|
|
513
521
|
search=search,
|
|
514
522
|
project_slug=project_slug,
|
|
515
523
|
project_id=project_id,
|
|
524
|
+
sort_by=sort_by,
|
|
516
525
|
request_options=request_options,
|
|
517
526
|
)
|
|
518
527
|
return _response.data
|
|
@@ -17,6 +17,7 @@ from .types.templates_create_template_response import TemplatesCreateTemplateRes
|
|
|
17
17
|
from .types.templates_delete_template_response import TemplatesDeleteTemplateResponse
|
|
18
18
|
from .types.templates_fork_template_response import TemplatesForkTemplateResponse
|
|
19
19
|
from .types.templates_get_template_snapshot_response import TemplatesGetTemplateSnapshotResponse
|
|
20
|
+
from .types.templates_list_request_sort_by import TemplatesListRequestSortBy
|
|
20
21
|
from .types.templates_list_response import TemplatesListResponse
|
|
21
22
|
from .types.templates_list_template_versions_response import TemplatesListTemplateVersionsResponse
|
|
22
23
|
from .types.templates_rename_template_response import TemplatesRenameTemplateResponse
|
|
@@ -40,6 +41,7 @@ class RawTemplatesClient:
|
|
|
40
41
|
search: typing.Optional[str] = None,
|
|
41
42
|
project_slug: typing.Optional[str] = None,
|
|
42
43
|
project_id: typing.Optional[str] = None,
|
|
44
|
+
sort_by: typing.Optional[TemplatesListRequestSortBy] = None,
|
|
43
45
|
request_options: typing.Optional[RequestOptions] = None,
|
|
44
46
|
) -> HttpResponse[TemplatesListResponse]:
|
|
45
47
|
"""
|
|
@@ -61,6 +63,8 @@ class RawTemplatesClient:
|
|
|
61
63
|
|
|
62
64
|
project_id : typing.Optional[str]
|
|
63
65
|
|
|
66
|
+
sort_by : typing.Optional[TemplatesListRequestSortBy]
|
|
67
|
+
|
|
64
68
|
request_options : typing.Optional[RequestOptions]
|
|
65
69
|
Request-specific configuration.
|
|
66
70
|
|
|
@@ -80,6 +84,7 @@ class RawTemplatesClient:
|
|
|
80
84
|
"search": search,
|
|
81
85
|
"project_slug": project_slug,
|
|
82
86
|
"project_id": project_id,
|
|
87
|
+
"sort_by": sort_by,
|
|
83
88
|
},
|
|
84
89
|
request_options=request_options,
|
|
85
90
|
)
|
|
@@ -591,6 +596,7 @@ class AsyncRawTemplatesClient:
|
|
|
591
596
|
search: typing.Optional[str] = None,
|
|
592
597
|
project_slug: typing.Optional[str] = None,
|
|
593
598
|
project_id: typing.Optional[str] = None,
|
|
599
|
+
sort_by: typing.Optional[TemplatesListRequestSortBy] = None,
|
|
594
600
|
request_options: typing.Optional[RequestOptions] = None,
|
|
595
601
|
) -> AsyncHttpResponse[TemplatesListResponse]:
|
|
596
602
|
"""
|
|
@@ -612,6 +618,8 @@ class AsyncRawTemplatesClient:
|
|
|
612
618
|
|
|
613
619
|
project_id : typing.Optional[str]
|
|
614
620
|
|
|
621
|
+
sort_by : typing.Optional[TemplatesListRequestSortBy]
|
|
622
|
+
|
|
615
623
|
request_options : typing.Optional[RequestOptions]
|
|
616
624
|
Request-specific configuration.
|
|
617
625
|
|
|
@@ -631,6 +639,7 @@ class AsyncRawTemplatesClient:
|
|
|
631
639
|
"search": search,
|
|
632
640
|
"project_slug": project_slug,
|
|
633
641
|
"project_id": project_id,
|
|
642
|
+
"sort_by": sort_by,
|
|
634
643
|
},
|
|
635
644
|
request_options=request_options,
|
|
636
645
|
)
|
|
@@ -52,6 +52,7 @@ from .templates_get_template_snapshot_response_agents_item_tool_variables_data_i
|
|
|
52
52
|
from .templates_get_template_snapshot_response_blocks_item import TemplatesGetTemplateSnapshotResponseBlocksItem
|
|
53
53
|
from .templates_get_template_snapshot_response_configuration import TemplatesGetTemplateSnapshotResponseConfiguration
|
|
54
54
|
from .templates_get_template_snapshot_response_type import TemplatesGetTemplateSnapshotResponseType
|
|
55
|
+
from .templates_list_request_sort_by import TemplatesListRequestSortBy
|
|
55
56
|
from .templates_list_response import TemplatesListResponse
|
|
56
57
|
from .templates_list_response_templates_item import TemplatesListResponseTemplatesItem
|
|
57
58
|
from .templates_list_template_versions_response import TemplatesListTemplateVersionsResponse
|
|
@@ -82,6 +83,7 @@ __all__ = [
|
|
|
82
83
|
"TemplatesGetTemplateSnapshotResponseBlocksItem",
|
|
83
84
|
"TemplatesGetTemplateSnapshotResponseConfiguration",
|
|
84
85
|
"TemplatesGetTemplateSnapshotResponseType",
|
|
86
|
+
"TemplatesListRequestSortBy",
|
|
85
87
|
"TemplatesListResponse",
|
|
86
88
|
"TemplatesListResponseTemplatesItem",
|
|
87
89
|
"TemplatesListTemplateVersionsResponse",
|
|
@@ -27,6 +27,11 @@ class TemplatesCreateTemplateResponse(UncheckedBaseModel):
|
|
|
27
27
|
The full name of the template, including version and project slug
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
+
updated_at: str = pydantic.Field()
|
|
31
|
+
"""
|
|
32
|
+
When the template was last updated
|
|
33
|
+
"""
|
|
34
|
+
|
|
30
35
|
if IS_PYDANTIC_V2:
|
|
31
36
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
32
37
|
else:
|
|
@@ -27,6 +27,11 @@ class TemplatesForkTemplateResponse(UncheckedBaseModel):
|
|
|
27
27
|
The full name of the template, including version and project slug
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
+
updated_at: str = pydantic.Field()
|
|
31
|
+
"""
|
|
32
|
+
When the template was last updated
|
|
33
|
+
"""
|
|
34
|
+
|
|
30
35
|
if IS_PYDANTIC_V2:
|
|
31
36
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
32
37
|
else:
|
|
@@ -27,6 +27,11 @@ class TemplatesListResponseTemplatesItem(UncheckedBaseModel):
|
|
|
27
27
|
The full name of the template, including version and project slug
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
+
updated_at: str = pydantic.Field()
|
|
31
|
+
"""
|
|
32
|
+
When the template was last updated
|
|
33
|
+
"""
|
|
34
|
+
|
|
30
35
|
if IS_PYDANTIC_V2:
|
|
31
36
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
32
37
|
else:
|
|
@@ -27,6 +27,11 @@ class TemplatesSaveTemplateVersionResponse(UncheckedBaseModel):
|
|
|
27
27
|
The full name of the template, including version and project slug
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
+
updated_at: str = pydantic.Field()
|
|
31
|
+
"""
|
|
32
|
+
When the template was last updated
|
|
33
|
+
"""
|
|
34
|
+
|
|
30
35
|
if IS_PYDANTIC_V2:
|
|
31
36
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
32
37
|
else:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=TVUAOeNgCJrI4xabzK_cSudnmVD0qWs26P6Ny0UiyuQ,26579
|
|
2
2
|
letta_client/agents/__init__.py,sha256=yl1d02BPp-nGZLaUdH9mWcYvHu-1RhRyZUgpZQKOMGo,2010
|
|
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=VUl8uKNhoX2DAXSlW_dVdvoqpvoHglYDtp2sIB-Ajxk,73248
|
|
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=LBy0N_w4Oo3ydfB8CNbuVgUBG_iNHv4N7E_2Zd9BEu0,96794
|
|
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
|
|
@@ -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=
|
|
93
|
+
letta_client/core/client_wrapper.py,sha256=ymeua784vW_2M0WZKhRERxeNmod9nTe8emG193_VIkU,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
|
|
@@ -200,7 +200,7 @@ letta_client/tags/raw_client.py,sha256=DQXEgzOuCygBMbzX63Sc9UwfueALa5rUHH3c8jb4O
|
|
|
200
200
|
letta_client/telemetry/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
201
201
|
letta_client/telemetry/client.py,sha256=N5bjIcLVT9FL5nGTbLxlNOOytXQlRWquyyuoWjPZS_g,2974
|
|
202
202
|
letta_client/telemetry/raw_client.py,sha256=305pp86KAnZRtim9lrSyxEA0d8PyC8ZWuFNZgaNs8VA,4559
|
|
203
|
-
letta_client/templates/__init__.py,sha256=
|
|
203
|
+
letta_client/templates/__init__.py,sha256=oSoLLxT2-ptOxuKI6kPrrD9cqkgU2BzhlR8O-Xuh3VA,3736
|
|
204
204
|
letta_client/templates/agents/__init__.py,sha256=Nb3AeDuJhSba_DbgHKuCUY1b3PT1jj3-YMJ7uW7RIAk,393
|
|
205
205
|
letta_client/templates/agents/client.py,sha256=HCCEZZ3b0tGonxDNbiPuXadoZu_x1G_OtBdTHRBpG4M,7088
|
|
206
206
|
letta_client/templates/agents/raw_client.py,sha256=RGf_8ZaBbkS3sE7qrKqirL8Mu-E7CDRZNEKFWCJ3v4E,9552
|
|
@@ -208,12 +208,12 @@ letta_client/templates/agents/types/__init__.py,sha256=gDThrVEf3npLrxCqHWKgJLwB6
|
|
|
208
208
|
letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item.py,sha256=0--NEWDhbw-1WBF5wr5tl25ucWkqHvhmSm8iuQOr6tw,986
|
|
209
209
|
letta_client/templates/agents/types/agents_create_request_initial_message_sequence_item_role.py,sha256=Xp6uU0_CfWtIBtHdwicF9b4yAcrCYXQyYvxtNKyq-K4,210
|
|
210
210
|
letta_client/templates/agents/types/agents_create_response.py,sha256=P5sppbD_qW7I9suv5Ykm7tlgnh5a3omYggA8JgLw2RY,637
|
|
211
|
-
letta_client/templates/client.py,sha256=
|
|
212
|
-
letta_client/templates/raw_client.py,sha256=
|
|
213
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
214
|
-
letta_client/templates/types/templates_create_template_response.py,sha256=
|
|
211
|
+
letta_client/templates/client.py,sha256=zydy4k7OeFkXjQcJfpykOpySyzyFY0yD9bev1Wog9ag,26795
|
|
212
|
+
letta_client/templates/raw_client.py,sha256=zj0HIvY8RU4HxlDMIfyK22gSC4_lOWdAIVWx-0lxHeM,43678
|
|
213
|
+
letta_client/templates/types/__init__.py,sha256=kWnPgui_z5IK--Jh6lUuFN2IZ-GBhyBt-H9EJNHuaBM,5408
|
|
214
|
+
letta_client/templates/types/templates_create_template_response.py,sha256=UKaNiwW7WNX4Q3_IqGkFJaatMcdSS-Tsf8gDT2i677w,1082
|
|
215
215
|
letta_client/templates/types/templates_delete_template_response.py,sha256=_DUyWh9jtgw8u_U_JsV8N-RhPcY32QLAQZsUCSXDCTY,583
|
|
216
|
-
letta_client/templates/types/templates_fork_template_response.py,sha256=
|
|
216
|
+
letta_client/templates/types/templates_fork_template_response.py,sha256=zX8aCR5Z8sEgXJHHzxsPeYRNMW2HfD26EN5Mlwrt-ZI,1080
|
|
217
217
|
letta_client/templates/types/templates_get_template_snapshot_response.py,sha256=75kEOy6l8d1uboqVYHbOWUHk6Ij8pzQ_TmmEe5wEf0c,1295
|
|
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
|
|
@@ -233,12 +233,13 @@ letta_client/templates/types/templates_get_template_snapshot_response_agents_ite
|
|
|
233
233
|
letta_client/templates/types/templates_get_template_snapshot_response_blocks_item.py,sha256=rODpkefuRh8p2l3mtkh5_3MFovMkCg8CrDCMWOSNXCE,946
|
|
234
234
|
letta_client/templates/types/templates_get_template_snapshot_response_configuration.py,sha256=c3KhXD7IG5j5dzrviH3l3RqU8Xfz6s9F4RQ0ePNpBs4,1567
|
|
235
235
|
letta_client/templates/types/templates_get_template_snapshot_response_type.py,sha256=DuJQ1O1qoSE3NDwlwXmpz6BiNC5nZ0HeuHFp3M93JBM,269
|
|
236
|
+
letta_client/templates/types/templates_list_request_sort_by.py,sha256=SFmh-eLa14nEUMsv_cF7mm_WyqN-ZVO_Ok8Us6g8sXU,178
|
|
236
237
|
letta_client/templates/types/templates_list_response.py,sha256=M2vTXGuqbQBEsh-lO0OWLRaYk5VgWD7pUTfOeERAyXk,729
|
|
237
|
-
letta_client/templates/types/templates_list_response_templates_item.py,sha256=
|
|
238
|
+
letta_client/templates/types/templates_list_response_templates_item.py,sha256=qeC4nWrch1WPT1TOOe7_jjzpvh6XuajSK5s8ftAJAZA,1085
|
|
238
239
|
letta_client/templates/types/templates_list_template_versions_response.py,sha256=NLwzDD3p4jXjUth8MDKG1s-ezJA1DN07t1phhFy6xek,814
|
|
239
240
|
letta_client/templates/types/templates_list_template_versions_response_versions_item.py,sha256=HS0mrUz1qROFff1ha3SBcs63gS4spj0LUYg82Slam2Y,956
|
|
240
241
|
letta_client/templates/types/templates_rename_template_response.py,sha256=iH8paSt5k0jzqTDezOw2PJbgbDJIqVkA4zWnsa64JX4,583
|
|
241
|
-
letta_client/templates/types/templates_save_template_version_response.py,sha256=
|
|
242
|
+
letta_client/templates/types/templates_save_template_version_response.py,sha256=gmRwrpCk5UM1TH2Sru4iX_ybTAMftVsHI0DOVGxdFrw,1087
|
|
242
243
|
letta_client/tools/__init__.py,sha256=ZR4ev9ZmyWZl9iJPXK_FRk79YjgIytkA_2TlNS1PaQI,725
|
|
243
244
|
letta_client/tools/client.py,sha256=uF7Z2l1_TF1Wu6HBHHh3D_g3tfIqMe5ZKvUNiwL8sqI,59151
|
|
244
245
|
letta_client/tools/raw_client.py,sha256=ulZZNTVaUUcfMggx9KnHAv1z4R5cuLYvDAxo0aDDt1o,105489
|
|
@@ -566,6 +567,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
|
566
567
|
letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
567
568
|
letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
|
|
568
569
|
letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
|
|
569
|
-
letta_client-0.1.
|
|
570
|
-
letta_client-0.1.
|
|
571
|
-
letta_client-0.1.
|
|
570
|
+
letta_client-0.1.283.dist-info/METADATA,sha256=AUwpNex7mGtME3HhmTVFM16Dq5jDXMwn150iJBvf2xo,5782
|
|
571
|
+
letta_client-0.1.283.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
572
|
+
letta_client-0.1.283.dist-info/RECORD,,
|
|
File without changes
|