letta-client 0.1.6__py3-none-any.whl → 0.1.9__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/__init__.py +28 -27
- letta/agents/__init__.py +40 -29
- letta/agents/archival_memory/client.py +17 -17
- letta/agents/client.py +405 -1721
- letta/agents/context/client.py +5 -5
- letta/agents/core_memory/client.py +1080 -0
- letta/agents/memory_variables/__init__.py +5 -0
- letta/agents/{memory → memory_variables}/client.py +41 -40
- letta/agents/memory_variables/types/__init__.py +5 -0
- letta/agents/{types/agents_get_agent_variables_response.py → memory_variables/types/memory_variables_get_response.py} +3 -3
- letta/agents/messages/client.py +232 -17
- letta/agents/messages/types/letta_streaming_response.py +21 -16
- letta/agents/messages/types/messages_list_response_item.py +19 -14
- letta/agents/recall_memory/client.py +5 -5
- letta/agents/sources/client.py +5 -5
- letta/agents/templates/__init__.py +5 -0
- letta/agents/templates/client.py +578 -0
- letta/agents/templates/types/__init__.py +5 -0
- letta/agents/{types/agents_migrate_response.py → templates/types/templates_migrate_response.py} +3 -3
- letta/agents/tools/client.py +13 -13
- letta/agents/types/__init__.py +23 -37
- letta/agents/types/agents_search_request_combinator.py +5 -0
- letta/agents/types/{agents_search_deployed_agents_request_search_item.py → agents_search_request_search_item.py} +17 -20
- letta/agents/types/{agents_search_deployed_agents_request_search_item_name.py → agents_search_request_search_item_name.py} +4 -6
- letta/agents/types/agents_search_request_search_item_name_operator.py +5 -0
- letta/agents/types/agents_search_request_search_item_order_by.py +22 -0
- letta/agents/types/agents_search_request_search_item_order_by_direction.py +5 -0
- letta/agents/types/agents_search_request_search_item_order_by_value.py +5 -0
- letta/agents/types/{agents_search_deployed_agents_request_search_item_version.py → agents_search_request_search_item_version.py} +2 -2
- letta/blocks/client.py +25 -25
- letta/client.py +4 -0
- letta/core/__init__.py +4 -0
- letta/core/client_wrapper.py +1 -1
- letta/core/unchecked_base_model.py +305 -0
- letta/health/client.py +3 -3
- letta/jobs/client.py +17 -17
- letta/models/client.py +5 -5
- letta/providers/client.py +597 -0
- letta/sources/client.py +33 -33
- letta/sources/files/client.py +11 -11
- letta/sources/passages/client.py +5 -5
- letta/tools/client.py +77 -57
- letta/types/__init__.py +4 -0
- letta/types/action_model.py +2 -2
- letta/types/action_parameters_model.py +2 -2
- letta/types/action_response_model.py +2 -2
- letta/types/agent_environment_variable.py +2 -7
- letta/types/agent_state.py +5 -8
- letta/types/agent_type.py +1 -2
- letta/types/app_auth_scheme.py +2 -2
- letta/types/app_model.py +2 -2
- letta/types/archival_memory_summary.py +2 -2
- letta/types/assistant_file.py +2 -2
- letta/types/assistant_message_input.py +2 -2
- letta/types/assistant_message_output.py +2 -2
- letta/types/auth_request.py +2 -2
- letta/types/auth_response.py +2 -2
- letta/types/auth_scheme_field.py +2 -2
- letta/types/block.py +2 -7
- letta/types/block_update.py +2 -2
- letta/types/chat_completion_request.py +2 -2
- letta/types/chat_completion_response.py +2 -2
- letta/types/child_tool_rule.py +2 -2
- letta/types/choice.py +2 -2
- letta/types/conditional_tool_rule.py +2 -2
- letta/types/conflict_error_body.py +2 -2
- letta/types/context_window_overview.py +2 -2
- letta/types/create_assistant_file_request.py +2 -2
- letta/types/create_assistant_request.py +2 -2
- letta/types/create_block.py +2 -2
- letta/types/delete_assistant_file_response.py +2 -2
- letta/types/delete_assistant_response.py +2 -2
- letta/types/e_2_b_sandbox_config.py +2 -2
- letta/types/embedding_config.py +2 -2
- letta/types/file_metadata.py +2 -7
- letta/types/function_call_input.py +2 -2
- letta/types/function_call_output.py +2 -2
- letta/types/function_schema.py +2 -2
- letta/types/health.py +2 -2
- letta/types/http_validation_error.py +2 -2
- letta/types/init_tool_rule.py +2 -2
- letta/types/internal_server_error_body.py +2 -2
- letta/types/job.py +2 -7
- letta/types/letta_request.py +7 -2
- letta/types/letta_response.py +2 -2
- letta/types/letta_response_messages_item.py +19 -14
- letta/types/letta_schemas_letta_message_tool_call.py +2 -2
- letta/types/letta_schemas_message_message.py +2 -7
- letta/types/letta_schemas_openai_chat_completion_request_tool.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_request_tool_call.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_response_message.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_response_tool_call.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_function.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_input.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_output.py +2 -2
- letta/types/letta_schemas_tool_tool.py +9 -8
- letta/types/letta_usage_statistics.py +2 -2
- letta/types/llm_config.py +2 -2
- letta/types/local_sandbox_config.py +2 -2
- letta/types/log_prob_token.py +2 -2
- letta/types/memory.py +2 -2
- letta/types/message_content_log_prob.py +2 -2
- letta/types/message_create.py +2 -2
- letta/types/not_found_error_body.py +2 -2
- letta/types/open_ai_assistant.py +2 -2
- letta/types/organization.py +2 -2
- letta/types/organization_create.py +2 -2
- letta/types/passage.py +2 -7
- letta/types/provider.py +38 -0
- letta/types/reasoning_message.py +2 -2
- letta/types/recall_memory_summary.py +2 -2
- letta/types/response_format.py +2 -2
- letta/types/sandbox_config.py +2 -7
- letta/types/sandbox_config_create.py +2 -2
- letta/types/sandbox_config_update.py +2 -2
- letta/types/sandbox_environment_variable.py +2 -7
- letta/types/sandbox_environment_variable_create.py +2 -2
- letta/types/sandbox_environment_variable_update.py +2 -2
- letta/types/source.py +2 -7
- letta/types/system_message_input.py +2 -2
- letta/types/system_message_output.py +2 -2
- letta/types/terminal_tool_rule.py +2 -2
- letta/types/tool_call_delta.py +2 -2
- letta/types/tool_call_function_output.py +2 -2
- letta/types/tool_call_message.py +2 -2
- letta/types/tool_create.py +2 -2
- letta/types/tool_function_choice.py +2 -2
- letta/types/tool_input.py +2 -2
- letta/types/tool_message.py +2 -2
- letta/types/tool_return_message.py +2 -2
- letta/types/tool_type.py +5 -0
- letta/types/usage_statistics.py +2 -2
- letta/types/user.py +2 -7
- letta/types/user_create.py +2 -7
- letta/types/user_message_input.py +2 -2
- letta/types/user_message_output.py +2 -2
- letta/types/user_update.py +2 -7
- letta/types/validation_error.py +2 -2
- {letta_client-0.1.6.dist-info → letta_client-0.1.9.dist-info}/METADATA +1 -1
- letta_client-0.1.9.dist-info/RECORD +200 -0
- letta/agents/memory/__init__.py +0 -5
- letta/agents/memory/messages/client.py +0 -147
- letta/agents/memory_blocks/client.py +0 -364
- letta/agents/types/agents_search_deployed_agents_request_combinator.py +0 -5
- letta/agents/types/agents_search_deployed_agents_request_search_item_name_operator.py +0 -7
- letta/agents/types/agents_search_deployed_agents_request_search_item_order_by.py +0 -26
- letta/agents/types/agents_search_deployed_agents_request_search_item_order_by_direction.py +0 -5
- letta/agents/types/agents_search_deployed_agents_request_search_item_order_by_value.py +0 -7
- letta_client-0.1.6.dist-info/RECORD +0 -193
- /letta/agents/{memory/messages → core_memory}/__init__.py +0 -0
- /letta/{agents/memory_blocks → providers}/__init__.py +0 -0
- {letta_client-0.1.6.dist-info → letta_client-0.1.9.dist-info}/WHEEL +0 -0
|
@@ -1,364 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
from ...core.client_wrapper import SyncClientWrapper
|
|
5
|
-
from ...core.request_options import RequestOptions
|
|
6
|
-
from ...types.memory import Memory
|
|
7
|
-
from ...core.jsonable_encoder import jsonable_encoder
|
|
8
|
-
from ...core.pydantic_utilities import parse_obj_as
|
|
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
|
-
# this is used as the default value for optional parameters
|
|
16
|
-
OMIT = typing.cast(typing.Any, ...)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
class MemoryBlocksClient:
|
|
20
|
-
def __init__(self, *, client_wrapper: SyncClientWrapper):
|
|
21
|
-
self._client_wrapper = client_wrapper
|
|
22
|
-
|
|
23
|
-
def remove(
|
|
24
|
-
self, agent_id: str, block_label: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
25
|
-
) -> Memory:
|
|
26
|
-
"""
|
|
27
|
-
Removes a memory block from an agent by unlnking it. If the block is not linked to any other agent, it is deleted.
|
|
28
|
-
|
|
29
|
-
Parameters
|
|
30
|
-
----------
|
|
31
|
-
agent_id : str
|
|
32
|
-
|
|
33
|
-
block_label : str
|
|
34
|
-
|
|
35
|
-
request_options : typing.Optional[RequestOptions]
|
|
36
|
-
Request-specific configuration.
|
|
37
|
-
|
|
38
|
-
Returns
|
|
39
|
-
-------
|
|
40
|
-
Memory
|
|
41
|
-
Successful Response
|
|
42
|
-
|
|
43
|
-
Examples
|
|
44
|
-
--------
|
|
45
|
-
from letta import Letta
|
|
46
|
-
|
|
47
|
-
client = Letta(
|
|
48
|
-
token="YOUR_TOKEN",
|
|
49
|
-
)
|
|
50
|
-
client.agents.memory_blocks.remove(
|
|
51
|
-
agent_id="agent_id",
|
|
52
|
-
block_label="block_label",
|
|
53
|
-
)
|
|
54
|
-
"""
|
|
55
|
-
_response = self._client_wrapper.httpx_client.request(
|
|
56
|
-
f"v1/agents/{jsonable_encoder(agent_id)}/memory/block/{jsonable_encoder(block_label)}",
|
|
57
|
-
method="DELETE",
|
|
58
|
-
request_options=request_options,
|
|
59
|
-
)
|
|
60
|
-
try:
|
|
61
|
-
if 200 <= _response.status_code < 300:
|
|
62
|
-
return typing.cast(
|
|
63
|
-
Memory,
|
|
64
|
-
parse_obj_as(
|
|
65
|
-
type_=Memory, # type: ignore
|
|
66
|
-
object_=_response.json(),
|
|
67
|
-
),
|
|
68
|
-
)
|
|
69
|
-
if _response.status_code == 422:
|
|
70
|
-
raise UnprocessableEntityError(
|
|
71
|
-
typing.cast(
|
|
72
|
-
HttpValidationError,
|
|
73
|
-
parse_obj_as(
|
|
74
|
-
type_=HttpValidationError, # type: ignore
|
|
75
|
-
object_=_response.json(),
|
|
76
|
-
),
|
|
77
|
-
)
|
|
78
|
-
)
|
|
79
|
-
_response_json = _response.json()
|
|
80
|
-
except JSONDecodeError:
|
|
81
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
82
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
83
|
-
|
|
84
|
-
def add(
|
|
85
|
-
self,
|
|
86
|
-
agent_id: str,
|
|
87
|
-
*,
|
|
88
|
-
value: str,
|
|
89
|
-
label: str,
|
|
90
|
-
limit: typing.Optional[int] = OMIT,
|
|
91
|
-
name: typing.Optional[str] = OMIT,
|
|
92
|
-
is_template: typing.Optional[bool] = OMIT,
|
|
93
|
-
description: typing.Optional[str] = OMIT,
|
|
94
|
-
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
95
|
-
request_options: typing.Optional[RequestOptions] = None,
|
|
96
|
-
) -> Memory:
|
|
97
|
-
"""
|
|
98
|
-
Creates a memory block and links it to the agent.
|
|
99
|
-
|
|
100
|
-
Parameters
|
|
101
|
-
----------
|
|
102
|
-
agent_id : str
|
|
103
|
-
|
|
104
|
-
value : str
|
|
105
|
-
Value of the block.
|
|
106
|
-
|
|
107
|
-
label : str
|
|
108
|
-
Label of the block.
|
|
109
|
-
|
|
110
|
-
limit : typing.Optional[int]
|
|
111
|
-
Character limit of the block.
|
|
112
|
-
|
|
113
|
-
name : typing.Optional[str]
|
|
114
|
-
Name of the block if it is a template.
|
|
115
|
-
|
|
116
|
-
is_template : typing.Optional[bool]
|
|
117
|
-
|
|
118
|
-
description : typing.Optional[str]
|
|
119
|
-
Description of the block.
|
|
120
|
-
|
|
121
|
-
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
122
|
-
Metadata of the block.
|
|
123
|
-
|
|
124
|
-
request_options : typing.Optional[RequestOptions]
|
|
125
|
-
Request-specific configuration.
|
|
126
|
-
|
|
127
|
-
Returns
|
|
128
|
-
-------
|
|
129
|
-
Memory
|
|
130
|
-
Successful Response
|
|
131
|
-
|
|
132
|
-
Examples
|
|
133
|
-
--------
|
|
134
|
-
from letta import Letta
|
|
135
|
-
|
|
136
|
-
client = Letta(
|
|
137
|
-
token="YOUR_TOKEN",
|
|
138
|
-
)
|
|
139
|
-
client.agents.memory_blocks.add(
|
|
140
|
-
agent_id="agent_id",
|
|
141
|
-
value="value",
|
|
142
|
-
label="label",
|
|
143
|
-
)
|
|
144
|
-
"""
|
|
145
|
-
_response = self._client_wrapper.httpx_client.request(
|
|
146
|
-
f"v1/agents/{jsonable_encoder(agent_id)}/memory/block",
|
|
147
|
-
method="POST",
|
|
148
|
-
json={
|
|
149
|
-
"value": value,
|
|
150
|
-
"limit": limit,
|
|
151
|
-
"name": name,
|
|
152
|
-
"is_template": is_template,
|
|
153
|
-
"label": label,
|
|
154
|
-
"description": description,
|
|
155
|
-
"metadata_": metadata,
|
|
156
|
-
},
|
|
157
|
-
request_options=request_options,
|
|
158
|
-
omit=OMIT,
|
|
159
|
-
)
|
|
160
|
-
try:
|
|
161
|
-
if 200 <= _response.status_code < 300:
|
|
162
|
-
return typing.cast(
|
|
163
|
-
Memory,
|
|
164
|
-
parse_obj_as(
|
|
165
|
-
type_=Memory, # type: ignore
|
|
166
|
-
object_=_response.json(),
|
|
167
|
-
),
|
|
168
|
-
)
|
|
169
|
-
if _response.status_code == 422:
|
|
170
|
-
raise UnprocessableEntityError(
|
|
171
|
-
typing.cast(
|
|
172
|
-
HttpValidationError,
|
|
173
|
-
parse_obj_as(
|
|
174
|
-
type_=HttpValidationError, # type: ignore
|
|
175
|
-
object_=_response.json(),
|
|
176
|
-
),
|
|
177
|
-
)
|
|
178
|
-
)
|
|
179
|
-
_response_json = _response.json()
|
|
180
|
-
except JSONDecodeError:
|
|
181
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
182
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
class AsyncMemoryBlocksClient:
|
|
186
|
-
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
|
187
|
-
self._client_wrapper = client_wrapper
|
|
188
|
-
|
|
189
|
-
async def remove(
|
|
190
|
-
self, agent_id: str, block_label: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
191
|
-
) -> Memory:
|
|
192
|
-
"""
|
|
193
|
-
Removes a memory block from an agent by unlnking it. If the block is not linked to any other agent, it is deleted.
|
|
194
|
-
|
|
195
|
-
Parameters
|
|
196
|
-
----------
|
|
197
|
-
agent_id : str
|
|
198
|
-
|
|
199
|
-
block_label : str
|
|
200
|
-
|
|
201
|
-
request_options : typing.Optional[RequestOptions]
|
|
202
|
-
Request-specific configuration.
|
|
203
|
-
|
|
204
|
-
Returns
|
|
205
|
-
-------
|
|
206
|
-
Memory
|
|
207
|
-
Successful Response
|
|
208
|
-
|
|
209
|
-
Examples
|
|
210
|
-
--------
|
|
211
|
-
import asyncio
|
|
212
|
-
|
|
213
|
-
from letta import AsyncLetta
|
|
214
|
-
|
|
215
|
-
client = AsyncLetta(
|
|
216
|
-
token="YOUR_TOKEN",
|
|
217
|
-
)
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
async def main() -> None:
|
|
221
|
-
await client.agents.memory_blocks.remove(
|
|
222
|
-
agent_id="agent_id",
|
|
223
|
-
block_label="block_label",
|
|
224
|
-
)
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
asyncio.run(main())
|
|
228
|
-
"""
|
|
229
|
-
_response = await self._client_wrapper.httpx_client.request(
|
|
230
|
-
f"v1/agents/{jsonable_encoder(agent_id)}/memory/block/{jsonable_encoder(block_label)}",
|
|
231
|
-
method="DELETE",
|
|
232
|
-
request_options=request_options,
|
|
233
|
-
)
|
|
234
|
-
try:
|
|
235
|
-
if 200 <= _response.status_code < 300:
|
|
236
|
-
return typing.cast(
|
|
237
|
-
Memory,
|
|
238
|
-
parse_obj_as(
|
|
239
|
-
type_=Memory, # type: ignore
|
|
240
|
-
object_=_response.json(),
|
|
241
|
-
),
|
|
242
|
-
)
|
|
243
|
-
if _response.status_code == 422:
|
|
244
|
-
raise UnprocessableEntityError(
|
|
245
|
-
typing.cast(
|
|
246
|
-
HttpValidationError,
|
|
247
|
-
parse_obj_as(
|
|
248
|
-
type_=HttpValidationError, # type: ignore
|
|
249
|
-
object_=_response.json(),
|
|
250
|
-
),
|
|
251
|
-
)
|
|
252
|
-
)
|
|
253
|
-
_response_json = _response.json()
|
|
254
|
-
except JSONDecodeError:
|
|
255
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
256
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
257
|
-
|
|
258
|
-
async def add(
|
|
259
|
-
self,
|
|
260
|
-
agent_id: str,
|
|
261
|
-
*,
|
|
262
|
-
value: str,
|
|
263
|
-
label: str,
|
|
264
|
-
limit: typing.Optional[int] = OMIT,
|
|
265
|
-
name: typing.Optional[str] = OMIT,
|
|
266
|
-
is_template: typing.Optional[bool] = OMIT,
|
|
267
|
-
description: typing.Optional[str] = OMIT,
|
|
268
|
-
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
|
|
269
|
-
request_options: typing.Optional[RequestOptions] = None,
|
|
270
|
-
) -> Memory:
|
|
271
|
-
"""
|
|
272
|
-
Creates a memory block and links it to the agent.
|
|
273
|
-
|
|
274
|
-
Parameters
|
|
275
|
-
----------
|
|
276
|
-
agent_id : str
|
|
277
|
-
|
|
278
|
-
value : str
|
|
279
|
-
Value of the block.
|
|
280
|
-
|
|
281
|
-
label : str
|
|
282
|
-
Label of the block.
|
|
283
|
-
|
|
284
|
-
limit : typing.Optional[int]
|
|
285
|
-
Character limit of the block.
|
|
286
|
-
|
|
287
|
-
name : typing.Optional[str]
|
|
288
|
-
Name of the block if it is a template.
|
|
289
|
-
|
|
290
|
-
is_template : typing.Optional[bool]
|
|
291
|
-
|
|
292
|
-
description : typing.Optional[str]
|
|
293
|
-
Description of the block.
|
|
294
|
-
|
|
295
|
-
metadata : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
|
|
296
|
-
Metadata of the block.
|
|
297
|
-
|
|
298
|
-
request_options : typing.Optional[RequestOptions]
|
|
299
|
-
Request-specific configuration.
|
|
300
|
-
|
|
301
|
-
Returns
|
|
302
|
-
-------
|
|
303
|
-
Memory
|
|
304
|
-
Successful Response
|
|
305
|
-
|
|
306
|
-
Examples
|
|
307
|
-
--------
|
|
308
|
-
import asyncio
|
|
309
|
-
|
|
310
|
-
from letta import AsyncLetta
|
|
311
|
-
|
|
312
|
-
client = AsyncLetta(
|
|
313
|
-
token="YOUR_TOKEN",
|
|
314
|
-
)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
async def main() -> None:
|
|
318
|
-
await client.agents.memory_blocks.add(
|
|
319
|
-
agent_id="agent_id",
|
|
320
|
-
value="value",
|
|
321
|
-
label="label",
|
|
322
|
-
)
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
asyncio.run(main())
|
|
326
|
-
"""
|
|
327
|
-
_response = await self._client_wrapper.httpx_client.request(
|
|
328
|
-
f"v1/agents/{jsonable_encoder(agent_id)}/memory/block",
|
|
329
|
-
method="POST",
|
|
330
|
-
json={
|
|
331
|
-
"value": value,
|
|
332
|
-
"limit": limit,
|
|
333
|
-
"name": name,
|
|
334
|
-
"is_template": is_template,
|
|
335
|
-
"label": label,
|
|
336
|
-
"description": description,
|
|
337
|
-
"metadata_": metadata,
|
|
338
|
-
},
|
|
339
|
-
request_options=request_options,
|
|
340
|
-
omit=OMIT,
|
|
341
|
-
)
|
|
342
|
-
try:
|
|
343
|
-
if 200 <= _response.status_code < 300:
|
|
344
|
-
return typing.cast(
|
|
345
|
-
Memory,
|
|
346
|
-
parse_obj_as(
|
|
347
|
-
type_=Memory, # type: ignore
|
|
348
|
-
object_=_response.json(),
|
|
349
|
-
),
|
|
350
|
-
)
|
|
351
|
-
if _response.status_code == 422:
|
|
352
|
-
raise UnprocessableEntityError(
|
|
353
|
-
typing.cast(
|
|
354
|
-
HttpValidationError,
|
|
355
|
-
parse_obj_as(
|
|
356
|
-
type_=HttpValidationError, # type: ignore
|
|
357
|
-
object_=_response.json(),
|
|
358
|
-
),
|
|
359
|
-
)
|
|
360
|
-
)
|
|
361
|
-
_response_json = _response.json()
|
|
362
|
-
except JSONDecodeError:
|
|
363
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
364
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
from ...core.pydantic_utilities import UniversalBaseModel
|
|
4
|
-
from .agents_search_deployed_agents_request_search_item_order_by_value import (
|
|
5
|
-
AgentsSearchDeployedAgentsRequestSearchItemOrderByValue,
|
|
6
|
-
)
|
|
7
|
-
from .agents_search_deployed_agents_request_search_item_order_by_direction import (
|
|
8
|
-
AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection,
|
|
9
|
-
)
|
|
10
|
-
from ...core.pydantic_utilities import IS_PYDANTIC_V2
|
|
11
|
-
import typing
|
|
12
|
-
import pydantic
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class AgentsSearchDeployedAgentsRequestSearchItemOrderBy(UniversalBaseModel):
|
|
16
|
-
value: AgentsSearchDeployedAgentsRequestSearchItemOrderByValue
|
|
17
|
-
direction: AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection
|
|
18
|
-
|
|
19
|
-
if IS_PYDANTIC_V2:
|
|
20
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
21
|
-
else:
|
|
22
|
-
|
|
23
|
-
class Config:
|
|
24
|
-
frozen = True
|
|
25
|
-
smart_union = True
|
|
26
|
-
extra = pydantic.Extra.allow
|
|
@@ -1,193 +0,0 @@
|
|
|
1
|
-
letta/__init__.py,sha256=200FVZvi781F6tcPmiPXkJtKFfMqYfDkikbvQfWEDrY,8792
|
|
2
|
-
letta/agents/__init__.py,sha256=povU6SmZAhz8Om7iF7yBstqhJ33e9CEKN05KSXajGJQ,3258
|
|
3
|
-
letta/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
|
-
letta/agents/archival_memory/client.py,sha256=CsqziY9xSs4u9zXGsvCnp2gzf_OL-vtfzQZrzYOX7Fo,18797
|
|
5
|
-
letta/agents/client.py,sha256=SCmxLC1-qoLFlK5UI5JWS_kAKHT0PXib9s9gPBSJZzw,91638
|
|
6
|
-
letta/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
|
-
letta/agents/context/client.py,sha256=qcqechypp6hJx7aPoubsfmaV7ZF8_i9o1ww0147iWTQ,4755
|
|
8
|
-
letta/agents/memory/__init__.py,sha256=wdNGGk2ylmOrNfsIGTiSbNJfFvEcRUuTNy-PmsiAzkk,112
|
|
9
|
-
letta/agents/memory/client.py,sha256=jZOMQsMrk5pPjl6ZvBgUsdVDzYOEkgO4JwPyAfoDEuM,5045
|
|
10
|
-
letta/agents/memory/messages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
11
|
-
letta/agents/memory/messages/client.py,sha256=49oT7rMhJY2bXBCQSjLEj25igoP4pfPcGzX7UOJRO5g,5033
|
|
12
|
-
letta/agents/memory_blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
13
|
-
letta/agents/memory_blocks/client.py,sha256=ReZVf_G3BfGicgrkSxlM1c4quPjDd_B4SxAL5JfWKS8,11370
|
|
14
|
-
letta/agents/messages/__init__.py,sha256=tC_dJ9IufEAf3pTt6OgyM327usiMylcJ78Ey74uYh-8,1463
|
|
15
|
-
letta/agents/messages/client.py,sha256=YKmcgSijQSmSbmoVWRyOHXS5DkXPpjnDPZYW9bmeTxI,29341
|
|
16
|
-
letta/agents/messages/types/__init__.py,sha256=rByVgqeD_Mvobim65FT1nYgwwLy1OZzKKG2kKnw9JxI,1558
|
|
17
|
-
letta/agents/messages/types/letta_streaming_response.py,sha256=fKRwqgYHIUXVxJv8k2RaMGOHuagvTCIhLXOqKALTQ8s,4508
|
|
18
|
-
letta/agents/messages/types/messages_list_response.py,sha256=QOQ-lDPwafhCjFbq-qz0hUrNw4vneGrqePY42-yiTW8,341
|
|
19
|
-
letta/agents/messages/types/messages_list_response_item.py,sha256=y23JordDiA3o0WLm2l3hl7uVUxtwlGQX3j_DB9gVtzc,3866
|
|
20
|
-
letta/agents/recall_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
21
|
-
letta/agents/recall_memory/client.py,sha256=3yGiP2vGdKDtAGJHDLMBl7I43YoQzAyifxJ7jDuawKQ,4843
|
|
22
|
-
letta/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
23
|
-
letta/agents/sources/client.py,sha256=h6kl5g9BOU47N3Q3SH0JdZdaqUL0UNBPyjtEoy90Jec,4693
|
|
24
|
-
letta/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
25
|
-
letta/agents/tools/client.py,sha256=kyWOuydUAJmhSczLZbut7SxdFAhdLfgJZuAvkN7g3Zs,12782
|
|
26
|
-
letta/agents/types/__init__.py,sha256=63Jq0hxWg3Zif-PbHjTCfUMDntb2lQGBai8g82mTmLw,2353
|
|
27
|
-
letta/agents/types/agents_get_agent_variables_response.py,sha256=1Yda8P45XECyQOIrmm1n3-tvv-4aSsEV6F5ZtNefLJM,599
|
|
28
|
-
letta/agents/types/agents_migrate_response.py,sha256=7c3FRBCUwxqB5yj9eYIh4GA4nBs-J3ccus-o0WLu71U,570
|
|
29
|
-
letta/agents/types/agents_search_deployed_agents_request_combinator.py,sha256=SQCYb6uH3FJF2eFWd4bZBbAiTlLwsAnOsnUkyKXcYfQ,180
|
|
30
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item.py,sha256=xvCuH-zm2twsd-LryQQmYUh47YLS-GiinPaCp2Mof20,2417
|
|
31
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_name.py,sha256=zwmzFAeaGlB9xEK3hw8CtiUou13fsV9mPeOxzNbPp3c,805
|
|
32
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_name_operator.py,sha256=xhYzKvoVn9s0TtsXVyE7gGqNp5pTVpx9G0rMzsdYJ2Q,210
|
|
33
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_order_by.py,sha256=dXxSUF5qPDKXW5othW1PPiyg_VBqAvUn06pR-nwblG8,1017
|
|
34
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_order_by_direction.py,sha256=yAvN-GSul--uyNOwqC34UwfuAKeY4HRucF7-id4u8Es,198
|
|
35
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_order_by_value.py,sha256=bdCKG_9JPutRcrGsvzQ88JhqbQMPd_sLedZlHPbg0eU,213
|
|
36
|
-
letta/agents/types/agents_search_deployed_agents_request_search_item_version.py,sha256=vrf6lMOtKxkp5DpA09ZwZxUktXRM2_Y0YZqeQ2Wzhag,596
|
|
37
|
-
letta/agents/types/create_agent_request_tool_rules_item.py,sha256=xSYFbxIAA6k-pZfVsCaTByE8nXRIqyKnfOm_IEjKfEM,415
|
|
38
|
-
letta/agents/types/update_agent_tool_rules_item.py,sha256=5pYbFgeqxmXUHUTZpEWlZ7ODc1G6CpFGWljz_iBpWVA,408
|
|
39
|
-
letta/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
40
|
-
letta/blocks/client.py,sha256=SuRoJKkDSpL0Gg6jCzuMagwSUTLFKZQBq9j1BXwP5Y8,32367
|
|
41
|
-
letta/client.py,sha256=6MjzKymffKKH7g_PYquBlhIc35whLODNA9-kuxUeW88,6711
|
|
42
|
-
letta/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
43
|
-
letta/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
44
|
-
letta/core/client_wrapper.py,sha256=DuIJAzpgjXMFV2wotKwvYrulWnHU65CFjnrlFJQ2RIk,1996
|
|
45
|
-
letta/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
46
|
-
letta/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
47
|
-
letta/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
48
|
-
letta/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
|
|
49
|
-
letta/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
|
|
50
|
-
letta/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
51
|
-
letta/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
52
|
-
letta/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
53
|
-
letta/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
|
|
54
|
-
letta/environment.py,sha256=7ou6ZwDZLBOdYQrHv-1lUk5a1q-HgEwzGlFITiRZ0XU,198
|
|
55
|
-
letta/errors/__init__.py,sha256=wqo3GnyT9iRy7zuPMs6TXOg9GMNfDp4fxq7M8lFFgK8,367
|
|
56
|
-
letta/errors/conflict_error.py,sha256=INHRMcX6i0ywcbZfw-vn3aBoVi06bDjev3p_O8U8IA4,296
|
|
57
|
-
letta/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
|
|
58
|
-
letta/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
59
|
-
letta/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
60
|
-
letta/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
61
|
-
letta/health/client.py,sha256=gDdU8-mvPlLsh0ZYN7WgArcETWTHPe_r6tSZWcu6wiU,3220
|
|
62
|
-
letta/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
63
|
-
letta/jobs/client.py,sha256=LoKtFPHf_TjVzN2W7gGAMbptZeuY4aVi3K5i9H8gkXA,15510
|
|
64
|
-
letta/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
65
|
-
letta/models/client.py,sha256=X7WXeuF4UGp7-cTGNC5iEFhFXtYgBQifFI48k8bJQQc,6266
|
|
66
|
-
letta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
letta/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
|
|
68
|
-
letta/sources/client.py,sha256=ZqbUXxrNksO6q9fNKAICHegJz8OuZ1HJ9V1vtClC_cE,36463
|
|
69
|
-
letta/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
70
|
-
letta/sources/files/client.py,sha256=N5hVKUUmhvzQJi6RjSlzCWpAb8-WDW9J39MGSKRYTnU,13231
|
|
71
|
-
letta/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
72
|
-
letta/sources/passages/client.py,sha256=BdemStVj4SAhVi5ZLGt7UB793OBFIQVTN7iuTpbe2oQ,4741
|
|
73
|
-
letta/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
74
|
-
letta/tools/client.py,sha256=7zqMFjg4WTd5fXHq6-uG5Bs0EvlqgQ6uEBGSqArSdYE,58410
|
|
75
|
-
letta/types/__init__.py,sha256=c7S5b54y47dOmss-JJwC1C9x0wCaeb_FoYyDl8TF-pI,10184
|
|
76
|
-
letta/types/action_model.py,sha256=wpRKr5lwx--x1IULnWMX4-JEgeiLy1Rfgxcihz-z3UI,1204
|
|
77
|
-
letta/types/action_parameters_model.py,sha256=Attvw_SX5x8xJ8XJOib2ASpOX1ayCUqGxfyi6svTPHw,747
|
|
78
|
-
letta/types/action_response_model.py,sha256=jmtD85NYG5Jkf4ioLyYtHvdLFb92905Nq9mIPUa0yEQ,743
|
|
79
|
-
letta/types/agent_environment_variable.py,sha256=gFiNTbhysYzW_RKGyIa8QZHzHk5AvB_gEFYEJnI3CoM,1855
|
|
80
|
-
letta/types/agent_state.py,sha256=CWkdakovjoP-Z_hAeENLLrCENLyvUhvW-xL-fCdJEiw,4475
|
|
81
|
-
letta/types/agent_state_tool_rules_item.py,sha256=QVFCt60Ro3ZyyQtzA5Zn8Tq8t9osrpqchB08xzmdLs4,375
|
|
82
|
-
letta/types/agent_type.py,sha256=_-oGgLcf5PkLowj4BWvZ97nnjPWGztbAEGLsPu8sm3g,237
|
|
83
|
-
letta/types/app_auth_scheme.py,sha256=9OgqCmSYkFgWZNNFGhhBmCB808nzY01ilr74Ye6Q7hs,1240
|
|
84
|
-
letta/types/app_auth_scheme_auth_mode.py,sha256=Zafrac9piNVjCVppCv0CS34Yx4rFaFPieeNCrtaPSwk,225
|
|
85
|
-
letta/types/app_model.py,sha256=nXFCHttrO6DqY-GTYWuHQ2ClnGq7zTgH8q1KqJT76Io,1517
|
|
86
|
-
letta/types/archival_memory_summary.py,sha256=MURc1dD-9eAQiqEPIMeJzuEdjqHQXc9Bvff1sEuDdDc,637
|
|
87
|
-
letta/types/assistant_file.py,sha256=sbhfxKtQGBzgT2wwFwRBwMeDiz3nEZlnWjWN6imXnTo,879
|
|
88
|
-
letta/types/assistant_message_input.py,sha256=91Ltnd1UXVgP_rvWSP6joM7972vfzmVlKM-EfL13WbQ,884
|
|
89
|
-
letta/types/assistant_message_output.py,sha256=jOf6qausJ4rRWCCsCkIlk6tZ-d02aWkw_ljk15Ebw1Y,634
|
|
90
|
-
letta/types/auth_request.py,sha256=As9L-GYTzr39W6v7q-40UtxzW-tlKin9Ln9Gqxm4mDA,681
|
|
91
|
-
letta/types/auth_response.py,sha256=wYehJ6saW5e-JSlw70sORpZ8dnlQKPX6Gpw-YANOeMg,859
|
|
92
|
-
letta/types/auth_scheme_field.py,sha256=hrzhKhNOf4D0gvwq_3h1b4dTJEIjEpfXfxBrVIIEsfM,879
|
|
93
|
-
letta/types/block.py,sha256=A4_n92zBkliDW6Uf3-rodUnb_S0rRB4lPqI2BFlGqwM,3211
|
|
94
|
-
letta/types/block_update.py,sha256=OGH9bdStMh_VL4VQ1jJ31aE9ufDspbMyo80mSRpqeSU,1643
|
|
95
|
-
letta/types/chat_completion_request.py,sha256=RkTlEcX5LGFu_pNmZzoXfiKuxUs5I2-HiOuYVx_ZP30,2099
|
|
96
|
-
letta/types/chat_completion_request_function_call.py,sha256=I3aPJPef1TfEM0qVuiJQHF9c-MJcQkq1QuSyXm0gR98,247
|
|
97
|
-
letta/types/chat_completion_request_messages_item.py,sha256=RaP8kpCRf0uc48TnzWNUn1Csl4snQeQrSEIPHWrgajQ,408
|
|
98
|
-
letta/types/chat_completion_request_stop.py,sha256=-znv6wKECPL0blRnNuqY89OPWu3CY-aCzLFCgUOZXiw,144
|
|
99
|
-
letta/types/chat_completion_request_tool_choice.py,sha256=17mDEt1B55OpvIKPtz_Jmzvc998zNRKbfawr4-J63t0,282
|
|
100
|
-
letta/types/chat_completion_response.py,sha256=VxTN8H6WBfF-4NpNZRKIqpAPhc1IYuEWbCe6T4-lcLg,984
|
|
101
|
-
letta/types/child_tool_rule.py,sha256=llamP1LSCkyBYEBbUsMLktfgdskhiMh-yOTYdfJ4Sfw,961
|
|
102
|
-
letta/types/choice.py,sha256=WmSYEDtFnMrmVA51vnwCsV8SvQW_Pu5XhrR2KM7yMFI,955
|
|
103
|
-
letta/types/conditional_tool_rule.py,sha256=PpxAL8w82NAOqePFOZj1dQzYHOFgxOgS7zfTl304GDI,1324
|
|
104
|
-
letta/types/conflict_error_body.py,sha256=1u_zziegl_-iXcZmgzabm3I7cY6sVPt8vL2Pshow3gk,785
|
|
105
|
-
letta/types/context_window_overview.py,sha256=H787wPc_Ave-kykyKeFFynmqOEswiNuO4kEPvgSL1nY,2985
|
|
106
|
-
letta/types/create_assistant_file_request.py,sha256=61aWsSfPV2YvxlFeWYyHhXrpChR6nqcwgq7K0Zfhgow,646
|
|
107
|
-
letta/types/create_assistant_request.py,sha256=rA2NPmpBSluVR4WlFvg6VgakEdfJgwC6oxQCVWa2shc,1521
|
|
108
|
-
letta/types/create_block.py,sha256=zfXSQGAiGNCjGbyPCH3a1N7MHvuPwRC-brMfIrPWwzc,1424
|
|
109
|
-
letta/types/delete_assistant_file_response.py,sha256=UN6ZQKycuvieoMllotukxnylz9by6hZZvx16IV8L9XQ,770
|
|
110
|
-
letta/types/delete_assistant_response.py,sha256=7i_LE58bsikpMY73DVINZVE7QIhZAvK4U4-SEe6frWw,768
|
|
111
|
-
letta/types/e_2_b_sandbox_config.py,sha256=uCzy5EJvno0oJGNlY-cajdLHMZ1lxh6J8lp4s_CyqLg,955
|
|
112
|
-
letta/types/embedding_config.py,sha256=4azdkp1OsAF3_uehBsf2e0o9O21y_LZgGWDaRldMSa0,2537
|
|
113
|
-
letta/types/embedding_config_embedding_endpoint_type.py,sha256=Iw8W4h9bEYdTYYaU4__JUPKqS-zO9WpzIQKtihvJH8U,515
|
|
114
|
-
letta/types/file_metadata.py,sha256=IhvFUGtZ1OB5aaFThe69iju844C31HaozRiKSLkiQeM,2137
|
|
115
|
-
letta/types/function_call_input.py,sha256=iAQxp6wN59iB0LiNYDVBoMZXjBb6BnRgwcqWbHHYcg0,560
|
|
116
|
-
letta/types/function_call_output.py,sha256=Fe_65XeIQ4bl3LMCM9HmUWnycAb4OmAmDMDH89TtJqQ,580
|
|
117
|
-
letta/types/function_schema.py,sha256=f4qsSzD1gd8jaxxr6lkwA9JpDFsh0gepU-jryQct2y4,688
|
|
118
|
-
letta/types/health.py,sha256=JfUiE0dlUsBJzB_ivqbpLt-8pwhGIzigME-uRD0Z74U,616
|
|
119
|
-
letta/types/http_validation_error.py,sha256=w43naaw4VmntOBb3UC6zqGv6hnvUaMitJMFRK4i8vLc,659
|
|
120
|
-
letta/types/init_tool_rule.py,sha256=IDSFYgNeIPP55KT6cIBkYSSzi0HNxoi4d2fgR6MclN8,835
|
|
121
|
-
letta/types/internal_server_error_body.py,sha256=i4vsXy_WRq2vmh76HB4IUQsyMeWmbNBxAQlW6iASNaE,651
|
|
122
|
-
letta/types/job.py,sha256=IlvCdy4RAuVLu4uklsE48gXI5XTGBpydfa3j_i5EL-w,2471
|
|
123
|
-
letta/types/job_status.py,sha256=0Gu5Tku79SDVzCxnjVXQyDPNCizGWUP1ppohAck6a2U,189
|
|
124
|
-
letta/types/letta_request.py,sha256=ups_NcjFZe7E6WPU9CSnl5ncDQDKS-CqsQ9FjzvLJVU,1020
|
|
125
|
-
letta/types/letta_response.py,sha256=3ysBTUTXdpk7XsFsEve_ByMqtdggRULN4m_PPDuVWgA,1338
|
|
126
|
-
letta/types/letta_response_messages_item.py,sha256=nLeP3Isf91O4GO33lo7NOHRkchqY27l6cKKzlOA21ZA,3857
|
|
127
|
-
letta/types/letta_schemas_letta_message_tool_call.py,sha256=EU5fLZnSJfD0UcpCvNANoC9IC2PFe0TxV3X1Olep60I,616
|
|
128
|
-
letta/types/letta_schemas_message_message.py,sha256=R5mDzcK10j3BAcgLdhX0gdSenoUdRy8-Z4bnUp2irhw,3132
|
|
129
|
-
letta/types/letta_schemas_openai_chat_completion_request_tool.py,sha256=BgV4h_mrqB2LEevFg3MTMpZyh70wJmMryLqcObqKqj8,706
|
|
130
|
-
letta/types/letta_schemas_openai_chat_completion_request_tool_call.py,sha256=vjVm-VNFtSft0Yjtweh46K4v6GqPjhtsgJqSxfcBK4M,861
|
|
131
|
-
letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py,sha256=gvpaJeRBaqQtV8JD4b8B_R4aC5kYBVefDIq_vzS-QUQ,617
|
|
132
|
-
letta/types/letta_schemas_openai_chat_completion_response_message.py,sha256=zZEXzwld_1zL5w12CJAKtBRXOg-RWE16YDq-NhWf1T8,966
|
|
133
|
-
letta/types/letta_schemas_openai_chat_completion_response_tool_call.py,sha256=21aDMg7b51ulIdqzsa45Hk_fYCvBJZYl7HaidvfyK48,736
|
|
134
|
-
letta/types/letta_schemas_openai_chat_completions_tool_call_function.py,sha256=WZLHTlq3UYO-8E_G-gTC59BTe4mGNsSW7exAI9qA0gU,773
|
|
135
|
-
letta/types/letta_schemas_openai_chat_completions_tool_call_input.py,sha256=QoP1zY0h-VbyHsgHVQmBmv87byZZ3c8Av9q9D8Lpo3U,952
|
|
136
|
-
letta/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha256=10AzIa3b2u_C4x3JYPjlqvvUiwIUilpMyaPnPi2L8AU,868
|
|
137
|
-
letta/types/letta_schemas_tool_tool.py,sha256=ADseotHqBQ5Tj0RzhEtXtk_wo5FKMSHuwm-EUdnn3cU,2448
|
|
138
|
-
letta/types/letta_usage_statistics.py,sha256=Dz3PgXA3sTDtCCNysWZvVz74OFcjIeouiRc4x3ZHTEI,1458
|
|
139
|
-
letta/types/llm_config.py,sha256=_wFQSKDbtar3tfUjdv274tGa_iNBeT9QD8gM1r9iOvY,2445
|
|
140
|
-
letta/types/llm_config_model_endpoint_type.py,sha256=rnDv3wDnngPT10CFw24C6kHo4swuLHxv46aLI9Hoosg,505
|
|
141
|
-
letta/types/local_sandbox_config.py,sha256=Tm3t50Dy_Z6tyRd7ZyFYmRFxUAtSjFAwouig_ulKGPA,1042
|
|
142
|
-
letta/types/log_prob_token.py,sha256=9vFvxXeV7atr9_J_hGTcKfBXglIcn0XTbamzRVS4a1w,627
|
|
143
|
-
letta/types/memory.py,sha256=vyY6UtEo_5cUf17rVQIJQQ5hO7ZTxyDx2kHqT3WPFCc,1033
|
|
144
|
-
letta/types/message_content_log_prob.py,sha256=a3ZGlb1FGPAf-qTs_Ec1fzrASZSUrUcaPjpxEUfrvWc,745
|
|
145
|
-
letta/types/message_create.py,sha256=dbmYNRp-R1Ih4kik1NdVaCI5IEaps_MWTtMjhX7ra3Y,929
|
|
146
|
-
letta/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
|
|
147
|
-
letta/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
|
|
148
|
-
letta/types/not_found_error_body.py,sha256=64k_hvsBsOnZOsj6e3JyYSKVQb8cXiArerjt946jnfk,613
|
|
149
|
-
letta/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
|
|
150
|
-
letta/types/open_ai_assistant.py,sha256=BJ7WWFxZvAGZm8BSp00pI4ABNxr6P6t2AeG7WAfUvRM,1708
|
|
151
|
-
letta/types/organization.py,sha256=qgsZr2LQk-j6VWhMC-PKjEz3goRh9VG34BgJ3tV-ix8,925
|
|
152
|
-
letta/types/organization_create.py,sha256=PztQCNUzr4Zv3C9z5N9SK0usxZxZ86VPRgR-UIUXSHE,659
|
|
153
|
-
letta/types/passage.py,sha256=LzPssktL_dzQpNDESXhzNwQB50MtzggUsDtJZ7DMrEA,3338
|
|
154
|
-
letta/types/reasoning_message.py,sha256=wqXwn28SpeXz9vJ-suq83Y6uJ4eyh5vL8Xjqg2bY-5Y,880
|
|
155
|
-
letta/types/recall_memory_summary.py,sha256=SA40w3qLLV-kWddaQPSSzggRGrpbiFMrtc82PBJti3Y,633
|
|
156
|
-
letta/types/response_format.py,sha256=5d82oJYUODQxzIVtXdDnlZMcXRwvTPs6GR78d3zPmAQ,581
|
|
157
|
-
letta/types/sandbox_config.py,sha256=qGGMJk1d8qRmIuKr2VEJqe9qQfvNfLlKEPoNrIUVrLo,1713
|
|
158
|
-
letta/types/sandbox_config_create.py,sha256=Kdb2iYRQ2HGmUAWf1dkNKRP5ZNf0rlMBswKaX7c6D1M,728
|
|
159
|
-
letta/types/sandbox_config_create_config.py,sha256=EsSeN81_yPkorfQgOJmumdCWiUt8hk9HawSsRcCc5Hs,263
|
|
160
|
-
letta/types/sandbox_config_update.py,sha256=VPssSERarC2VejfQpRuA32GWTpWy9b1nP1Yva_nSuek,838
|
|
161
|
-
letta/types/sandbox_config_update_config.py,sha256=fGGmMuy43OnELj3qAj0rEcMro-cLD3ekeVpqJqqrs1M,263
|
|
162
|
-
letta/types/sandbox_environment_variable.py,sha256=3veodXLXLWknsuAe3LSc47qQHBauCr9EYIe7RJ5wjj4,1877
|
|
163
|
-
letta/types/sandbox_environment_variable_create.py,sha256=TaF1qTlzoXu6SXD9lWsEXMUmQtnQBzz3IywVo59axLA,888
|
|
164
|
-
letta/types/sandbox_environment_variable_update.py,sha256=5PujpTbysrPTp-qL1TaD06yMK18pOBScmgzeCTRB_qg,946
|
|
165
|
-
letta/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
|
|
166
|
-
letta/types/source.py,sha256=swcipLusZ_Exj9WEzRi9S9x75Hky_pu6gRpnRLJP7-I,2533
|
|
167
|
-
letta/types/system_message_input.py,sha256=w4mFYFIZWtvkil2NnEJPr4OHlPoHn1lonjo2Eo5DMgc,640
|
|
168
|
-
letta/types/system_message_output.py,sha256=OLmLNUL2Ykti_GtB32bEQG2KZ8uS0S59TQywxC51DTQ,928
|
|
169
|
-
letta/types/terminal_tool_rule.py,sha256=SlRhVJhFgdN0dn18QHKrig-k4UhVsO9hOJU2dGJKoHI,897
|
|
170
|
-
letta/types/tool_call_delta.py,sha256=-6VrIxuY76eFeFjO6Rkh-xNOMDnRB24C0cFxuWPqaf4,669
|
|
171
|
-
letta/types/tool_call_function_output.py,sha256=VlYlZ0qsR6mozkOr5DThgJxAtzwWurKZR3CHUWiyivY,746
|
|
172
|
-
letta/types/tool_call_message.py,sha256=Bn_MTBApjb-ihhicXWmm6A5v4yKRHuOUBj7FZLjPdDA,1018
|
|
173
|
-
letta/types/tool_call_message_tool_call.py,sha256=574_EuZw2S1A1bGaAfg1KMmPoBggmLVKfsizOx82510,295
|
|
174
|
-
letta/types/tool_create.py,sha256=1a3ce-ZG2U6kwjMLcqpN0anRgiuwt3qUZSA9T25eM1c,1622
|
|
175
|
-
letta/types/tool_function_choice.py,sha256=Jug7RK0YLS0Pt3i-IiZOKBH4hbrVuEBEdG5dCSfccaA,691
|
|
176
|
-
letta/types/tool_input.py,sha256=9f97Jp3jm2mBesfAJ_Do5Sbha4uKcM01y332txiXJkw,672
|
|
177
|
-
letta/types/tool_message.py,sha256=zJTOLSH97oncrGPbqvI1RXI85HLT-cSJJuXrtO2vk9k,617
|
|
178
|
-
letta/types/tool_return_message.py,sha256=ZjcmgOo_SgdJgq49YpBg8BCOdJssvqfMmdjgSoTOWKg,1509
|
|
179
|
-
letta/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
180
|
-
letta/types/tool_rule_type.py,sha256=W6lVaYVYzSzhFHgqitmw6XLtxgxBhINgHZJfSnxg6ts,265
|
|
181
|
-
letta/types/usage_statistics.py,sha256=EchBQ4u6l_5aFRfjWlTLVQ7DozwjhnOR3ePcllZSkPI,688
|
|
182
|
-
letta/types/user.py,sha256=-3_3EGW6bvWBXmmkxqpkwzBaQKf-8_W0ypR61r_ugu0,1473
|
|
183
|
-
letta/types/user_create.py,sha256=JHCSRbf4-N9fvHZJGaxmTEcuKtMuEPJcm9OAYG23Zdg,712
|
|
184
|
-
letta/types/user_message_input.py,sha256=GukptCjs38RyYTF5NeJ0BiAKsW4ugx-o8cc0rUWbKBM,722
|
|
185
|
-
letta/types/user_message_input_content.py,sha256=TEBnUQHz98kmY2cBPOdjOnl2MSUpslbukI8qEpM5FKg,142
|
|
186
|
-
letta/types/user_message_output.py,sha256=lsTBJgX3OzhGqXIF2G2ahHqv6M7gZuQWjAqufL1TzAU,917
|
|
187
|
-
letta/types/user_update.py,sha256=L5GRkGf23DNrcEYkceOSNf7EL47DORxUN36c72-ZKr0,860
|
|
188
|
-
letta/types/validation_error.py,sha256=qazGitGiLpbV14KUiLB7rKuc_yKWhlpC5Sap98tKYKg,678
|
|
189
|
-
letta/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
190
|
-
letta/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
191
|
-
letta_client-0.1.6.dist-info/METADATA,sha256=bUMhK_S8GYw6WlNsvFAPgkKyCp8tbxyRKGCOUVdotx0,4886
|
|
192
|
-
letta_client-0.1.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
193
|
-
letta_client-0.1.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|