letta-client 0.1.41__py3-none-any.whl → 0.1.43__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 +10 -8
- letta_client/agents/__init__.py +5 -6
- letta_client/agents/blocks/client.py +753 -0
- letta_client/agents/client.py +32 -28
- letta_client/agents/core_memory/client.py +1 -734
- letta_client/agents/passages/__init__.py +2 -0
- letta_client/agents/{archival_memory → passages}/client.py +8 -8
- letta_client/agents/types/__init__.py +2 -4
- letta_client/agents/types/agents_search_response_agents_item.py +2 -2
- letta_client/agents/types/agents_search_response_agents_item_identity_ids.py +5 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/identities/client.py +108 -50
- letta_client/templates/__init__.py +2 -4
- letta_client/templates/types/__init__.py +3 -7
- letta_client/templates/types/templates_create_agents_response_agents_item.py +3 -3
- letta_client/templates/types/templates_create_agents_response_agents_item_identity_ids.py +5 -0
- letta_client/types/__init__.py +6 -0
- letta_client/types/agent_state.py +2 -2
- letta_client/types/identity.py +8 -3
- letta_client/types/identity_create.py +6 -0
- letta_client/types/identity_property.py +38 -0
- letta_client/types/identity_property_type.py +5 -0
- letta_client/types/identity_property_value.py +5 -0
- {letta_client-0.1.41.dist-info → letta_client-0.1.43.dist-info}/METADATA +1 -1
- {letta_client-0.1.41.dist-info → letta_client-0.1.43.dist-info}/RECORD +27 -24
- letta_client/agents/types/agents_search_response_agents_item_identifier_key.py +0 -11
- letta_client/agents/types/agents_search_response_agents_item_identifier_key_item.py +0 -5
- letta_client/templates/types/templates_create_agents_response_agents_item_identifier_key.py +0 -13
- letta_client/templates/types/templates_create_agents_response_agents_item_identifier_key_item.py +0 -5
- /letta_client/agents/{archival_memory → blocks}/__init__.py +0 -0
- {letta_client-0.1.41.dist-info → letta_client-0.1.43.dist-info}/WHEEL +0 -0
|
@@ -65,11 +65,8 @@ from .templates_create_agents_response_agents_item_embedding_config_handle impor
|
|
|
65
65
|
from .templates_create_agents_response_agents_item_embedding_config_handle_item import (
|
|
66
66
|
TemplatesCreateAgentsResponseAgentsItemEmbeddingConfigHandleItem,
|
|
67
67
|
)
|
|
68
|
-
from .
|
|
69
|
-
|
|
70
|
-
)
|
|
71
|
-
from .templates_create_agents_response_agents_item_identifier_key_item import (
|
|
72
|
-
TemplatesCreateAgentsResponseAgentsItemIdentifierKeyItem,
|
|
68
|
+
from .templates_create_agents_response_agents_item_identity_ids import (
|
|
69
|
+
TemplatesCreateAgentsResponseAgentsItemIdentityIds,
|
|
73
70
|
)
|
|
74
71
|
from .templates_create_agents_response_agents_item_last_updated_by_id import (
|
|
75
72
|
TemplatesCreateAgentsResponseAgentsItemLastUpdatedById,
|
|
@@ -500,8 +497,7 @@ __all__ = [
|
|
|
500
497
|
"TemplatesCreateAgentsResponseAgentsItemEmbeddingConfigEmbeddingEndpointType",
|
|
501
498
|
"TemplatesCreateAgentsResponseAgentsItemEmbeddingConfigHandle",
|
|
502
499
|
"TemplatesCreateAgentsResponseAgentsItemEmbeddingConfigHandleItem",
|
|
503
|
-
"
|
|
504
|
-
"TemplatesCreateAgentsResponseAgentsItemIdentifierKeyItem",
|
|
500
|
+
"TemplatesCreateAgentsResponseAgentsItemIdentityIds",
|
|
505
501
|
"TemplatesCreateAgentsResponseAgentsItemLastUpdatedById",
|
|
506
502
|
"TemplatesCreateAgentsResponseAgentsItemLastUpdatedByIdItem",
|
|
507
503
|
"TemplatesCreateAgentsResponseAgentsItemLlmConfig",
|
|
@@ -35,8 +35,8 @@ from .templates_create_agents_response_agents_item_template_id import TemplatesC
|
|
|
35
35
|
from .templates_create_agents_response_agents_item_base_template_id import (
|
|
36
36
|
TemplatesCreateAgentsResponseAgentsItemBaseTemplateId,
|
|
37
37
|
)
|
|
38
|
-
from .
|
|
39
|
-
|
|
38
|
+
from .templates_create_agents_response_agents_item_identity_ids import (
|
|
39
|
+
TemplatesCreateAgentsResponseAgentsItemIdentityIds,
|
|
40
40
|
)
|
|
41
41
|
from .templates_create_agents_response_agents_item_message_buffer_autoclear import (
|
|
42
42
|
TemplatesCreateAgentsResponseAgentsItemMessageBufferAutoclear,
|
|
@@ -71,7 +71,7 @@ class TemplatesCreateAgentsResponseAgentsItem(UncheckedBaseModel):
|
|
|
71
71
|
project_id: typing.Optional[TemplatesCreateAgentsResponseAgentsItemProjectId] = None
|
|
72
72
|
template_id: typing.Optional[TemplatesCreateAgentsResponseAgentsItemTemplateId] = None
|
|
73
73
|
base_template_id: typing.Optional[TemplatesCreateAgentsResponseAgentsItemBaseTemplateId] = None
|
|
74
|
-
|
|
74
|
+
identity_ids: typing.Optional[TemplatesCreateAgentsResponseAgentsItemIdentityIds] = None
|
|
75
75
|
message_buffer_autoclear: typing.Optional[TemplatesCreateAgentsResponseAgentsItemMessageBufferAutoclear] = None
|
|
76
76
|
|
|
77
77
|
if IS_PYDANTIC_V2:
|
letta_client/types/__init__.py
CHANGED
|
@@ -86,6 +86,9 @@ from .health import Health
|
|
|
86
86
|
from .http_validation_error import HttpValidationError
|
|
87
87
|
from .identity import Identity
|
|
88
88
|
from .identity_create import IdentityCreate
|
|
89
|
+
from .identity_property import IdentityProperty
|
|
90
|
+
from .identity_property_type import IdentityPropertyType
|
|
91
|
+
from .identity_property_value import IdentityPropertyValue
|
|
89
92
|
from .identity_type import IdentityType
|
|
90
93
|
from .image_url import ImageUrl
|
|
91
94
|
from .image_url_detail import ImageUrlDetail
|
|
@@ -253,6 +256,9 @@ __all__ = [
|
|
|
253
256
|
"HttpValidationError",
|
|
254
257
|
"Identity",
|
|
255
258
|
"IdentityCreate",
|
|
259
|
+
"IdentityProperty",
|
|
260
|
+
"IdentityPropertyType",
|
|
261
|
+
"IdentityPropertyValue",
|
|
256
262
|
"IdentityType",
|
|
257
263
|
"ImageUrl",
|
|
258
264
|
"ImageUrlDetail",
|
|
@@ -143,9 +143,9 @@ class AgentState(UncheckedBaseModel):
|
|
|
143
143
|
The base template id of the agent.
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
|
-
|
|
146
|
+
identity_ids: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
|
|
147
147
|
"""
|
|
148
|
-
The
|
|
148
|
+
The ids of the identities associated with this agent.
|
|
149
149
|
"""
|
|
150
150
|
|
|
151
151
|
message_buffer_autoclear: typing.Optional[bool] = pydantic.Field(default=None)
|
letta_client/types/identity.py
CHANGED
|
@@ -4,7 +4,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
4
4
|
import typing
|
|
5
5
|
import pydantic
|
|
6
6
|
from .identity_type import IdentityType
|
|
7
|
-
from .
|
|
7
|
+
from .identity_property import IdentityProperty
|
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
9
9
|
|
|
10
10
|
|
|
@@ -34,9 +34,14 @@ class Identity(UncheckedBaseModel):
|
|
|
34
34
|
The project id of the identity, if applicable.
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
agent_ids: typing.List[str] = pydantic.Field()
|
|
38
38
|
"""
|
|
39
|
-
The agents associated with the identity.
|
|
39
|
+
The IDs of the agents associated with the identity.
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
properties: typing.Optional[typing.List[IdentityProperty]] = pydantic.Field(default=None)
|
|
43
|
+
"""
|
|
44
|
+
List of properties associated with the identity
|
|
40
45
|
"""
|
|
41
46
|
|
|
42
47
|
if IS_PYDANTIC_V2:
|
|
@@ -4,6 +4,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
|
|
|
4
4
|
import pydantic
|
|
5
5
|
from .identity_type import IdentityType
|
|
6
6
|
import typing
|
|
7
|
+
from .identity_property import IdentityProperty
|
|
7
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
9
|
|
|
9
10
|
|
|
@@ -33,6 +34,11 @@ class IdentityCreate(UncheckedBaseModel):
|
|
|
33
34
|
The agent ids that are associated with the identity.
|
|
34
35
|
"""
|
|
35
36
|
|
|
37
|
+
properties: typing.Optional[typing.List[IdentityProperty]] = pydantic.Field(default=None)
|
|
38
|
+
"""
|
|
39
|
+
List of properties associated with the identity.
|
|
40
|
+
"""
|
|
41
|
+
|
|
36
42
|
if IS_PYDANTIC_V2:
|
|
37
43
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
38
44
|
else:
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
from .identity_property_value import IdentityPropertyValue
|
|
6
|
+
from .identity_property_type import IdentityPropertyType
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
|
+
import typing
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class IdentityProperty(UncheckedBaseModel):
|
|
12
|
+
"""
|
|
13
|
+
A property of an identity
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
key: str = pydantic.Field()
|
|
17
|
+
"""
|
|
18
|
+
The key of the property
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
value: IdentityPropertyValue = pydantic.Field()
|
|
22
|
+
"""
|
|
23
|
+
The value of the property
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
type: IdentityPropertyType = pydantic.Field()
|
|
27
|
+
"""
|
|
28
|
+
The type of the property
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
if IS_PYDANTIC_V2:
|
|
32
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
33
|
+
else:
|
|
34
|
+
|
|
35
|
+
class Config:
|
|
36
|
+
frozen = True
|
|
37
|
+
smart_union = True
|
|
38
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256
|
|
2
|
-
letta_client/agents/__init__.py,sha256=
|
|
3
|
-
letta_client/agents/
|
|
4
|
-
letta_client/agents/
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=9Irh5yC-SkPUD4m7mWClK5N-N0sXmHFV42zihbZp6Vo,55813
|
|
2
|
+
letta_client/agents/__init__.py,sha256=KCn7wjwmY7PBtXQYfiFQPNtwPz5dPBB4A6V6V242U6w,22136
|
|
3
|
+
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
|
+
letta_client/agents/blocks/client.py,sha256=x2651Wftl9J8GhtTkF0os6iposDvOirWa_vdmyEZB38,23746
|
|
5
|
+
letta_client/agents/client.py,sha256=dcMsoaq6CaBddCkuQx3SNw06mg7_wzqiloUguaMgiqw,63483
|
|
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
|
|
9
|
-
letta_client/agents/core_memory/client.py,sha256=
|
|
9
|
+
letta_client/agents/core_memory/client.py,sha256=lJomRrMyaWLKbYmAsEcSZsdSojIdRY01yOH2Pb7LzCw,4869
|
|
10
10
|
letta_client/agents/memory_variables/__init__.py,sha256=goz3kTaLM-v8g-hYEhzyqBYzIc3Vu6gDD_7RtkIrM50,155
|
|
11
11
|
letta_client/agents/memory_variables/client.py,sha256=6qFVbR_tdfqj4HQ1h1HXR8DZCVzzJ8I82R92i35iadY,4965
|
|
12
12
|
letta_client/agents/memory_variables/types/__init__.py,sha256=EoznK0WvhCyFYd4KDdU-cGDQWpSXmq79BSkqVHN-j7A,180
|
|
@@ -16,6 +16,8 @@ letta_client/agents/messages/client.py,sha256=kf_ALPe08BfBIqqWdVkUic4vZilMENpBGr
|
|
|
16
16
|
letta_client/agents/messages/types/__init__.py,sha256=P-MDXIPbY_Iipi8hS4iGzbeCOzTw4E5cySwMgcyICWI,245
|
|
17
17
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1AviakHXsWVcFv97a3RchzzzIiD77w4EC8,665
|
|
18
18
|
letta_client/agents/messages/types/message_update_content.py,sha256=LjGu6xzHC1kRKNHWg203jzz9GF8jPeNMPS36bEfqS7I,194
|
|
19
|
+
letta_client/agents/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
20
|
+
letta_client/agents/passages/client.py,sha256=aNaeyQU8AQHozFWkTbNH8MxpOUea-uiZ_RgdyFEFD2w,14818
|
|
19
21
|
letta_client/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
20
22
|
letta_client/agents/sources/client.py,sha256=VjmiI0L2RyT3AhqstHunapdbzygTBcNGoT1DiFGRg44,12799
|
|
21
23
|
letta_client/agents/templates/__init__.py,sha256=GGaz6hUZBKGSU4XFlzlC_cMqLxAymHN45RF3WLwkiWY,201
|
|
@@ -25,14 +27,14 @@ letta_client/agents/templates/types/templates_create_response.py,sha256=kKjkyjv3
|
|
|
25
27
|
letta_client/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
|
|
26
28
|
letta_client/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
27
29
|
letta_client/agents/tools/client.py,sha256=xZMRZhG8mI_h8_QqgI4lXh3FieRCLeoPwdtB56GB-XU,12685
|
|
28
|
-
letta_client/agents/types/__init__.py,sha256=
|
|
30
|
+
letta_client/agents/types/__init__.py,sha256=gEoXVmTXkszsd8VQa4faCWJpfv34XfKVrfTeKUJ7GDQ,35122
|
|
29
31
|
letta_client/agents/types/agents_search_request_search_item.py,sha256=9wZPvTP5ESFOhdF9YqdYwv4h_fEFF9TWbGtDO9xkrzA,494
|
|
30
32
|
letta_client/agents/types/agents_search_request_search_item_field.py,sha256=06cbjgIRD2GL7Ck7ZYxLVNbrKP9HLHNOCi9DSPspATQ,692
|
|
31
33
|
letta_client/agents/types/agents_search_request_search_item_one.py,sha256=ECWv-hDZen6AomM01zmRsOz0PlXVEwIwLHjid9yko9o,779
|
|
32
34
|
letta_client/agents/types/agents_search_request_search_item_one_operator.py,sha256=S1qYdfdUqUgZ0DzQ53x7GN_qa_4NypO7-qNkkxgsbQc,182
|
|
33
35
|
letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=tGjwnFqSofFMBSAogmPLEflDQZ2rMqoMfFUtaIpND18,630
|
|
34
36
|
letta_client/agents/types/agents_search_response.py,sha256=4A0h6ok1Wc1AkTVS77LGVX0sMHPawRHpbecr-eKrdsI,870
|
|
35
|
-
letta_client/agents/types/agents_search_response_agents_item.py,sha256=
|
|
37
|
+
letta_client/agents/types/agents_search_response_agents_item.py,sha256=hMyBbobsTOJ_38V9eo5SzQx56MtVz-IJIPZ-btXI_0s,4571
|
|
36
38
|
letta_client/agents/types/agents_search_response_agents_item_agent_type.py,sha256=hnbAg8R8Q2Jv79ebYZGhbrS8gwt60bz5ldnebkivCfY,250
|
|
37
39
|
letta_client/agents/types/agents_search_response_agents_item_base_template_id.py,sha256=9gLyzrfFq7z89T0Hi0fCsnmVgulsvY0V2Ae28E4jYr8,414
|
|
38
40
|
letta_client/agents/types/agents_search_response_agents_item_base_template_id_item.py,sha256=mlY4fKqWadtJ3kZIYjY9NIcpDtaKpxV2ps60FPo-XzI,171
|
|
@@ -56,8 +58,7 @@ letta_client/agents/types/agents_search_response_agents_item_embedding_config_em
|
|
|
56
58
|
letta_client/agents/types/agents_search_response_agents_item_embedding_config_embedding_endpoint_type.py,sha256=BbADzNL49v41DYOvUKcL2sQV0ZEJiPMmhFwaoVBcp3A,589
|
|
57
59
|
letta_client/agents/types/agents_search_response_agents_item_embedding_config_handle.py,sha256=Y6bNXRnk5jBWe574rEaseQxHaGEsL9g0hvwG1FCi518,451
|
|
58
60
|
letta_client/agents/types/agents_search_response_agents_item_embedding_config_handle_item.py,sha256=EwMCmx0n-Ybd3reN9QNPIs5hIkUiUoGKh9QtVAVz7iQ,178
|
|
59
|
-
letta_client/agents/types/
|
|
60
|
-
letta_client/agents/types/agents_search_response_agents_item_identifier_key_item.py,sha256=_k4uRLfq4WeiDhVI51v2tKj5u2kLwk55gkcV6xAOcoE,170
|
|
61
|
+
letta_client/agents/types/agents_search_response_agents_item_identity_ids.py,sha256=Me2QPiXqsJiSWcpmnAu-n6runXGk0OCTv2z-FSHx-iA,184
|
|
61
62
|
letta_client/agents/types/agents_search_response_agents_item_last_updated_by_id.py,sha256=WpPW5-0-xegQTh_-7igpbuFr5wFeFM359kuBqbQDYRE,428
|
|
62
63
|
letta_client/agents/types/agents_search_response_agents_item_last_updated_by_id_item.py,sha256=ewpvZ8ScpPBI1Vi7cWjTPQ1eeYBqU8BcsdmFwXR3fsM,172
|
|
63
64
|
letta_client/agents/types/agents_search_response_agents_item_llm_config.py,sha256=QLL21-fKxgjgHcpAZR1VwyRj8G1i1j7mTx_U6qZ25d8,2226
|
|
@@ -206,7 +207,7 @@ letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU
|
|
|
206
207
|
letta_client/client.py,sha256=y2cXN0ApFul2Lz-fVh5TbeYbQ8oUjnXcwJ6wUczEf2c,2457
|
|
207
208
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
208
209
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
209
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
210
|
+
letta_client/core/client_wrapper.py,sha256=nIFQ7Vlc7GE-_LGxT71eckmejfPgXWMxaOeQR7QXVqo,1997
|
|
210
211
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
211
212
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
212
213
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -226,7 +227,7 @@ letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBR
|
|
|
226
227
|
letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
227
228
|
letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
|
|
228
229
|
letta_client/identities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
229
|
-
letta_client/identities/client.py,sha256=
|
|
230
|
+
letta_client/identities/client.py,sha256=6EbK-7f6kMyEAyKMEkdR6qwXbRf_0TCrDKcIKYVQbq4,34364
|
|
230
231
|
letta_client/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
231
232
|
letta_client/jobs/client.py,sha256=z1Zq6dGs2xbf3EAFuD3-m-qbpbUeqpCBYqtIFKkGoMk,15622
|
|
232
233
|
letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -246,11 +247,11 @@ letta_client/steps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_p
|
|
|
246
247
|
letta_client/steps/client.py,sha256=nHd4ZxYeaVgYf9ZewBCLc58DZ38LoW97W-xbc2oOL_0,10900
|
|
247
248
|
letta_client/tag/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
248
249
|
letta_client/tag/client.py,sha256=TBAotdb0e2_x2pANF4dOE1qmWY3GIgb7nOhvN7iZ3_4,5183
|
|
249
|
-
letta_client/templates/__init__.py,sha256=
|
|
250
|
+
letta_client/templates/__init__.py,sha256=Ws3fkjWNdtC8J6O-kCo6VP7Y56svceHltvNolA0MuHM,23969
|
|
250
251
|
letta_client/templates/client.py,sha256=CpU_STVhjt1Rto-COOBdX8Pw2GmgU7E1KgOnj92YLIg,6732
|
|
251
|
-
letta_client/templates/types/__init__.py,sha256=
|
|
252
|
+
letta_client/templates/types/__init__.py,sha256=tccRzwq41aUcw--4C1R8mfLmKpcSA0AK2M8NomrkEBs,39212
|
|
252
253
|
letta_client/templates/types/templates_create_agents_response.py,sha256=UNMZSUckqoug1sq-gqC7luO392eItxxy0NNdUL0CRfQ,725
|
|
253
|
-
letta_client/templates/types/templates_create_agents_response_agents_item.py,sha256=
|
|
254
|
+
letta_client/templates/types/templates_create_agents_response_agents_item.py,sha256=xaEfez_Y4tIlVnCUXrtY9VgQ2XjodS0ua-9trsO9IJQ,5203
|
|
254
255
|
letta_client/templates/types/templates_create_agents_response_agents_item_agent_type.py,sha256=RNO80zLWpTpnFslFa6PDlo0w9Ds6cIqwcrToouFVt98,259
|
|
255
256
|
letta_client/templates/types/templates_create_agents_response_agents_item_base_template_id.py,sha256=DXzjuu9PEMx_8Q8tLW70Y5BWTmiHGPVBKCkVnE6UMSs,460
|
|
256
257
|
letta_client/templates/types/templates_create_agents_response_agents_item_base_template_id_item.py,sha256=ack71ugOKBcjsTAUKamc1Wq_0Z9_XZRUzVZzbTBRBxk,180
|
|
@@ -274,8 +275,7 @@ letta_client/templates/types/templates_create_agents_response_agents_item_embedd
|
|
|
274
275
|
letta_client/templates/types/templates_create_agents_response_agents_item_embedding_config_embedding_endpoint_type.py,sha256=dNwll-L8ElKNz2h6VD1TrINDgH1haCNlmTiDgIyGUc4,598
|
|
275
276
|
letta_client/templates/types/templates_create_agents_response_agents_item_embedding_config_handle.py,sha256=0ZQcfb-KkEbKOg5Sxa4qcg293pmXQqkTDbsG4AeviCo,488
|
|
276
277
|
letta_client/templates/types/templates_create_agents_response_agents_item_embedding_config_handle_item.py,sha256=TZ84dJiK4vhqFhAjnErpWoE5bgCwbznxXq0LMJxzFGg,187
|
|
277
|
-
letta_client/templates/types/
|
|
278
|
-
letta_client/templates/types/templates_create_agents_response_agents_item_identifier_key_item.py,sha256=m-Ya8wl48YAatRfOQYl0Rx-AQDjyJtayEbtM7SsuIfA,179
|
|
278
|
+
letta_client/templates/types/templates_create_agents_response_agents_item_identity_ids.py,sha256=-ss5Ifi4HdGrP0g5X8yPPv-V3EGltzmPz2oVec4HGCc,193
|
|
279
279
|
letta_client/templates/types/templates_create_agents_response_agents_item_last_updated_by_id.py,sha256=h0ZU1lx4hDem3EkXpQfcZe0T6llCxudbWL4D0wzs8Gw,465
|
|
280
280
|
letta_client/templates/types/templates_create_agents_response_agents_item_last_updated_by_id_item.py,sha256=Gm8rlP1HXMx0kf6yVTiHvn3ak1YfUQ-MrRs4njYg6ds,181
|
|
281
281
|
letta_client/templates/types/templates_create_agents_response_agents_item_llm_config.py,sha256=yN1LYm0YhsSNEZvy8IaxMlTDQifhWCHELfyVipg2pUw,2447
|
|
@@ -418,12 +418,12 @@ letta_client/templates/types/templates_create_agents_response_agents_item_update
|
|
|
418
418
|
letta_client/templates/types/templates_create_agents_response_agents_item_updated_at_item.py,sha256=T3rYnv5m_cBAEPBnEjUkkHJLYtFZfXNMbb7a9FrIwKY,175
|
|
419
419
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
420
420
|
letta_client/tools/client.py,sha256=nv4PKwwlBsyGYm9B_3okgaiNFbbMYfZ53bzeoaAhVfU,53219
|
|
421
|
-
letta_client/types/__init__.py,sha256=
|
|
421
|
+
letta_client/types/__init__.py,sha256=CHSYpc-2xTVN0WDFZQ_eQZrSyJ1029q5TXvAfVc5-Ug,15395
|
|
422
422
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
423
423
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
424
424
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
425
425
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
426
|
-
letta_client/types/agent_state.py,sha256=
|
|
426
|
+
letta_client/types/agent_state.py,sha256=nym-OgbsFyhaffhKqDoKB3IRs_kRXgoULjaSYUlP3aI,5027
|
|
427
427
|
letta_client/types/agent_state_tool_rules_item.py,sha256=qWQIVi8G-ulUjHJqkUDOZQdSN7aajyOxwg3Y7rBBrOs,448
|
|
428
428
|
letta_client/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3HL0,220
|
|
429
429
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
@@ -503,8 +503,11 @@ letta_client/types/function_output.py,sha256=7b8550BllXxtZQ3T3jfvZjcCU_ZGWNBvjlr
|
|
|
503
503
|
letta_client/types/function_tool.py,sha256=TOETpZdqgPIgd4g9JFo3yvDBpTx4lDFzJNZH8PxAjpI,697
|
|
504
504
|
letta_client/types/health.py,sha256=nQwx5ysn_cJMKUoqsfaPcGNSRSjfwX5S272UiSQJ03w,618
|
|
505
505
|
letta_client/types/http_validation_error.py,sha256=yHa4_NHIMB-VKNZpk7agjLTwWIg7mv7ml3d7I-Bqiog,661
|
|
506
|
-
letta_client/types/identity.py,sha256
|
|
507
|
-
letta_client/types/identity_create.py,sha256=
|
|
506
|
+
letta_client/types/identity.py,sha256=9wSW-1tIYMgoyU2U3opFN1KlOoDSjgTNvKloZp1LDCM,1467
|
|
507
|
+
letta_client/types/identity_create.py,sha256=pIufW5mmbJadPwBSG2eH1yACu6YScVClZNLZWPsFlWY,1385
|
|
508
|
+
letta_client/types/identity_property.py,sha256=K-e-SVzwIznTAJgMrYKWvEBZmymHzUiAOql4Da7BX7o,981
|
|
509
|
+
letta_client/types/identity_property_type.py,sha256=Ce360UCsjWkX5t1-4HK8_4qiBz1olFGL8gDhuLb2d6Q,183
|
|
510
|
+
letta_client/types/identity_property_value.py,sha256=SQJz97fXG0XHqOGYmYRmHLbI4On3xKmPZhrrkfN8vBs,187
|
|
508
511
|
letta_client/types/identity_type.py,sha256=YeGvqit1VLK7q0GpNuTyfbCxXO7BJjq-hFSiFZexswk,160
|
|
509
512
|
letta_client/types/image_url.py,sha256=re4N2AsAvOFl2nS6v8jOi3jVFppBs-3zhwpBKHSuCLs,648
|
|
510
513
|
letta_client/types/image_url_detail.py,sha256=YFT9wyf8hqeKhQjRWMv97y-fbU2DB-oCbU5BpUcHWVU,161
|
|
@@ -579,6 +582,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
579
582
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
580
583
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
581
584
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
582
|
-
letta_client-0.1.
|
|
583
|
-
letta_client-0.1.
|
|
584
|
-
letta_client-0.1.
|
|
585
|
+
letta_client-0.1.43.dist-info/METADATA,sha256=VtA3ro5KT55ksKgBBpmrQEU1AZ9YUrAW-NwOjXWYM0I,4942
|
|
586
|
+
letta_client-0.1.43.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
587
|
+
letta_client-0.1.43.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
from .agents_search_response_agents_item_identifier_key_item import AgentsSearchResponseAgentsItemIdentifierKeyItem
|
|
5
|
-
|
|
6
|
-
AgentsSearchResponseAgentsItemIdentifierKey = typing.Union[
|
|
7
|
-
str,
|
|
8
|
-
typing.Optional[str],
|
|
9
|
-
typing.List[typing.Optional[AgentsSearchResponseAgentsItemIdentifierKeyItem]],
|
|
10
|
-
typing.Optional[typing.Any],
|
|
11
|
-
]
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
from .templates_create_agents_response_agents_item_identifier_key_item import (
|
|
5
|
-
TemplatesCreateAgentsResponseAgentsItemIdentifierKeyItem,
|
|
6
|
-
)
|
|
7
|
-
|
|
8
|
-
TemplatesCreateAgentsResponseAgentsItemIdentifierKey = typing.Union[
|
|
9
|
-
str,
|
|
10
|
-
typing.Optional[str],
|
|
11
|
-
typing.List[typing.Optional[TemplatesCreateAgentsResponseAgentsItemIdentifierKeyItem]],
|
|
12
|
-
typing.Optional[typing.Any],
|
|
13
|
-
]
|
|
File without changes
|
|
File without changes
|