letta-client 0.1.28__py3-none-any.whl → 0.1.30__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.
- letta_client/__init__.py +4 -0
- letta_client/agents/__init__.py +2 -0
- letta_client/agents/client.py +20 -0
- letta_client/agents/types/__init__.py +4 -0
- letta_client/agents/types/agents_search_response_agents_item.py +4 -0
- letta_client/agents/types/agents_search_response_agents_item_message_buffer_autoclear.py +5 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/templates/__init__.py +2 -0
- letta_client/templates/types/__init__.py +4 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item.py +6 -0
- letta_client/templates/types/templates_create_agents_from_template_response_agents_item_message_buffer_autoclear.py +7 -0
- letta_client/types/agent_state.py +5 -0
- {letta_client-0.1.28.dist-info → letta_client-0.1.30.dist-info}/METADATA +1 -1
- {letta_client-0.1.28.dist-info → letta_client-0.1.30.dist-info}/RECORD +15 -13
- {letta_client-0.1.28.dist-info → letta_client-0.1.30.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -225,6 +225,7 @@ from .agents import (
|
|
|
225
225
|
AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationId,
|
|
226
226
|
AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationIdItem,
|
|
227
227
|
AgentsSearchResponseAgentsItemMemoryPromptTemplate,
|
|
228
|
+
AgentsSearchResponseAgentsItemMessageBufferAutoclear,
|
|
228
229
|
AgentsSearchResponseAgentsItemMessageIds,
|
|
229
230
|
AgentsSearchResponseAgentsItemMessageIdsItem,
|
|
230
231
|
AgentsSearchResponseAgentsItemMetadata,
|
|
@@ -391,6 +392,7 @@ from .templates import (
|
|
|
391
392
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationId,
|
|
392
393
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationIdItem,
|
|
393
394
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate,
|
|
395
|
+
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear,
|
|
394
396
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds,
|
|
395
397
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIdsItem,
|
|
396
398
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMetadata,
|
|
@@ -567,6 +569,7 @@ __all__ = [
|
|
|
567
569
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
568
570
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
569
571
|
"AgentsSearchResponseAgentsItemMemoryPromptTemplate",
|
|
572
|
+
"AgentsSearchResponseAgentsItemMessageBufferAutoclear",
|
|
570
573
|
"AgentsSearchResponseAgentsItemMessageIds",
|
|
571
574
|
"AgentsSearchResponseAgentsItemMessageIdsItem",
|
|
572
575
|
"AgentsSearchResponseAgentsItemMetadata",
|
|
@@ -863,6 +866,7 @@ __all__ = [
|
|
|
863
866
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
864
867
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
865
868
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate",
|
|
869
|
+
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear",
|
|
866
870
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds",
|
|
867
871
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIdsItem",
|
|
868
872
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMetadata",
|
letta_client/agents/__init__.py
CHANGED
|
@@ -66,6 +66,7 @@ from .types import (
|
|
|
66
66
|
AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationId,
|
|
67
67
|
AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationIdItem,
|
|
68
68
|
AgentsSearchResponseAgentsItemMemoryPromptTemplate,
|
|
69
|
+
AgentsSearchResponseAgentsItemMessageBufferAutoclear,
|
|
69
70
|
AgentsSearchResponseAgentsItemMessageIds,
|
|
70
71
|
AgentsSearchResponseAgentsItemMessageIdsItem,
|
|
71
72
|
AgentsSearchResponseAgentsItemMetadata,
|
|
@@ -240,6 +241,7 @@ __all__ = [
|
|
|
240
241
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
241
242
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
242
243
|
"AgentsSearchResponseAgentsItemMemoryPromptTemplate",
|
|
244
|
+
"AgentsSearchResponseAgentsItemMessageBufferAutoclear",
|
|
243
245
|
"AgentsSearchResponseAgentsItemMessageIds",
|
|
244
246
|
"AgentsSearchResponseAgentsItemMessageIdsItem",
|
|
245
247
|
"AgentsSearchResponseAgentsItemMetadata",
|
letta_client/agents/client.py
CHANGED
|
@@ -195,6 +195,7 @@ class AgentsClient:
|
|
|
195
195
|
project_id: typing.Optional[str] = OMIT,
|
|
196
196
|
template_id: typing.Optional[str] = OMIT,
|
|
197
197
|
base_template_id: typing.Optional[str] = OMIT,
|
|
198
|
+
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
198
199
|
request_options: typing.Optional[RequestOptions] = None,
|
|
199
200
|
) -> AgentState:
|
|
200
201
|
"""
|
|
@@ -289,6 +290,9 @@ class AgentsClient:
|
|
|
289
290
|
base_template_id : typing.Optional[str]
|
|
290
291
|
The base template id of the agent.
|
|
291
292
|
|
|
293
|
+
message_buffer_autoclear : typing.Optional[bool]
|
|
294
|
+
If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
|
|
295
|
+
|
|
292
296
|
request_options : typing.Optional[RequestOptions]
|
|
293
297
|
Request-specific configuration.
|
|
294
298
|
|
|
@@ -349,6 +353,7 @@ class AgentsClient:
|
|
|
349
353
|
"project_id": project_id,
|
|
350
354
|
"template_id": template_id,
|
|
351
355
|
"base_template_id": base_template_id,
|
|
356
|
+
"message_buffer_autoclear": message_buffer_autoclear,
|
|
352
357
|
},
|
|
353
358
|
headers={
|
|
354
359
|
"content-type": "application/json",
|
|
@@ -514,6 +519,7 @@ class AgentsClient:
|
|
|
514
519
|
project_id: typing.Optional[str] = OMIT,
|
|
515
520
|
template_id: typing.Optional[str] = OMIT,
|
|
516
521
|
base_template_id: typing.Optional[str] = OMIT,
|
|
522
|
+
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
517
523
|
request_options: typing.Optional[RequestOptions] = None,
|
|
518
524
|
) -> AgentState:
|
|
519
525
|
"""
|
|
@@ -571,6 +577,9 @@ class AgentsClient:
|
|
|
571
577
|
base_template_id : typing.Optional[str]
|
|
572
578
|
The base template id of the agent.
|
|
573
579
|
|
|
580
|
+
message_buffer_autoclear : typing.Optional[bool]
|
|
581
|
+
If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
|
|
582
|
+
|
|
574
583
|
request_options : typing.Optional[RequestOptions]
|
|
575
584
|
Request-specific configuration.
|
|
576
585
|
|
|
@@ -616,6 +625,7 @@ class AgentsClient:
|
|
|
616
625
|
"project_id": project_id,
|
|
617
626
|
"template_id": template_id,
|
|
618
627
|
"base_template_id": base_template_id,
|
|
628
|
+
"message_buffer_autoclear": message_buffer_autoclear,
|
|
619
629
|
},
|
|
620
630
|
headers={
|
|
621
631
|
"content-type": "application/json",
|
|
@@ -953,6 +963,7 @@ class AsyncAgentsClient:
|
|
|
953
963
|
project_id: typing.Optional[str] = OMIT,
|
|
954
964
|
template_id: typing.Optional[str] = OMIT,
|
|
955
965
|
base_template_id: typing.Optional[str] = OMIT,
|
|
966
|
+
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
956
967
|
request_options: typing.Optional[RequestOptions] = None,
|
|
957
968
|
) -> AgentState:
|
|
958
969
|
"""
|
|
@@ -1047,6 +1058,9 @@ class AsyncAgentsClient:
|
|
|
1047
1058
|
base_template_id : typing.Optional[str]
|
|
1048
1059
|
The base template id of the agent.
|
|
1049
1060
|
|
|
1061
|
+
message_buffer_autoclear : typing.Optional[bool]
|
|
1062
|
+
If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
|
|
1063
|
+
|
|
1050
1064
|
request_options : typing.Optional[RequestOptions]
|
|
1051
1065
|
Request-specific configuration.
|
|
1052
1066
|
|
|
@@ -1115,6 +1129,7 @@ class AsyncAgentsClient:
|
|
|
1115
1129
|
"project_id": project_id,
|
|
1116
1130
|
"template_id": template_id,
|
|
1117
1131
|
"base_template_id": base_template_id,
|
|
1132
|
+
"message_buffer_autoclear": message_buffer_autoclear,
|
|
1118
1133
|
},
|
|
1119
1134
|
headers={
|
|
1120
1135
|
"content-type": "application/json",
|
|
@@ -1296,6 +1311,7 @@ class AsyncAgentsClient:
|
|
|
1296
1311
|
project_id: typing.Optional[str] = OMIT,
|
|
1297
1312
|
template_id: typing.Optional[str] = OMIT,
|
|
1298
1313
|
base_template_id: typing.Optional[str] = OMIT,
|
|
1314
|
+
message_buffer_autoclear: typing.Optional[bool] = OMIT,
|
|
1299
1315
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1300
1316
|
) -> AgentState:
|
|
1301
1317
|
"""
|
|
@@ -1353,6 +1369,9 @@ class AsyncAgentsClient:
|
|
|
1353
1369
|
base_template_id : typing.Optional[str]
|
|
1354
1370
|
The base template id of the agent.
|
|
1355
1371
|
|
|
1372
|
+
message_buffer_autoclear : typing.Optional[bool]
|
|
1373
|
+
If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
|
|
1374
|
+
|
|
1356
1375
|
request_options : typing.Optional[RequestOptions]
|
|
1357
1376
|
Request-specific configuration.
|
|
1358
1377
|
|
|
@@ -1406,6 +1425,7 @@ class AsyncAgentsClient:
|
|
|
1406
1425
|
"project_id": project_id,
|
|
1407
1426
|
"template_id": template_id,
|
|
1408
1427
|
"base_template_id": base_template_id,
|
|
1428
|
+
"message_buffer_autoclear": message_buffer_autoclear,
|
|
1409
1429
|
},
|
|
1410
1430
|
headers={
|
|
1411
1431
|
"content-type": "application/json",
|
|
@@ -145,6 +145,9 @@ from .agents_search_response_agents_item_memory_blocks_item_organization_id_item
|
|
|
145
145
|
from .agents_search_response_agents_item_memory_prompt_template import (
|
|
146
146
|
AgentsSearchResponseAgentsItemMemoryPromptTemplate,
|
|
147
147
|
)
|
|
148
|
+
from .agents_search_response_agents_item_message_buffer_autoclear import (
|
|
149
|
+
AgentsSearchResponseAgentsItemMessageBufferAutoclear,
|
|
150
|
+
)
|
|
148
151
|
from .agents_search_response_agents_item_message_ids import AgentsSearchResponseAgentsItemMessageIds
|
|
149
152
|
from .agents_search_response_agents_item_message_ids_item import AgentsSearchResponseAgentsItemMessageIdsItem
|
|
150
153
|
from .agents_search_response_agents_item_metadata import AgentsSearchResponseAgentsItemMetadata
|
|
@@ -460,6 +463,7 @@ __all__ = [
|
|
|
460
463
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
461
464
|
"AgentsSearchResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
462
465
|
"AgentsSearchResponseAgentsItemMemoryPromptTemplate",
|
|
466
|
+
"AgentsSearchResponseAgentsItemMessageBufferAutoclear",
|
|
463
467
|
"AgentsSearchResponseAgentsItemMessageIds",
|
|
464
468
|
"AgentsSearchResponseAgentsItemMessageIdsItem",
|
|
465
469
|
"AgentsSearchResponseAgentsItemMetadata",
|
|
@@ -23,6 +23,9 @@ from .agents_search_response_agents_item_tool_exec_environment_variables import
|
|
|
23
23
|
from .agents_search_response_agents_item_project_id import AgentsSearchResponseAgentsItemProjectId
|
|
24
24
|
from .agents_search_response_agents_item_template_id import AgentsSearchResponseAgentsItemTemplateId
|
|
25
25
|
from .agents_search_response_agents_item_base_template_id import AgentsSearchResponseAgentsItemBaseTemplateId
|
|
26
|
+
from .agents_search_response_agents_item_message_buffer_autoclear import (
|
|
27
|
+
AgentsSearchResponseAgentsItemMessageBufferAutoclear,
|
|
28
|
+
)
|
|
26
29
|
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
|
27
30
|
import pydantic
|
|
28
31
|
|
|
@@ -51,6 +54,7 @@ class AgentsSearchResponseAgentsItem(UncheckedBaseModel):
|
|
|
51
54
|
project_id: typing.Optional[AgentsSearchResponseAgentsItemProjectId] = None
|
|
52
55
|
template_id: typing.Optional[AgentsSearchResponseAgentsItemTemplateId] = None
|
|
53
56
|
base_template_id: typing.Optional[AgentsSearchResponseAgentsItemBaseTemplateId] = None
|
|
57
|
+
message_buffer_autoclear: typing.Optional[AgentsSearchResponseAgentsItemMessageBufferAutoclear] = None
|
|
54
58
|
template: typing.Optional[str] = None
|
|
55
59
|
|
|
56
60
|
if IS_PYDANTIC_V2:
|
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.30",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
|
@@ -61,6 +61,7 @@ from .types import (
|
|
|
61
61
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationId,
|
|
62
62
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationIdItem,
|
|
63
63
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate,
|
|
64
|
+
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear,
|
|
64
65
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds,
|
|
65
66
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIdsItem,
|
|
66
67
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMetadata,
|
|
@@ -224,6 +225,7 @@ __all__ = [
|
|
|
224
225
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
225
226
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
226
227
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate",
|
|
228
|
+
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear",
|
|
227
229
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds",
|
|
228
230
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIdsItem",
|
|
229
231
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMetadata",
|
|
@@ -178,6 +178,9 @@ from .templates_create_agents_from_template_response_agents_item_memory_blocks_i
|
|
|
178
178
|
from .templates_create_agents_from_template_response_agents_item_memory_prompt_template import (
|
|
179
179
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate,
|
|
180
180
|
)
|
|
181
|
+
from .templates_create_agents_from_template_response_agents_item_message_buffer_autoclear import (
|
|
182
|
+
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear,
|
|
183
|
+
)
|
|
181
184
|
from .templates_create_agents_from_template_response_agents_item_message_ids import (
|
|
182
185
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds,
|
|
183
186
|
)
|
|
@@ -540,6 +543,7 @@ __all__ = [
|
|
|
540
543
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationId",
|
|
541
544
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryBlocksItemOrganizationIdItem",
|
|
542
545
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMemoryPromptTemplate",
|
|
546
|
+
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear",
|
|
543
547
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIds",
|
|
544
548
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageIdsItem",
|
|
545
549
|
"TemplatesCreateAgentsFromTemplateResponseAgentsItemMetadata",
|
|
@@ -59,6 +59,9 @@ from .templates_create_agents_from_template_response_agents_item_template_id imp
|
|
|
59
59
|
from .templates_create_agents_from_template_response_agents_item_base_template_id import (
|
|
60
60
|
TemplatesCreateAgentsFromTemplateResponseAgentsItemBaseTemplateId,
|
|
61
61
|
)
|
|
62
|
+
from .templates_create_agents_from_template_response_agents_item_message_buffer_autoclear import (
|
|
63
|
+
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear,
|
|
64
|
+
)
|
|
62
65
|
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
|
63
66
|
import pydantic
|
|
64
67
|
|
|
@@ -89,6 +92,9 @@ class TemplatesCreateAgentsFromTemplateResponseAgentsItem(UncheckedBaseModel):
|
|
|
89
92
|
project_id: typing.Optional[TemplatesCreateAgentsFromTemplateResponseAgentsItemProjectId] = None
|
|
90
93
|
template_id: typing.Optional[TemplatesCreateAgentsFromTemplateResponseAgentsItemTemplateId] = None
|
|
91
94
|
base_template_id: typing.Optional[TemplatesCreateAgentsFromTemplateResponseAgentsItemBaseTemplateId] = None
|
|
95
|
+
message_buffer_autoclear: typing.Optional[
|
|
96
|
+
TemplatesCreateAgentsFromTemplateResponseAgentsItemMessageBufferAutoclear
|
|
97
|
+
] = None
|
|
92
98
|
|
|
93
99
|
if IS_PYDANTIC_V2:
|
|
94
100
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -143,6 +143,11 @@ class AgentState(UncheckedBaseModel):
|
|
|
143
143
|
The base template id of the agent.
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
|
+
message_buffer_autoclear: typing.Optional[bool] = pydantic.Field(default=None)
|
|
147
|
+
"""
|
|
148
|
+
If set to True, the agent will not remember previous messages (though the agent will still retain state via core memory blocks and archival/recall memory). Not recommended unless you have an advanced use case.
|
|
149
|
+
"""
|
|
150
|
+
|
|
146
151
|
if IS_PYDANTIC_V2:
|
|
147
152
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
148
153
|
else:
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=alPU1DyMZf5sWtK_9l7pe7kiI_N1AZkk5o1pGgKceco,58061
|
|
2
|
+
letta_client/agents/__init__.py,sha256=TFZZra4XZbVPCQCiZkw4oUZWKuEbv2GhcuuBpJ-TDQ8,21536
|
|
3
3
|
letta_client/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/archival_memory/client.py,sha256=VTlL-cGmYBYdVI5owY8Gbbj4dscUCtSzL34Gm_5Nvk4,14872
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
5
|
+
letta_client/agents/client.py,sha256=hIErW0o-b4CzddQ6lV2BDhA09JdhPA0-99LdbqeW2Kw,60539
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=GKKvoG4N_K8Biz9yDjeIHpFG0C8Cwc7tHmEX3pTL_9U,4815
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -25,14 +25,14 @@ letta_client/agents/templates/types/templates_create_response.py,sha256=kKjkyjv3
|
|
|
25
25
|
letta_client/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
|
|
26
26
|
letta_client/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
27
27
|
letta_client/agents/tools/client.py,sha256=xZMRZhG8mI_h8_QqgI4lXh3FieRCLeoPwdtB56GB-XU,12685
|
|
28
|
-
letta_client/agents/types/__init__.py,sha256=
|
|
28
|
+
letta_client/agents/types/__init__.py,sha256=jjyEnXfduyS7K5XYt5ZqG4z5UmkRR_gZL3327LfTIjA,34142
|
|
29
29
|
letta_client/agents/types/agents_search_request_search_item.py,sha256=9wZPvTP5ESFOhdF9YqdYwv4h_fEFF9TWbGtDO9xkrzA,494
|
|
30
30
|
letta_client/agents/types/agents_search_request_search_item_field.py,sha256=06cbjgIRD2GL7Ck7ZYxLVNbrKP9HLHNOCi9DSPspATQ,692
|
|
31
31
|
letta_client/agents/types/agents_search_request_search_item_one.py,sha256=ECWv-hDZen6AomM01zmRsOz0PlXVEwIwLHjid9yko9o,779
|
|
32
32
|
letta_client/agents/types/agents_search_request_search_item_one_operator.py,sha256=S1qYdfdUqUgZ0DzQ53x7GN_qa_4NypO7-qNkkxgsbQc,182
|
|
33
33
|
letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=tGjwnFqSofFMBSAogmPLEflDQZ2rMqoMfFUtaIpND18,630
|
|
34
34
|
letta_client/agents/types/agents_search_response.py,sha256=4A0h6ok1Wc1AkTVS77LGVX0sMHPawRHpbecr-eKrdsI,870
|
|
35
|
-
letta_client/agents/types/agents_search_response_agents_item.py,sha256=
|
|
35
|
+
letta_client/agents/types/agents_search_response_agents_item.py,sha256=MDwoPlN5VoDEQXs9egSz7_7RFc36ClSbf4-7eho5aVo,4384
|
|
36
36
|
letta_client/agents/types/agents_search_response_agents_item_agent_type.py,sha256=hnbAg8R8Q2Jv79ebYZGhbrS8gwt60bz5ldnebkivCfY,250
|
|
37
37
|
letta_client/agents/types/agents_search_response_agents_item_base_template_id.py,sha256=9gLyzrfFq7z89T0Hi0fCsnmVgulsvY0V2Ae28E4jYr8,414
|
|
38
38
|
letta_client/agents/types/agents_search_response_agents_item_base_template_id_item.py,sha256=mlY4fKqWadtJ3kZIYjY9NIcpDtaKpxV2ps60FPo-XzI,171
|
|
@@ -91,6 +91,7 @@ letta_client/agents/types/agents_search_response_agents_item_memory_blocks_item_
|
|
|
91
91
|
letta_client/agents/types/agents_search_response_agents_item_memory_blocks_item_organization_id.py,sha256=FXqbntdn5YIBXh_nG_9SCs4ViA9CB8MINiz4qlilETY,489
|
|
92
92
|
letta_client/agents/types/agents_search_response_agents_item_memory_blocks_item_organization_id_item.py,sha256=7x2rbL4g2ZOd5mx7psxPefuTLrRxJMawOFEe1lwX-Ew,187
|
|
93
93
|
letta_client/agents/types/agents_search_response_agents_item_memory_prompt_template.py,sha256=kxw8fum8zMq3tOwvSsvdhSdPPhfMeG6UT7fUQBiDI9U,180
|
|
94
|
+
letta_client/agents/types/agents_search_response_agents_item_message_buffer_autoclear.py,sha256=QN8egt0XDl6NWOfml6ycREeNULZYKbL7_bH8YsDKLKI,183
|
|
94
95
|
letta_client/agents/types/agents_search_response_agents_item_message_ids.py,sha256=sU89CRgZDlaVDz5V61Xr0THrqod3xjQAGDRxdQUq4lY,410
|
|
95
96
|
letta_client/agents/types/agents_search_response_agents_item_message_ids_item.py,sha256=HmBBIfliym9YU_MX2NGAjedc17VtrDDjBeppDZ0mp-c,180
|
|
96
97
|
letta_client/agents/types/agents_search_response_agents_item_metadata.py,sha256=HsdNVeIjG20rvpzyhptGQKUy7yeLd2o_CqSO9IkarPs,379
|
|
@@ -199,7 +200,7 @@ letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU
|
|
|
199
200
|
letta_client/client.py,sha256=y2cXN0ApFul2Lz-fVh5TbeYbQ8oUjnXcwJ6wUczEf2c,2457
|
|
200
201
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
201
202
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
202
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
203
|
+
letta_client/core/client_wrapper.py,sha256=SrxvV4xqETaIX68adc5Dy9mGCJXtih7joURor-S5uHk,1997
|
|
203
204
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
204
205
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
205
206
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -237,11 +238,11 @@ letta_client/steps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_p
|
|
|
237
238
|
letta_client/steps/client.py,sha256=nHd4ZxYeaVgYf9ZewBCLc58DZ38LoW97W-xbc2oOL_0,10900
|
|
238
239
|
letta_client/tag/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
239
240
|
letta_client/tag/client.py,sha256=TBAotdb0e2_x2pANF4dOE1qmWY3GIgb7nOhvN7iZ3_4,5183
|
|
240
|
-
letta_client/templates/__init__.py,sha256=
|
|
241
|
+
letta_client/templates/__init__.py,sha256=3c6ZEc6G8PAADGWNgWoAEbvf0LbkAWhj22O1Zz1eqCU,27151
|
|
241
242
|
letta_client/templates/client.py,sha256=RLdu0MgTHR7MEK_trsPFlP_3ls27-xEnUW5m0V88eaI,6858
|
|
242
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
243
|
+
letta_client/templates/types/__init__.py,sha256=3k3rRGwHWajrb4RFiI9FV8uRIXnjaOYiu1n8OCUBwgk,44318
|
|
243
244
|
letta_client/templates/types/templates_create_agents_from_template_response.py,sha256=7rV8AJ6_35MTo2bsgVVvdEzn5LHKdoaNhuHFy5ABsIc,784
|
|
244
|
-
letta_client/templates/types/templates_create_agents_from_template_response_agents_item.py,sha256=
|
|
245
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item.py,sha256=nLRVION6iNGMykVUU2Nml-14HbhyuHhY3hzcAmI0fOM,5873
|
|
245
246
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_agent_type.py,sha256=1YGJe4QqKmUsJRXlvhXH8xl7PhpCgTQip-aT1Zd3h0c,271
|
|
246
247
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_base_template_id.py,sha256=Giq4AX2SRh9ZWnakEpn3jovsaf2n4eG5m5CisLGE0Ao,510
|
|
247
248
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_base_template_id_item.py,sha256=9hfn8doRLvqLAHnzJ9w13lR-dMG_4iv_wfKR6z7pUdg,192
|
|
@@ -300,6 +301,7 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
300
301
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_memory_blocks_item_organization_id.py,sha256=Rh3SOAT14YsPEW61R3gNqkozQd8b0oncOsZLFMqBzQ4,576
|
|
301
302
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_memory_blocks_item_organization_id_item.py,sha256=WipenHvY69jnnrMrsj5YKiFjOasGUVDDlaFsMf1BG14,214
|
|
302
303
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_memory_prompt_template.py,sha256=iDNmx7gjA3smqKLB-G2Iw7mU0E-UJQ9M1nMlY9AQ6tY,201
|
|
304
|
+
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_message_buffer_autoclear.py,sha256=bRo-DIKnEySbJ4O09gMd_tjWl95l7d99QcmXKsnGkRM,210
|
|
303
305
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_message_ids.py,sha256=5ZV9dJSSkDIt4spWobO0EJb9OYaHXAeMqDavg40R5fg,506
|
|
304
306
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_message_ids_item.py,sha256=y7oZJZBWa8bTkkyTrveo4kp3v8WBIkAWRU_orCnde3E,201
|
|
305
307
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_metadata.py,sha256=wBfD64BmkkqRtgiQZgF7bpQAca7sLatc-SZVtgFnGWE,475
|
|
@@ -407,7 +409,7 @@ letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qV
|
|
|
407
409
|
letta_client/types/action_parameters_model.py,sha256=zKzJkjtu1pt4BEA2GHlg9rMWja5a0uZygOpOx3FbgIM,749
|
|
408
410
|
letta_client/types/action_response_model.py,sha256=5OuImT0EQFkAnc81F6tZsVEwYG8rKbIrx_ydGiKqwog,745
|
|
409
411
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
410
|
-
letta_client/types/agent_state.py,sha256=
|
|
412
|
+
letta_client/types/agent_state.py,sha256=KcNV8abv5azSBeOnZPIBE-XXUx9jYaGkVTzIHfN3r4I,4869
|
|
411
413
|
letta_client/types/agent_state_tool_rules_item.py,sha256=-1gMhEZOThSYXXTWxZXtSNpkANOTws0bZcEXf-PQCJA,375
|
|
412
414
|
letta_client/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3HL0,220
|
|
413
415
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
@@ -559,6 +561,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
559
561
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
560
562
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
561
563
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
562
|
-
letta_client-0.1.
|
|
563
|
-
letta_client-0.1.
|
|
564
|
-
letta_client-0.1.
|
|
564
|
+
letta_client-0.1.30.dist-info/METADATA,sha256=OWrJQZM6wFZHk55uaZQHAwqvILz7v84R54Kji24xTZU,4942
|
|
565
|
+
letta_client-0.1.30.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
566
|
+
letta_client-0.1.30.dist-info/RECORD,,
|
|
File without changes
|