letta-client 0.1.36__py3-none-any.whl → 0.1.37__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 +6 -1
- letta_client/agents/client.py +10 -2
- letta_client/base_client.py +4 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/identities/__init__.py +2 -0
- letta_client/identities/client.py +195 -0
- letta_client/types/__init__.py +4 -0
- letta_client/types/action_parameters_model.py +1 -0
- letta_client/types/action_response_model.py +1 -0
- letta_client/types/app_auth_scheme_auth_mode.py +1 -1
- letta_client/types/identity.py +49 -0
- letta_client/types/identity_type.py +5 -0
- {letta_client-0.1.36.dist-info → letta_client-0.1.37.dist-info}/METADATA +1 -1
- {letta_client-0.1.36.dist-info → letta_client-0.1.37.dist-info}/RECORD +15 -11
- {letta_client-0.1.36.dist-info → letta_client-0.1.37.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -84,6 +84,8 @@ from .types import (
|
|
|
84
84
|
FunctionTool,
|
|
85
85
|
Health,
|
|
86
86
|
HttpValidationError,
|
|
87
|
+
Identity,
|
|
88
|
+
IdentityType,
|
|
87
89
|
ImageUrl,
|
|
88
90
|
ImageUrlDetail,
|
|
89
91
|
InitToolRule,
|
|
@@ -158,7 +160,7 @@ from .types import (
|
|
|
158
160
|
ValidationErrorLocItem,
|
|
159
161
|
)
|
|
160
162
|
from .errors import ConflictError, InternalServerError, NotFoundError, UnprocessableEntityError
|
|
161
|
-
from . import agents, blocks, health, jobs, models, providers, runs, sources, steps, tag, templates, tools
|
|
163
|
+
from . import agents, blocks, health, identities, jobs, models, providers, runs, sources, steps, tag, templates, tools
|
|
162
164
|
from .agents import (
|
|
163
165
|
AgentsSearchRequestSearchItem,
|
|
164
166
|
AgentsSearchRequestSearchItemField,
|
|
@@ -755,6 +757,8 @@ __all__ = [
|
|
|
755
757
|
"FunctionTool",
|
|
756
758
|
"Health",
|
|
757
759
|
"HttpValidationError",
|
|
760
|
+
"Identity",
|
|
761
|
+
"IdentityType",
|
|
758
762
|
"ImageUrl",
|
|
759
763
|
"ImageUrlDetail",
|
|
760
764
|
"InitToolRule",
|
|
@@ -1000,6 +1004,7 @@ __all__ = [
|
|
|
1000
1004
|
"agents",
|
|
1001
1005
|
"blocks",
|
|
1002
1006
|
"health",
|
|
1007
|
+
"identities",
|
|
1003
1008
|
"jobs",
|
|
1004
1009
|
"models",
|
|
1005
1010
|
"providers",
|
letta_client/agents/client.py
CHANGED
|
@@ -171,6 +171,7 @@ class AgentsClient:
|
|
|
171
171
|
def create(
|
|
172
172
|
self,
|
|
173
173
|
*,
|
|
174
|
+
project_slug: typing.Optional[str] = None,
|
|
174
175
|
name: typing.Optional[str] = OMIT,
|
|
175
176
|
memory_blocks: typing.Optional[typing.Sequence[CreateBlock]] = OMIT,
|
|
176
177
|
tools: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
@@ -209,6 +210,8 @@ class AgentsClient:
|
|
|
209
210
|
|
|
210
211
|
Parameters
|
|
211
212
|
----------
|
|
213
|
+
project_slug : typing.Optional[str]
|
|
214
|
+
|
|
212
215
|
name : typing.Optional[str]
|
|
213
216
|
The name of the agent.
|
|
214
217
|
|
|
@@ -279,7 +282,7 @@ class AgentsClient:
|
|
|
279
282
|
Whether the agent is a template
|
|
280
283
|
|
|
281
284
|
project : typing.Optional[str]
|
|
282
|
-
|
|
285
|
+
Deprecated: Project should now be passed via the project-slug header instead of in the request body. If using the sdk, this can be done via the new project_slug field below.
|
|
283
286
|
|
|
284
287
|
tool_exec_environment_variables : typing.Optional[typing.Dict[str, typing.Optional[str]]]
|
|
285
288
|
The environment variables for tool execution specific to this agent.
|
|
@@ -367,6 +370,7 @@ class AgentsClient:
|
|
|
367
370
|
},
|
|
368
371
|
headers={
|
|
369
372
|
"content-type": "application/json",
|
|
373
|
+
"project-slug": str(project_slug) if project_slug is not None else None,
|
|
370
374
|
},
|
|
371
375
|
request_options=request_options,
|
|
372
376
|
omit=OMIT,
|
|
@@ -954,6 +958,7 @@ class AsyncAgentsClient:
|
|
|
954
958
|
async def create(
|
|
955
959
|
self,
|
|
956
960
|
*,
|
|
961
|
+
project_slug: typing.Optional[str] = None,
|
|
957
962
|
name: typing.Optional[str] = OMIT,
|
|
958
963
|
memory_blocks: typing.Optional[typing.Sequence[CreateBlock]] = OMIT,
|
|
959
964
|
tools: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
@@ -992,6 +997,8 @@ class AsyncAgentsClient:
|
|
|
992
997
|
|
|
993
998
|
Parameters
|
|
994
999
|
----------
|
|
1000
|
+
project_slug : typing.Optional[str]
|
|
1001
|
+
|
|
995
1002
|
name : typing.Optional[str]
|
|
996
1003
|
The name of the agent.
|
|
997
1004
|
|
|
@@ -1062,7 +1069,7 @@ class AsyncAgentsClient:
|
|
|
1062
1069
|
Whether the agent is a template
|
|
1063
1070
|
|
|
1064
1071
|
project : typing.Optional[str]
|
|
1065
|
-
|
|
1072
|
+
Deprecated: Project should now be passed via the project-slug header instead of in the request body. If using the sdk, this can be done via the new project_slug field below.
|
|
1066
1073
|
|
|
1067
1074
|
tool_exec_environment_variables : typing.Optional[typing.Dict[str, typing.Optional[str]]]
|
|
1068
1075
|
The environment variables for tool execution specific to this agent.
|
|
@@ -1158,6 +1165,7 @@ class AsyncAgentsClient:
|
|
|
1158
1165
|
},
|
|
1159
1166
|
headers={
|
|
1160
1167
|
"content-type": "application/json",
|
|
1168
|
+
"project-slug": str(project_slug) if project_slug is not None else None,
|
|
1161
1169
|
},
|
|
1162
1170
|
request_options=request_options,
|
|
1163
1171
|
omit=OMIT,
|
letta_client/base_client.py
CHANGED
|
@@ -7,6 +7,7 @@ from .core.client_wrapper import SyncClientWrapper
|
|
|
7
7
|
from .tools.client import ToolsClient
|
|
8
8
|
from .sources.client import SourcesClient
|
|
9
9
|
from .agents.client import AgentsClient
|
|
10
|
+
from .identities.client import IdentitiesClient
|
|
10
11
|
from .models.client import ModelsClient
|
|
11
12
|
from .blocks.client import BlocksClient
|
|
12
13
|
from .jobs.client import JobsClient
|
|
@@ -20,6 +21,7 @@ from .core.client_wrapper import AsyncClientWrapper
|
|
|
20
21
|
from .tools.client import AsyncToolsClient
|
|
21
22
|
from .sources.client import AsyncSourcesClient
|
|
22
23
|
from .agents.client import AsyncAgentsClient
|
|
24
|
+
from .identities.client import AsyncIdentitiesClient
|
|
23
25
|
from .models.client import AsyncModelsClient
|
|
24
26
|
from .blocks.client import AsyncBlocksClient
|
|
25
27
|
from .jobs.client import AsyncJobsClient
|
|
@@ -92,6 +94,7 @@ class LettaBase:
|
|
|
92
94
|
self.tools = ToolsClient(client_wrapper=self._client_wrapper)
|
|
93
95
|
self.sources = SourcesClient(client_wrapper=self._client_wrapper)
|
|
94
96
|
self.agents = AgentsClient(client_wrapper=self._client_wrapper)
|
|
97
|
+
self.identities = IdentitiesClient(client_wrapper=self._client_wrapper)
|
|
95
98
|
self.models = ModelsClient(client_wrapper=self._client_wrapper)
|
|
96
99
|
self.blocks = BlocksClient(client_wrapper=self._client_wrapper)
|
|
97
100
|
self.jobs = JobsClient(client_wrapper=self._client_wrapper)
|
|
@@ -164,6 +167,7 @@ class AsyncLettaBase:
|
|
|
164
167
|
self.tools = AsyncToolsClient(client_wrapper=self._client_wrapper)
|
|
165
168
|
self.sources = AsyncSourcesClient(client_wrapper=self._client_wrapper)
|
|
166
169
|
self.agents = AsyncAgentsClient(client_wrapper=self._client_wrapper)
|
|
170
|
+
self.identities = AsyncIdentitiesClient(client_wrapper=self._client_wrapper)
|
|
167
171
|
self.models = AsyncModelsClient(client_wrapper=self._client_wrapper)
|
|
168
172
|
self.blocks = AsyncBlocksClient(client_wrapper=self._client_wrapper)
|
|
169
173
|
self.jobs = AsyncJobsClient(client_wrapper=self._client_wrapper)
|
|
@@ -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.37",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.client_wrapper import SyncClientWrapper
|
|
4
|
+
import typing
|
|
5
|
+
from ..types.identity_type import IdentityType
|
|
6
|
+
from ..core.request_options import RequestOptions
|
|
7
|
+
from ..types.identity import Identity
|
|
8
|
+
from ..core.unchecked_base_model import construct_type
|
|
9
|
+
from ..errors.unprocessable_entity_error import UnprocessableEntityError
|
|
10
|
+
from ..types.http_validation_error import HttpValidationError
|
|
11
|
+
from json.decoder import JSONDecodeError
|
|
12
|
+
from ..core.api_error import ApiError
|
|
13
|
+
from ..core.client_wrapper import AsyncClientWrapper
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class IdentitiesClient:
|
|
17
|
+
def __init__(self, *, client_wrapper: SyncClientWrapper):
|
|
18
|
+
self._client_wrapper = client_wrapper
|
|
19
|
+
|
|
20
|
+
def list_identities(
|
|
21
|
+
self,
|
|
22
|
+
*,
|
|
23
|
+
name: typing.Optional[str] = None,
|
|
24
|
+
project_id: typing.Optional[str] = None,
|
|
25
|
+
identity_type: typing.Optional[IdentityType] = None,
|
|
26
|
+
before: typing.Optional[str] = None,
|
|
27
|
+
after: typing.Optional[str] = None,
|
|
28
|
+
limit: typing.Optional[int] = None,
|
|
29
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
30
|
+
) -> typing.List[Identity]:
|
|
31
|
+
"""
|
|
32
|
+
Get a list of all identities in the database
|
|
33
|
+
|
|
34
|
+
Parameters
|
|
35
|
+
----------
|
|
36
|
+
name : typing.Optional[str]
|
|
37
|
+
|
|
38
|
+
project_id : typing.Optional[str]
|
|
39
|
+
|
|
40
|
+
identity_type : typing.Optional[IdentityType]
|
|
41
|
+
|
|
42
|
+
before : typing.Optional[str]
|
|
43
|
+
|
|
44
|
+
after : typing.Optional[str]
|
|
45
|
+
|
|
46
|
+
limit : typing.Optional[int]
|
|
47
|
+
|
|
48
|
+
request_options : typing.Optional[RequestOptions]
|
|
49
|
+
Request-specific configuration.
|
|
50
|
+
|
|
51
|
+
Returns
|
|
52
|
+
-------
|
|
53
|
+
typing.List[Identity]
|
|
54
|
+
Successful Response
|
|
55
|
+
|
|
56
|
+
Examples
|
|
57
|
+
--------
|
|
58
|
+
from letta_client import Letta
|
|
59
|
+
|
|
60
|
+
client = Letta(
|
|
61
|
+
token="YOUR_TOKEN",
|
|
62
|
+
)
|
|
63
|
+
client.identities.list_identities()
|
|
64
|
+
"""
|
|
65
|
+
_response = self._client_wrapper.httpx_client.request(
|
|
66
|
+
"v1/identities/",
|
|
67
|
+
method="GET",
|
|
68
|
+
params={
|
|
69
|
+
"name": name,
|
|
70
|
+
"project_id": project_id,
|
|
71
|
+
"identity_type": identity_type,
|
|
72
|
+
"before": before,
|
|
73
|
+
"after": after,
|
|
74
|
+
"limit": limit,
|
|
75
|
+
},
|
|
76
|
+
request_options=request_options,
|
|
77
|
+
)
|
|
78
|
+
try:
|
|
79
|
+
if 200 <= _response.status_code < 300:
|
|
80
|
+
return typing.cast(
|
|
81
|
+
typing.List[Identity],
|
|
82
|
+
construct_type(
|
|
83
|
+
type_=typing.List[Identity], # type: ignore
|
|
84
|
+
object_=_response.json(),
|
|
85
|
+
),
|
|
86
|
+
)
|
|
87
|
+
if _response.status_code == 422:
|
|
88
|
+
raise UnprocessableEntityError(
|
|
89
|
+
typing.cast(
|
|
90
|
+
HttpValidationError,
|
|
91
|
+
construct_type(
|
|
92
|
+
type_=HttpValidationError, # type: ignore
|
|
93
|
+
object_=_response.json(),
|
|
94
|
+
),
|
|
95
|
+
)
|
|
96
|
+
)
|
|
97
|
+
_response_json = _response.json()
|
|
98
|
+
except JSONDecodeError:
|
|
99
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
100
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class AsyncIdentitiesClient:
|
|
104
|
+
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
|
105
|
+
self._client_wrapper = client_wrapper
|
|
106
|
+
|
|
107
|
+
async def list_identities(
|
|
108
|
+
self,
|
|
109
|
+
*,
|
|
110
|
+
name: typing.Optional[str] = None,
|
|
111
|
+
project_id: typing.Optional[str] = None,
|
|
112
|
+
identity_type: typing.Optional[IdentityType] = None,
|
|
113
|
+
before: typing.Optional[str] = None,
|
|
114
|
+
after: typing.Optional[str] = None,
|
|
115
|
+
limit: typing.Optional[int] = None,
|
|
116
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
117
|
+
) -> typing.List[Identity]:
|
|
118
|
+
"""
|
|
119
|
+
Get a list of all identities in the database
|
|
120
|
+
|
|
121
|
+
Parameters
|
|
122
|
+
----------
|
|
123
|
+
name : typing.Optional[str]
|
|
124
|
+
|
|
125
|
+
project_id : typing.Optional[str]
|
|
126
|
+
|
|
127
|
+
identity_type : typing.Optional[IdentityType]
|
|
128
|
+
|
|
129
|
+
before : typing.Optional[str]
|
|
130
|
+
|
|
131
|
+
after : typing.Optional[str]
|
|
132
|
+
|
|
133
|
+
limit : typing.Optional[int]
|
|
134
|
+
|
|
135
|
+
request_options : typing.Optional[RequestOptions]
|
|
136
|
+
Request-specific configuration.
|
|
137
|
+
|
|
138
|
+
Returns
|
|
139
|
+
-------
|
|
140
|
+
typing.List[Identity]
|
|
141
|
+
Successful Response
|
|
142
|
+
|
|
143
|
+
Examples
|
|
144
|
+
--------
|
|
145
|
+
import asyncio
|
|
146
|
+
|
|
147
|
+
from letta_client import AsyncLetta
|
|
148
|
+
|
|
149
|
+
client = AsyncLetta(
|
|
150
|
+
token="YOUR_TOKEN",
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
async def main() -> None:
|
|
155
|
+
await client.identities.list_identities()
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
asyncio.run(main())
|
|
159
|
+
"""
|
|
160
|
+
_response = await self._client_wrapper.httpx_client.request(
|
|
161
|
+
"v1/identities/",
|
|
162
|
+
method="GET",
|
|
163
|
+
params={
|
|
164
|
+
"name": name,
|
|
165
|
+
"project_id": project_id,
|
|
166
|
+
"identity_type": identity_type,
|
|
167
|
+
"before": before,
|
|
168
|
+
"after": after,
|
|
169
|
+
"limit": limit,
|
|
170
|
+
},
|
|
171
|
+
request_options=request_options,
|
|
172
|
+
)
|
|
173
|
+
try:
|
|
174
|
+
if 200 <= _response.status_code < 300:
|
|
175
|
+
return typing.cast(
|
|
176
|
+
typing.List[Identity],
|
|
177
|
+
construct_type(
|
|
178
|
+
type_=typing.List[Identity], # type: ignore
|
|
179
|
+
object_=_response.json(),
|
|
180
|
+
),
|
|
181
|
+
)
|
|
182
|
+
if _response.status_code == 422:
|
|
183
|
+
raise UnprocessableEntityError(
|
|
184
|
+
typing.cast(
|
|
185
|
+
HttpValidationError,
|
|
186
|
+
construct_type(
|
|
187
|
+
type_=HttpValidationError, # type: ignore
|
|
188
|
+
object_=_response.json(),
|
|
189
|
+
),
|
|
190
|
+
)
|
|
191
|
+
)
|
|
192
|
+
_response_json = _response.json()
|
|
193
|
+
except JSONDecodeError:
|
|
194
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
195
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
letta_client/types/__init__.py
CHANGED
|
@@ -83,6 +83,8 @@ from .function_output import FunctionOutput
|
|
|
83
83
|
from .function_tool import FunctionTool
|
|
84
84
|
from .health import Health
|
|
85
85
|
from .http_validation_error import HttpValidationError
|
|
86
|
+
from .identity import Identity
|
|
87
|
+
from .identity_type import IdentityType
|
|
86
88
|
from .image_url import ImageUrl
|
|
87
89
|
from .image_url_detail import ImageUrlDetail
|
|
88
90
|
from .init_tool_rule import InitToolRule
|
|
@@ -246,6 +248,8 @@ __all__ = [
|
|
|
246
248
|
"FunctionTool",
|
|
247
249
|
"Health",
|
|
248
250
|
"HttpValidationError",
|
|
251
|
+
"Identity",
|
|
252
|
+
"IdentityType",
|
|
249
253
|
"ImageUrl",
|
|
250
254
|
"ImageUrlDetail",
|
|
251
255
|
"InitToolRule",
|
|
@@ -15,6 +15,7 @@ class ActionParametersModel(UncheckedBaseModel):
|
|
|
15
15
|
title: str
|
|
16
16
|
type: str
|
|
17
17
|
required: typing.Optional[typing.List[str]] = None
|
|
18
|
+
examples: typing.Optional[typing.List[typing.Optional[typing.Any]]] = None
|
|
18
19
|
|
|
19
20
|
if IS_PYDANTIC_V2:
|
|
20
21
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -15,6 +15,7 @@ class ActionResponseModel(UncheckedBaseModel):
|
|
|
15
15
|
title: str
|
|
16
16
|
type: str
|
|
17
17
|
required: typing.Optional[typing.List[str]] = None
|
|
18
|
+
examples: typing.Optional[typing.List[typing.Optional[typing.Any]]] = None
|
|
18
19
|
|
|
19
20
|
if IS_PYDANTIC_V2:
|
|
20
21
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
5
|
AppAuthSchemeAuthMode = typing.Union[
|
|
6
|
-
typing.Literal["OAUTH2", "OAUTH1", "API_KEY", "BASIC", "BEARER_TOKEN", "BASIC_WITH_JWT"], typing.Any
|
|
6
|
+
typing.Literal["OAUTH2", "OAUTH1", "API_KEY", "BASIC", "BEARER_TOKEN", "BASIC_WITH_JWT", "NO_AUTH"], typing.Any
|
|
7
7
|
]
|
|
@@ -0,0 +1,49 @@
|
|
|
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_type import IdentityType
|
|
6
|
+
import typing
|
|
7
|
+
from .agent_state import AgentState
|
|
8
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Identity(UncheckedBaseModel):
|
|
12
|
+
id: str = pydantic.Field()
|
|
13
|
+
"""
|
|
14
|
+
The internal id of the identity.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
identifier_key: str = pydantic.Field()
|
|
18
|
+
"""
|
|
19
|
+
External, user-generated identifier key of the identity.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
name: str = pydantic.Field()
|
|
23
|
+
"""
|
|
24
|
+
The name of the identity.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
identity_type: IdentityType = pydantic.Field()
|
|
28
|
+
"""
|
|
29
|
+
The type of the identity.
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
project_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
33
|
+
"""
|
|
34
|
+
The project id of the identity, if applicable.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
agents: typing.List[AgentState] = pydantic.Field()
|
|
38
|
+
"""
|
|
39
|
+
The ids of the agents associated with the identity.
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
if IS_PYDANTIC_V2:
|
|
43
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
44
|
+
else:
|
|
45
|
+
|
|
46
|
+
class Config:
|
|
47
|
+
frozen = True
|
|
48
|
+
smart_union = True
|
|
49
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=DMIOdcCsMaiuoYcLh8vR7ELSXOe_ZXf5CNtwcvecP-w,58659
|
|
2
2
|
letta_client/agents/__init__.py,sha256=aDZt7p9Xf-unNNJn8-ryIuN0iioKJbOE3I7nxGwb2fc,21744
|
|
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=lAo_OOjgQaWKrTJpioTikVIRvYYTieybHqLI--mFyXY,62471
|
|
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
|
|
@@ -196,13 +196,13 @@ letta_client/agents/types/agents_search_response_agents_item_updated_at.py,sha25
|
|
|
196
196
|
letta_client/agents/types/agents_search_response_agents_item_updated_at_item.py,sha256=Anb4fUgBP7Qf9Iggi_OYab0dPcWE-aIA6BvcAk8qIcg,166
|
|
197
197
|
letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=vzOFgtUuui1HVtgMOPegJytxVKMOpKKc5l9WxxzO0aY,415
|
|
198
198
|
letta_client/agents/types/update_agent_tool_rules_item.py,sha256=P43l3kJNrqPVbNpWbEfEA7likZCGKtFYWQ2EofUCrnU,408
|
|
199
|
-
letta_client/base_client.py,sha256=
|
|
199
|
+
letta_client/base_client.py,sha256=ATvrb83SfeAseCcUAGyHzJKYfwg5Cv5axZqDirCj3Vc,8169
|
|
200
200
|
letta_client/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
201
201
|
letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU,29178
|
|
202
202
|
letta_client/client.py,sha256=y2cXN0ApFul2Lz-fVh5TbeYbQ8oUjnXcwJ6wUczEf2c,2457
|
|
203
203
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
204
204
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
205
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
205
|
+
letta_client/core/client_wrapper.py,sha256=K9DW2GyQcTjqvN_7abMFzs0qw7gukDGN-YT4aE-DjMg,1997
|
|
206
206
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
207
207
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
208
208
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -221,6 +221,8 @@ letta_client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0
|
|
|
221
221
|
letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
222
222
|
letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
223
223
|
letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
|
|
224
|
+
letta_client/identities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
225
|
+
letta_client/identities/client.py,sha256=TlmfHOUg967LTHn21fVMe4hxMVsMbx27MOX97hAGYCY,6168
|
|
224
226
|
letta_client/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
225
227
|
letta_client/jobs/client.py,sha256=z1Zq6dGs2xbf3EAFuD3-m-qbpbUeqpCBYqtIFKkGoMk,15622
|
|
226
228
|
letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -408,16 +410,16 @@ letta_client/templates/types/templates_create_agents_from_template_response_agen
|
|
|
408
410
|
letta_client/templates/types/templates_create_agents_from_template_response_agents_item_updated_at_item.py,sha256=uXkJJCwx44tIcYHCkXzAqvIvhtQDN9mYZanKbLBJNyI,187
|
|
409
411
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
410
412
|
letta_client/tools/client.py,sha256=nv4PKwwlBsyGYm9B_3okgaiNFbbMYfZ53bzeoaAhVfU,53219
|
|
411
|
-
letta_client/types/__init__.py,sha256=
|
|
413
|
+
letta_client/types/__init__.py,sha256=_neJGuir0Wj8Ivsj_IPmXw9MgrAArQ_6CQn7GuaDhgg,15011
|
|
412
414
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
413
|
-
letta_client/types/action_parameters_model.py,sha256=
|
|
414
|
-
letta_client/types/action_response_model.py,sha256=
|
|
415
|
+
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
416
|
+
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
415
417
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
416
418
|
letta_client/types/agent_state.py,sha256=YmOGu1BAewjDuq4mk5S0yP81YdYPeKgeYP1uXv2Ws_Q,5035
|
|
417
419
|
letta_client/types/agent_state_tool_rules_item.py,sha256=-1gMhEZOThSYXXTWxZXtSNpkANOTws0bZcEXf-PQCJA,375
|
|
418
420
|
letta_client/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3HL0,220
|
|
419
421
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
420
|
-
letta_client/types/app_auth_scheme_auth_mode.py,sha256=
|
|
422
|
+
letta_client/types/app_auth_scheme_auth_mode.py,sha256=4zgUPTye_olDGcfbwpyCAbwU-11WPGaAxO_PeA-0I0c,236
|
|
421
423
|
letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
422
424
|
letta_client/types/assistant_message.py,sha256=OWJz-tAsuiA1bZguDbvIBJezzjYiQWt8kWCxwxK-zN4,779
|
|
423
425
|
letta_client/types/assistant_message_content.py,sha256=2XtIgU1tzCHgp-NwWIkUFohOd1GClieiRk9OATTEcew,188
|
|
@@ -492,6 +494,8 @@ letta_client/types/function_output.py,sha256=7b8550BllXxtZQ3T3jfvZjcCU_ZGWNBvjlr
|
|
|
492
494
|
letta_client/types/function_tool.py,sha256=TOETpZdqgPIgd4g9JFo3yvDBpTx4lDFzJNZH8PxAjpI,697
|
|
493
495
|
letta_client/types/health.py,sha256=nQwx5ysn_cJMKUoqsfaPcGNSRSjfwX5S272UiSQJ03w,618
|
|
494
496
|
letta_client/types/http_validation_error.py,sha256=yHa4_NHIMB-VKNZpk7agjLTwWIg7mv7ml3d7I-Bqiog,661
|
|
497
|
+
letta_client/types/identity.py,sha256=c3lz_V0Nw3oUS_EuKdYpjDR5FohfvEUkG0H1riKGaIA,1262
|
|
498
|
+
letta_client/types/identity_type.py,sha256=YeGvqit1VLK7q0GpNuTyfbCxXO7BJjq-hFSiFZexswk,160
|
|
495
499
|
letta_client/types/image_url.py,sha256=re4N2AsAvOFl2nS6v8jOi3jVFppBs-3zhwpBKHSuCLs,648
|
|
496
500
|
letta_client/types/image_url_detail.py,sha256=YFT9wyf8hqeKhQjRWMv97y-fbU2DB-oCbU5BpUcHWVU,161
|
|
497
501
|
letta_client/types/init_tool_rule.py,sha256=fPQqBigbqZfJXPoXdpBCFlilVYf5p4-t0touyFm_gqE,801
|
|
@@ -565,6 +569,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
565
569
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
566
570
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
567
571
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
568
|
-
letta_client-0.1.
|
|
569
|
-
letta_client-0.1.
|
|
570
|
-
letta_client-0.1.
|
|
572
|
+
letta_client-0.1.37.dist-info/METADATA,sha256=AO7Rh-PI3MExF21nkTOXPJRbhFP3B7FrhewIbPLgQEQ,4942
|
|
573
|
+
letta_client-0.1.37.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
574
|
+
letta_client-0.1.37.dist-info/RECORD,,
|
|
File without changes
|