letta-nightly 0.11.7.dev20250909104137__py3-none-any.whl → 0.11.7.dev20250911104039__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/adapters/letta_llm_adapter.py +81 -0
- letta/adapters/letta_llm_request_adapter.py +113 -0
- letta/adapters/letta_llm_stream_adapter.py +171 -0
- letta/agents/agent_loop.py +23 -0
- letta/agents/base_agent.py +4 -1
- letta/agents/base_agent_v2.py +68 -0
- letta/agents/helpers.py +3 -5
- letta/agents/letta_agent.py +23 -12
- letta/agents/letta_agent_v2.py +1221 -0
- letta/agents/voice_agent.py +2 -1
- letta/constants.py +1 -1
- letta/errors.py +12 -0
- letta/functions/function_sets/base.py +53 -12
- letta/functions/helpers.py +3 -2
- letta/functions/schema_generator.py +1 -1
- letta/groups/sleeptime_multi_agent_v2.py +4 -2
- letta/groups/sleeptime_multi_agent_v3.py +233 -0
- letta/helpers/tool_rule_solver.py +4 -0
- letta/helpers/tpuf_client.py +607 -34
- letta/interfaces/anthropic_streaming_interface.py +74 -30
- letta/interfaces/openai_streaming_interface.py +80 -37
- letta/llm_api/google_vertex_client.py +1 -1
- letta/llm_api/openai_client.py +45 -4
- letta/orm/agent.py +4 -1
- letta/orm/block.py +2 -0
- letta/orm/blocks_agents.py +1 -0
- letta/orm/group.py +1 -0
- letta/orm/source.py +8 -1
- letta/orm/sources_agents.py +2 -1
- letta/orm/step_metrics.py +10 -0
- letta/orm/tools_agents.py +5 -2
- letta/schemas/block.py +4 -0
- letta/schemas/enums.py +1 -0
- letta/schemas/group.py +8 -0
- letta/schemas/letta_message.py +1 -1
- letta/schemas/letta_request.py +2 -2
- letta/schemas/mcp.py +9 -1
- letta/schemas/message.py +42 -2
- letta/schemas/providers/ollama.py +1 -1
- letta/schemas/providers.py +1 -2
- letta/schemas/source.py +6 -0
- letta/schemas/step_metrics.py +2 -0
- letta/server/rest_api/interface.py +34 -2
- letta/server/rest_api/json_parser.py +2 -0
- letta/server/rest_api/redis_stream_manager.py +2 -1
- letta/server/rest_api/routers/openai/chat_completions/chat_completions.py +4 -2
- letta/server/rest_api/routers/v1/__init__.py +2 -0
- letta/server/rest_api/routers/v1/agents.py +132 -170
- letta/server/rest_api/routers/v1/blocks.py +6 -0
- letta/server/rest_api/routers/v1/folders.py +25 -7
- letta/server/rest_api/routers/v1/groups.py +6 -0
- letta/server/rest_api/routers/v1/internal_templates.py +218 -12
- letta/server/rest_api/routers/v1/messages.py +14 -19
- letta/server/rest_api/routers/v1/runs.py +43 -28
- letta/server/rest_api/routers/v1/sources.py +25 -7
- letta/server/rest_api/routers/v1/tools.py +42 -0
- letta/server/rest_api/streaming_response.py +11 -2
- letta/server/server.py +9 -6
- letta/services/agent_manager.py +39 -59
- letta/services/agent_serialization_manager.py +26 -11
- letta/services/archive_manager.py +60 -9
- letta/services/block_manager.py +5 -0
- letta/services/file_processor/embedder/base_embedder.py +5 -0
- letta/services/file_processor/embedder/openai_embedder.py +4 -0
- letta/services/file_processor/embedder/pinecone_embedder.py +5 -1
- letta/services/file_processor/embedder/turbopuffer_embedder.py +71 -0
- letta/services/file_processor/file_processor.py +9 -7
- letta/services/group_manager.py +74 -11
- letta/services/mcp_manager.py +134 -28
- letta/services/message_manager.py +229 -125
- letta/services/passage_manager.py +2 -1
- letta/services/source_manager.py +23 -1
- letta/services/summarizer/summarizer.py +4 -1
- letta/services/tool_executor/core_tool_executor.py +2 -120
- letta/services/tool_executor/files_tool_executor.py +133 -8
- letta/services/tool_executor/multi_agent_tool_executor.py +17 -14
- letta/services/tool_sandbox/local_sandbox.py +2 -2
- letta/services/tool_sandbox/modal_version_manager.py +2 -1
- letta/settings.py +6 -0
- letta/streaming_utils.py +29 -4
- letta/utils.py +106 -4
- {letta_nightly-0.11.7.dev20250909104137.dist-info → letta_nightly-0.11.7.dev20250911104039.dist-info}/METADATA +2 -2
- {letta_nightly-0.11.7.dev20250909104137.dist-info → letta_nightly-0.11.7.dev20250911104039.dist-info}/RECORD +86 -78
- {letta_nightly-0.11.7.dev20250909104137.dist-info → letta_nightly-0.11.7.dev20250911104039.dist-info}/WHEEL +0 -0
- {letta_nightly-0.11.7.dev20250909104137.dist-info → letta_nightly-0.11.7.dev20250911104039.dist-info}/entry_points.txt +0 -0
- {letta_nightly-0.11.7.dev20250909104137.dist-info → letta_nightly-0.11.7.dev20250911104039.dist-info}/licenses/LICENSE +0 -0
letta/utils.py
CHANGED
@@ -17,7 +17,7 @@ from contextlib import contextmanager
|
|
17
17
|
from datetime import datetime, timezone
|
18
18
|
from functools import wraps
|
19
19
|
from logging import Logger
|
20
|
-
from typing import Any, Coroutine, Optional, Union, _GenericAlias, get_args, get_origin, get_type_hints
|
20
|
+
from typing import Any, Callable, Coroutine, Optional, Union, _GenericAlias, get_args, get_origin, get_type_hints
|
21
21
|
from urllib.parse import urljoin, urlparse
|
22
22
|
|
23
23
|
import demjson3 as demjson
|
@@ -39,6 +39,7 @@ from letta.constants import (
|
|
39
39
|
)
|
40
40
|
from letta.helpers.json_helpers import json_dumps, json_loads
|
41
41
|
from letta.log import get_logger
|
42
|
+
from letta.otel.tracing import log_attributes, trace_method
|
42
43
|
from letta.schemas.openai.chat_completion_response import ChatCompletionResponse
|
43
44
|
|
44
45
|
logger = get_logger(__name__)
|
@@ -1093,14 +1094,68 @@ def make_key(*args, **kwargs):
|
|
1093
1094
|
return str((args, tuple(sorted(kwargs.items()))))
|
1094
1095
|
|
1095
1096
|
|
1096
|
-
|
1097
|
+
# Global set to keep strong references to background tasks
|
1098
|
+
_background_tasks: set = set()
|
1099
|
+
|
1100
|
+
|
1101
|
+
def get_background_task_count() -> int:
|
1102
|
+
"""Get the current number of background tasks for debugging/monitoring."""
|
1103
|
+
return len(_background_tasks)
|
1104
|
+
|
1105
|
+
|
1106
|
+
@trace_method
|
1107
|
+
def safe_create_task(coro, label: str = "background task"):
|
1097
1108
|
async def wrapper():
|
1098
1109
|
try:
|
1099
1110
|
await coro
|
1100
1111
|
except Exception as e:
|
1101
1112
|
logger.exception(f"{label} failed with {type(e).__name__}: {e}")
|
1102
1113
|
|
1103
|
-
|
1114
|
+
task = asyncio.create_task(wrapper())
|
1115
|
+
|
1116
|
+
# Add task to the set to maintain strong reference
|
1117
|
+
_background_tasks.add(task)
|
1118
|
+
|
1119
|
+
# Log task count to trace
|
1120
|
+
log_attributes({"total_background_task_count": get_background_task_count()})
|
1121
|
+
|
1122
|
+
# Remove task from set when done to prevent memory leaks
|
1123
|
+
task.add_done_callback(_background_tasks.discard)
|
1124
|
+
|
1125
|
+
return task
|
1126
|
+
|
1127
|
+
|
1128
|
+
def safe_create_shielded_task(coro, label: str = "shielded background task"):
|
1129
|
+
"""
|
1130
|
+
Create a shielded background task that cannot be cancelled externally.
|
1131
|
+
|
1132
|
+
This is useful for critical operations that must complete even if the
|
1133
|
+
parent operation is cancelled. The task is internally shielded but the
|
1134
|
+
returned task can still have callbacks added to it.
|
1135
|
+
"""
|
1136
|
+
|
1137
|
+
async def shielded_wrapper():
|
1138
|
+
try:
|
1139
|
+
# Shield the original coroutine to prevent cancellation
|
1140
|
+
result = await asyncio.shield(coro)
|
1141
|
+
return result
|
1142
|
+
except Exception as e:
|
1143
|
+
logger.exception(f"{label} failed with {type(e).__name__}: {e}")
|
1144
|
+
raise
|
1145
|
+
|
1146
|
+
# Create the task with the shielded wrapper
|
1147
|
+
task = asyncio.create_task(shielded_wrapper())
|
1148
|
+
|
1149
|
+
# Add task to the set to maintain strong reference
|
1150
|
+
_background_tasks.add(task)
|
1151
|
+
|
1152
|
+
# Log task count to trace
|
1153
|
+
log_attributes({"total_background_task_count": get_background_task_count()})
|
1154
|
+
|
1155
|
+
# Remove task from set when done to prevent memory leaks
|
1156
|
+
task.add_done_callback(_background_tasks.discard)
|
1157
|
+
|
1158
|
+
return task
|
1104
1159
|
|
1105
1160
|
|
1106
1161
|
def safe_create_file_processing_task(coro, file_metadata, server, actor, logger: Logger, label: str = "file processing task"):
|
@@ -1137,7 +1192,15 @@ def safe_create_file_processing_task(coro, file_metadata, server, actor, logger:
|
|
1137
1192
|
except Exception as update_error:
|
1138
1193
|
logger.error(f"Failed to update file status to ERROR for {file_metadata.id}: {update_error}")
|
1139
1194
|
|
1140
|
-
|
1195
|
+
task = asyncio.create_task(wrapper())
|
1196
|
+
|
1197
|
+
# Add task to the set to maintain strong reference
|
1198
|
+
_background_tasks.add(task)
|
1199
|
+
|
1200
|
+
# Remove task from set when done to prevent memory leaks
|
1201
|
+
task.add_done_callback(_background_tasks.discard)
|
1202
|
+
|
1203
|
+
return task
|
1141
1204
|
|
1142
1205
|
|
1143
1206
|
class CancellationSignal:
|
@@ -1271,3 +1334,42 @@ def truncate_file_visible_content(visible_content: str, is_open: bool, per_file_
|
|
1271
1334
|
visible_content += truncated_warning
|
1272
1335
|
|
1273
1336
|
return visible_content
|
1337
|
+
|
1338
|
+
|
1339
|
+
def fire_and_forget(coro, task_name: Optional[str] = None, error_callback: Optional[Callable[[Exception], None]] = None) -> asyncio.Task:
|
1340
|
+
"""
|
1341
|
+
Execute an async coroutine in the background without waiting for completion.
|
1342
|
+
|
1343
|
+
Args:
|
1344
|
+
coro: The coroutine to execute
|
1345
|
+
task_name: Optional name for logging purposes
|
1346
|
+
error_callback: Optional callback to execute if the task fails
|
1347
|
+
|
1348
|
+
Returns:
|
1349
|
+
The created asyncio Task object
|
1350
|
+
"""
|
1351
|
+
import traceback
|
1352
|
+
|
1353
|
+
task = asyncio.create_task(coro)
|
1354
|
+
|
1355
|
+
# Add task to the set to maintain strong reference
|
1356
|
+
_background_tasks.add(task)
|
1357
|
+
|
1358
|
+
# Remove task from set when done to prevent memory leaks
|
1359
|
+
task.add_done_callback(_background_tasks.discard)
|
1360
|
+
|
1361
|
+
def callback(t):
|
1362
|
+
try:
|
1363
|
+
t.result() # this re-raises exceptions from the task
|
1364
|
+
except Exception as e:
|
1365
|
+
task_desc = f"Background task {task_name}" if task_name else "Background task"
|
1366
|
+
logger.error(f"{task_desc} failed: {str(e)}\n{traceback.format_exc()}")
|
1367
|
+
|
1368
|
+
if error_callback:
|
1369
|
+
try:
|
1370
|
+
error_callback(e)
|
1371
|
+
except Exception as callback_error:
|
1372
|
+
logger.error(f"Error callback failed: {callback_error}")
|
1373
|
+
|
1374
|
+
task.add_done_callback(callback)
|
1375
|
+
return task
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: letta-nightly
|
3
|
-
Version: 0.11.7.
|
3
|
+
Version: 0.11.7.dev20250911104039
|
4
4
|
Summary: Create LLM agents with long-term memory and custom tools
|
5
5
|
Author-email: Letta Team <contact@letta.com>
|
6
6
|
License: Apache License
|
@@ -26,7 +26,7 @@ Requires-Dist: html2text>=2020.1.16
|
|
26
26
|
Requires-Dist: httpx-sse>=0.4.0
|
27
27
|
Requires-Dist: httpx>=0.28.0
|
28
28
|
Requires-Dist: jinja2>=3.1.5
|
29
|
-
Requires-Dist: letta-client
|
29
|
+
Requires-Dist: letta-client>=0.1.319
|
30
30
|
Requires-Dist: llama-index-embeddings-openai>=0.3.1
|
31
31
|
Requires-Dist: llama-index>=0.12.2
|
32
32
|
Requires-Dist: markitdown[docx,pdf,pptx]>=0.1.2
|
@@ -1,28 +1,34 @@
|
|
1
1
|
letta/__init__.py,sha256=6TcK-qChYY5eusgOFTows6FWBDFJ8CZW5vJFQKcrvMA,1321
|
2
2
|
letta/agent.py,sha256=dhUyEpEZBearfm3xHh2gW8fvCBfsYAwNziQxOm33nbc,89640
|
3
3
|
letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
|
4
|
-
letta/constants.py,sha256=
|
4
|
+
letta/constants.py,sha256=8QzePPRAQvlC2diFt4v_HhD_x8MNbvWFe5Ad40SqNA8,16195
|
5
5
|
letta/embeddings.py,sha256=d2o1nOVTaofBk6j-WwsE0_ugvxa1nIOcceqGuJ4w_pc,2045
|
6
|
-
letta/errors.py,sha256=
|
6
|
+
letta/errors.py,sha256=oBMiGx6ZYCFosS_zPMHHWiXCRhfKG2kYTPzX7y2qAy8,9899
|
7
7
|
letta/interface.py,sha256=kYOTv1xhNWcoL9qP7cs8hGp9gKBimcBmqIhCUeoil18,13026
|
8
8
|
letta/log.py,sha256=-hkEaSIru3cvO8ynHPWb91jemJHzgWjmVc3fqGJrjvU,2294
|
9
9
|
letta/main.py,sha256=wj4cawl4HP2ok-CqKVvqzSiOMahHC4t8FWxvuKKTWUA,317
|
10
10
|
letta/memory.py,sha256=l5iNhLAR_xzgTb0GBlQx4SVgH8kuZh8siJdC_CFPKEs,4278
|
11
11
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
letta/settings.py,sha256=
|
12
|
+
letta/settings.py,sha256=QEjNUwRXGBgsQpQAs2kksQmGN5CbxKlxPPydrklx_Ms,15011
|
13
13
|
letta/streaming_interface.py,sha256=rPMfwUcjqITWk2tVqFQm1hmP99tU2IOHg9gU2dgPSo8,16400
|
14
|
-
letta/streaming_utils.py,sha256=
|
14
|
+
letta/streaming_utils.py,sha256=_UhLa0EtUkd6WL_oBYIU65tDcJ9jf3uWEHuzfQ4HCa8,13769
|
15
15
|
letta/system.py,sha256=kHF7n3Viq7gV5UIUEXixod2gWa2jroUgztpEzMC1Sew,8925
|
16
|
-
letta/utils.py,sha256=
|
16
|
+
letta/utils.py,sha256=bSq3St7MUw9gN1g0ICdOhNNaUFYBC3EfJLG6qsRLSFA,43290
|
17
|
+
letta/adapters/letta_llm_adapter.py,sha256=11wkOkEQfPXUuJoJxbK22wCa-8gnWiDAb3UOXOxLt5U,3427
|
18
|
+
letta/adapters/letta_llm_request_adapter.py,sha256=wJhK5M_qOhRPAhgMmYI7EJcM8Op19tClnXe0kJ29a3Q,4831
|
19
|
+
letta/adapters/letta_llm_stream_adapter.py,sha256=Q6nFr8uKc1DyAHHiHxHGNmqhRIScEKXO3TwsBgqW5QI,7630
|
17
20
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
letta/agents/
|
21
|
+
letta/agents/agent_loop.py,sha256=cTSlGt1g9aZWG5vIMYtzdeJG1UcrqfjpLGmZU6j89zU,854
|
22
|
+
letta/agents/base_agent.py,sha256=rUAcPxWmTnmi50AWOXwrWc-v5sPIod0W_xXaPQShjcE,8540
|
23
|
+
letta/agents/base_agent_v2.py,sha256=t7XtUv3RZNvKwk1uqmSKxAV_2ZGSXYektlzyhXB3N-M,2558
|
19
24
|
letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
|
20
25
|
letta/agents/ephemeral_summary_agent.py,sha256=tOldA_daa_PduTJ2RA7fAo9Rv6sUb-C_9dJaD6iujS4,4454
|
21
26
|
letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
|
22
|
-
letta/agents/helpers.py,sha256
|
23
|
-
letta/agents/letta_agent.py,sha256=
|
27
|
+
letta/agents/helpers.py,sha256=eCHsvZEkTe0L_uZHYkfNAztsEJW0FTnKZMgVbqlI0Yg,11618
|
28
|
+
letta/agents/letta_agent.py,sha256=6nRTh5kzUpqK7eNMk4DlcgEoPmDxFmRb5ysoVHa-vh8,99488
|
24
29
|
letta/agents/letta_agent_batch.py,sha256=17RpYVXpGh9dlKxdMOLMCOHWFsi6N5S9FJHxooxkJCI,27998
|
25
|
-
letta/agents/
|
30
|
+
letta/agents/letta_agent_v2.py,sha256=EDQ7ShQXS09cCMTMj0i3J2eECp5-ISDrB4QQWT9ALlg,58257
|
31
|
+
letta/agents/voice_agent.py,sha256=y-n6qadfKsswvGODzXH02pLIQQ44wnaDSE6oUgKHVkA,23381
|
26
32
|
letta/agents/voice_sleeptime_agent.py,sha256=_JzCbWBOKrmo1cTaqZFTrQudpJEapwAyrXYtAHUILGo,8675
|
27
33
|
letta/cli/cli.py,sha256=tKtghlX36Rp0_HbkMosvlAapL07JXhA0vKLGTNKnxSQ,1615
|
28
34
|
letta/cli/cli_load.py,sha256=paAyDq6e-8D1ZWo8JvXIiA1N7FeKcQMSWgcr2vU_1Gs,319
|
@@ -38,14 +44,14 @@ letta/functions/ast_parsers.py,sha256=0dXAN4qx3pWL_Y0aoEkaBpMKwI-kpoLEJftjW3v2I4
|
|
38
44
|
letta/functions/async_composio_toolset.py,sha256=IuhZTVghPDXRsehOOZsEEiJGYyjWjDTQc2xrjTg0yBo,4786
|
39
45
|
letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2i8XP_8,3593
|
40
46
|
letta/functions/functions.py,sha256=bSYEcUPzbKXx6IztZkE1o7O7zuhFgbLzKSG5SuP8JVk,16009
|
41
|
-
letta/functions/helpers.py,sha256
|
47
|
+
letta/functions/helpers.py,sha256=KALhhEBbFND1Ft5WWcCDvtWx-jvE26QQfppOR0pF8p4,25273
|
42
48
|
letta/functions/interface.py,sha256=pN1gpDnLISW44gRcic1IX6I6pDwOT9UbkST_4ICuMvQ,2936
|
43
49
|
letta/functions/prompts.py,sha256=jNl83xjNpoSs8KzGtuc6jzN8jp_T4BC_5f4FMJ88_K0,1145
|
44
|
-
letta/functions/schema_generator.py,sha256=
|
50
|
+
letta/functions/schema_generator.py,sha256=EgHC3UHRNF4FG7CKWNIxajUyryLo5UIZB2KJP9MrKMg,30903
|
45
51
|
letta/functions/schema_validator.py,sha256=DnfyoYZxBqURtfVvJsvVkTGcAFtesod43JszQkKdhGM,8308
|
46
52
|
letta/functions/types.py,sha256=PEcdWtY7zb9uOm83-SvPKnVfAbUA_7E9gbOoZJn6_pI,741
|
47
53
|
letta/functions/typescript_parser.py,sha256=N-eSaUm8dCc53NwcK8KJOBqGnqSROl3JfTfHLovCut8,6571
|
48
|
-
letta/functions/function_sets/base.py,sha256=
|
54
|
+
letta/functions/function_sets/base.py,sha256=8vCG7N7z21AD5QJhQOyOnk5f0TlE2X7AF1UmN83Xy_E,20783
|
49
55
|
letta/functions/function_sets/builtin.py,sha256=32HCd7J5meNFBq8d2mrQGVUbMaojKvAJFZsTVjMfh9A,3300
|
50
56
|
letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
|
51
57
|
letta/functions/function_sets/files.py,sha256=b2Io2njvZPY8MDQD6heTN0XfwQgnEdEDAHLVcYKBwNY,4450
|
@@ -57,7 +63,8 @@ letta/groups/dynamic_multi_agent.py,sha256=-IugnQJTxe4FOTKd0UX3lbSKVcD-S0noZDjwo
|
|
57
63
|
letta/groups/helpers.py,sha256=yAr05Keoz_7vdzPG6A9x5CsWrJjtvF8A0GSQWDe29UM,4660
|
58
64
|
letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
|
59
65
|
letta/groups/sleeptime_multi_agent.py,sha256=MCmgLyJubzgst_FaPOCR8BfDmss4MCGEdvnZOLXD8z8,10461
|
60
|
-
letta/groups/sleeptime_multi_agent_v2.py,sha256=
|
66
|
+
letta/groups/sleeptime_multi_agent_v2.py,sha256=t2Ef-066RxB6DksRXcRO5tMCWaLi0ovkjCoq5RVPayE,13838
|
67
|
+
letta/groups/sleeptime_multi_agent_v3.py,sha256=KjeHsuXNZup3FIw2CaqBuLo21j1nzI2fAcNyRPUYjHU,9233
|
61
68
|
letta/groups/supervisor_multi_agent.py,sha256=IWe5sNg6JoTaXwsN_8T9aiGHnFpJc7UVnlC3ly2rlBU,4459
|
62
69
|
letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
|
63
70
|
letta/helpers/composio_helpers.py,sha256=X3RaJSqa8z-oXmHJjJjAs1fJroZ5A8yu4-Yg2oDiTdA,1712
|
@@ -70,15 +77,15 @@ letta/helpers/pinecone_utils.py,sha256=StsRbsFKGtEvgmm0f2QyTog5PHKW73OnAFXiOvH8-
|
|
70
77
|
letta/helpers/reasoning_helper.py,sha256=8P5AJo-UFsYhZC3yNx4N-pIkVUsjfz7ZPmydsVKPLN4,1931
|
71
78
|
letta/helpers/singleton.py,sha256=Y4dG_ZBCcrogvl9iZ69bSLq-QltrdP8wHqKkhef8OBI,370
|
72
79
|
letta/helpers/tool_execution_helper.py,sha256=Oz9xNDrSFUIrYhEhLaw8yoXdHbfijuxwtS1tJv-lH2A,5149
|
73
|
-
letta/helpers/tool_rule_solver.py,sha256=
|
74
|
-
letta/helpers/tpuf_client.py,sha256=
|
80
|
+
letta/helpers/tool_rule_solver.py,sha256=dd5gvj67_8FgXrC0_Px5TWXE8A9CMFvH_E26idPrkKY,9848
|
81
|
+
letta/helpers/tpuf_client.py,sha256=dZuR5ZZqWOUYwXS4aX5YDEkw1Wf3zo_r5hpL8x7xFig,60993
|
75
82
|
letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
76
83
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
77
84
|
letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
|
78
85
|
letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
-
letta/interfaces/anthropic_streaming_interface.py,sha256=
|
86
|
+
letta/interfaces/anthropic_streaming_interface.py,sha256=0VyK8kTRgCLNDLQN6vX1gJ0dfJhqguL_NL1GYgFr6fU,25614
|
80
87
|
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=3xHXh8cW79EkiMUTYfvcH_s92nkLjxXfvtVOVC3bfLo,5050
|
81
|
-
letta/interfaces/openai_streaming_interface.py,sha256=
|
88
|
+
letta/interfaces/openai_streaming_interface.py,sha256=m2QeZo4w5lclwTypqAcHOJ4disaHqwb9yeqQaukfesA,28157
|
82
89
|
letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
|
83
90
|
letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
91
|
letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
|
@@ -92,7 +99,7 @@ letta/llm_api/bedrock_client.py,sha256=gNKSFGCbrrLMPvtBItAOz1nme4K_opgkZdFa3cUzp
|
|
92
99
|
letta/llm_api/deepseek_client.py,sha256=di6ApSQu1DewXw0_JIP7AK4IHvXQHd0e32tQfFf5F34,16975
|
93
100
|
letta/llm_api/google_ai_client.py,sha256=JweTUHZXvK6kcZBGXA7XEU53KP4vM7_zdD7AorCtsdI,8166
|
94
101
|
letta/llm_api/google_constants.py,sha256=eOjOv-FImyJ4b4QGIaod-mEROMtrBFz0yhuYHqOEkwY,797
|
95
|
-
letta/llm_api/google_vertex_client.py,sha256=
|
102
|
+
letta/llm_api/google_vertex_client.py,sha256=PUTUa2DM-nIVhE7H3pDwPqgPl2gLAAgGgANzABV6Xfc,28680
|
96
103
|
letta/llm_api/groq_client.py,sha256=nNeWSgDVOLn3iFiicDKyhHj7f73JxrB9-7_M2Pv2e1I,3192
|
97
104
|
letta/llm_api/helpers.py,sha256=GXV_SuaU7uSCDj6bxDcCCF7CUjuZQCVWd5qZ3OsHVNk,17587
|
98
105
|
letta/llm_api/llm_api_tools.py,sha256=lsZ6OeIHesyOfbNQi5CVw5hn1lTQP5gJyforp-D0nk8,12294
|
@@ -100,7 +107,7 @@ letta/llm_api/llm_client.py,sha256=iXiPbrhluP2DBczv9nkFlAXdwWGOkg0lNDA9LzLrG4o,3
|
|
100
107
|
letta/llm_api/llm_client_base.py,sha256=RFo8H4ILxVyzB3DeF4rJoJJYjRF8ScVO4yyDrhuN0DY,10052
|
101
108
|
letta/llm_api/mistral.py,sha256=ruOTBt07Uzx7S30_eXhedVWngtpjtlzG6Ox1Iw0_mQs,662
|
102
109
|
letta/llm_api/openai.py,sha256=56cwdS9l-75cMTtY9df6Dbb1M9crH8YQsSdF3Pm3Rpg,27393
|
103
|
-
letta/llm_api/openai_client.py,sha256=
|
110
|
+
letta/llm_api/openai_client.py,sha256=rnWMspbJ7ZcpFPhIJDBNACRJPk_Y3v8DtRzSMbl76ZU,22396
|
104
111
|
letta/llm_api/together_client.py,sha256=HeDMDDa525yfDTKciODDfX_t93QBfFmX0n2P-FT1QTU,2284
|
105
112
|
letta/llm_api/xai_client.py,sha256=3mpSQ9OoWyjqo2VhNM_m0EPBzS69r4p-OEwL7UWc9oY,3772
|
106
113
|
letta/llm_api/sample_response_jsons/aws_bedrock.json,sha256=RS3VqyxPB9hQQCPm42hWoga0bisKv_0e8ZF-c3Ag1FA,930
|
@@ -146,19 +153,19 @@ letta/local_llm/webui/settings.py,sha256=gmLHfiOl1u4JmlAZU2d2O8YKF9lafdakyjwR_ft
|
|
146
153
|
letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
154
|
letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
|
148
155
|
letta/orm/__init__.py,sha256=CNDfeCRle9h5EnqFMXadlUCFN0AtlPihMrlAjt9Ikv0,1637
|
149
|
-
letta/orm/agent.py,sha256=
|
156
|
+
letta/orm/agent.py,sha256=MF4MvWEP9-51ynhgct_B7zvr6ikkUnjXHDhLj_FFpaA,17224
|
150
157
|
letta/orm/agents_tags.py,sha256=-rWR8DoEiHM4yc9vAHgHuvjIwgMXMWzKnTKFlBBu3TQ,1076
|
151
158
|
letta/orm/archive.py,sha256=82engq9ZfNrp1yu8QS5df4vsIwQC33CADZA-05doNko,3920
|
152
159
|
letta/orm/archives_agents.py,sha256=hIhaIRQPuNv-etQVWnIQhEomiumLC1OWR-T_s0Y7snM,1273
|
153
160
|
letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
|
154
|
-
letta/orm/block.py,sha256=
|
161
|
+
letta/orm/block.py,sha256=arPKI9vNrDtl3fJQgOTIWjqYjj1V-WuMK6NDTSBHNcc,6101
|
155
162
|
letta/orm/block_history.py,sha256=XLbdTkc9Ga_W5oolzRPRxry7x5rS-PHqW11MKpBxyrA,2109
|
156
|
-
letta/orm/blocks_agents.py,sha256=
|
163
|
+
letta/orm/blocks_agents.py,sha256=b5PWmA4CrDJvMMcTVVdt7tWIFFWPK6XhMna_2SUTCjg,1184
|
157
164
|
letta/orm/custom_columns.py,sha256=gVq4opV0sIuThphX7z3QdyF8RKbcxUO6IHX2J4al27U,5585
|
158
165
|
letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
|
159
166
|
letta/orm/file.py,sha256=LynuEajZM7QeO4Y_J84iAB9dqXHPCY-xTur0q022n48,5298
|
160
167
|
letta/orm/files_agents.py,sha256=W604OZRfHWMNavSS_XY-1xkSwxwYn7YtPjim1xnPkGk,3875
|
161
|
-
letta/orm/group.py,sha256=
|
168
|
+
letta/orm/group.py,sha256=16frjvVDfwpJPfQgoVnhUk4M_vooXU6ypXcw1pTZovU,2272
|
162
169
|
letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,483
|
163
170
|
letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
|
164
171
|
letta/orm/identities_agents.py,sha256=cfIQ6UsbwmjxtGVmFt1ArK2zbKr9k6VWoELuISDnLSc,502
|
@@ -179,14 +186,14 @@ letta/orm/prompt.py,sha256=NpFPTm3jD8Aewxhlnq8s4eIzANJ3bAEtbq6UmFqyc3U,489
|
|
179
186
|
letta/orm/provider.py,sha256=DYh-rvK0Bwl540hS902zK02mTiK5YJNmxD2GgBhgbpc,1656
|
180
187
|
letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
|
181
188
|
letta/orm/sandbox_config.py,sha256=XmBfYSQzocewuCGkuXNq4QwBpzfJpygX0dBVag0ELOc,4189
|
182
|
-
letta/orm/source.py,sha256=
|
183
|
-
letta/orm/sources_agents.py,sha256=
|
189
|
+
letta/orm/source.py,sha256=tRxqjWM8n1LBhlDTIiKhJ82-tpWErTeiDXMFz1rwY4g,1715
|
190
|
+
letta/orm/sources_agents.py,sha256=Fvo8ujDNeeqleiiqXk-0VUPiQDawLAN-d28RxdvWnbs,554
|
184
191
|
letta/orm/sqlalchemy_base.py,sha256=mw_leKRvSskRswfiUTYP3Jk9Q7Io9rQJWyVEUGWyTaw,44900
|
185
192
|
letta/orm/sqlite_functions.py,sha256=tbwePL5XciJIttoehyt1H17zdUXWAdjFqH0t-XaFJfk,7256
|
186
193
|
letta/orm/step.py,sha256=S5G4uPMx74_629Fa1IZAdttTk0BQw-an3Amw6fhw9VA,4495
|
187
|
-
letta/orm/step_metrics.py,sha256=
|
194
|
+
letta/orm/step_metrics.py,sha256=5UDJYyGIYMsidKzBDru5CzJXzA0AycaO_e23xFIvEvE,4391
|
188
195
|
letta/orm/tool.py,sha256=W31LI3zT-2cPg8rWwqdLfIZqhG5dg87_Qeb8TTHKOzw,3055
|
189
|
-
letta/orm/tools_agents.py,sha256=
|
196
|
+
letta/orm/tools_agents.py,sha256=aUvXqoE9VrEBIEbGUVdWtSIt0yEtAVbZScNUVr8PgoM,700
|
190
197
|
letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
|
191
198
|
letta/otel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
199
|
letta/otel/context.py,sha256=GUTxFpWMdCmib1Qy80TpAs0Qb5fNH_m5sCYZ1LN3HmM,789
|
@@ -246,44 +253,44 @@ letta/prompts/system/workflow.txt,sha256=pLOaUDsNFAzLs4xb9JgGtd1w-lrq0Q1E7SpFBtt
|
|
246
253
|
letta/schemas/agent.py,sha256=Goy1S7U8JBjiBtHQ1e0haBJwP4O40MU6mkRhHsxhPU0,29569
|
247
254
|
letta/schemas/agent_file.py,sha256=ueNumYpINPrOBHEeJeSLQdbgs2VKPpqvbfOZA4UGbRI,14884
|
248
255
|
letta/schemas/archive.py,sha256=bZCls6-lMaPKiH-jJBYFEW5saI1Qw2S6mv2wB8YaBUo,1883
|
249
|
-
letta/schemas/block.py,sha256=
|
256
|
+
letta/schemas/block.py,sha256=0vvkfwDq_WRT1Lm2E89FwqKPyZpRho7nA_BOxAZlYbI,7447
|
250
257
|
letta/schemas/embedding_config.py,sha256=ZaD40UeeAX6A9C6bQVhrKwNDiMEuOn7-5uHcj9_T_D0,3740
|
251
258
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
252
|
-
letta/schemas/enums.py,sha256=
|
259
|
+
letta/schemas/enums.py,sha256=8qVSD2La97deCTwJzfBzbANDWKk_-uB2LiJRbFWyreg,4690
|
253
260
|
letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
|
254
261
|
letta/schemas/file.py,sha256=78aTJuYqhhTu95hKFmcJmCa5_wJMZ521aiRzPM2plAM,6242
|
255
262
|
letta/schemas/folder.py,sha256=OpTj9idfGx6CEKDySeDEu3ZNDYjl8jJ02CH96RWPAVk,3309
|
256
|
-
letta/schemas/group.py,sha256=
|
263
|
+
letta/schemas/group.py,sha256=X4ioNEUraBa_pGN1bNBNugkQieGMLvh6rXisFgcHwoo,8663
|
257
264
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
258
265
|
letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
|
259
266
|
letta/schemas/job.py,sha256=Qj22obbFzJBG3tikHZlxrTnLbjzz-2sxsfxGAlPBIZM,4528
|
260
267
|
letta/schemas/letta_base.py,sha256=LhVKaSAUr7HzrvuEJE_1ZKJMe-nJKoYR-ZgLe1IUTpY,4020
|
261
|
-
letta/schemas/letta_message.py,sha256=
|
268
|
+
letta/schemas/letta_message.py,sha256=RZiWiqan_fxJBjoSi8JpSMjdrvlxEEF4jmq-HGBCMtw,18021
|
262
269
|
letta/schemas/letta_message_content.py,sha256=7FuholmKauP5Z-FJdsCH_-4IUGl_8jVqi5IQ0rLHhds,9820
|
263
270
|
letta/schemas/letta_ping.py,sha256=9JphoKhWZ63JqsakIx4aaj8dYMtYVa7HxSkT5cMh5cI,863
|
264
|
-
letta/schemas/letta_request.py,sha256=
|
271
|
+
letta/schemas/letta_request.py,sha256=ll0QTt-tzaJ3zxpPyaifz7mtWcPy6QmvPUDOzngbxfQ,4526
|
265
272
|
letta/schemas/letta_response.py,sha256=e6FcAhRX3heB0FoWAAozB3RJboMwi_JpelTdc5JupVA,8188
|
266
273
|
letta/schemas/letta_stop_reason.py,sha256=n060NkGItD1OarfviHUW9Mp7tv2_6spW1wkPCCzjepU,2271
|
267
274
|
letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQI,3136
|
268
275
|
letta/schemas/llm_config.py,sha256=8nyi9r3o3feh_hUy6pdRWp3E6M612xZhvV3gkFB4aqE,13642
|
269
276
|
letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
|
270
|
-
letta/schemas/mcp.py,sha256=
|
277
|
+
letta/schemas/mcp.py,sha256=JMz-e2qlttNIgICJHm6Q_Pu908i41060EBQc6MGKIDM,8985
|
271
278
|
letta/schemas/memory.py,sha256=MH5Cha-HtezSWg3W7ij0fBOxvCERnu59h-sE8lyRGH4,15010
|
272
|
-
letta/schemas/message.py,sha256=
|
279
|
+
letta/schemas/message.py,sha256=zgDFz87xBRnkGFCp4xqpi4CdRysiAOWRRs10Ddlh0ew,55855
|
273
280
|
letta/schemas/npm_requirement.py,sha256=HkvBF7KjHUH-MG-RAEYJHO2MLRS2rxFUcmbpbZVznLk,457
|
274
281
|
letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
|
275
282
|
letta/schemas/passage.py,sha256=_bO19zOIQtQ3F3VqDSgIJqh15V0IIrJ_KdlbCt6-4D0,3940
|
276
283
|
letta/schemas/pip_requirement.py,sha256=OgcEPFjXyByTkhW30mQCM-CoU3C0V23opXmdcBV0rrw,488
|
277
284
|
letta/schemas/prompt.py,sha256=BRTY-JiKSKdFVPa6rrDHDe7v4sg1qeF-k3w3JKRMTxU,363
|
278
285
|
letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
|
279
|
-
letta/schemas/providers.py,sha256=
|
286
|
+
letta/schemas/providers.py,sha256=oHDHP3wUVPe3S2RfefUcsgE2DFCnkMFXx75FE7h0Pzw,69393
|
280
287
|
letta/schemas/response_format.py,sha256=b2onyfSDCxnNkSHd4NsfJg_4ni5qBIK_F6zeJoMvjq0,2131
|
281
288
|
letta/schemas/run.py,sha256=1lVOWlHVbk9MYIOiIrE1gCoQvBhErKo7UMSeWyMExbw,2089
|
282
289
|
letta/schemas/sandbox_config.py,sha256=iw3-QS7PNy649tdynTJUxBbaruprykYAuGO6q28w-gU,5974
|
283
|
-
letta/schemas/source.py,sha256=
|
290
|
+
letta/schemas/source.py,sha256=Uxsm8-XA3vuIt5Ihu_l2Aau7quuqmyIDg7qIryklUqY,3565
|
284
291
|
letta/schemas/source_metadata.py,sha256=_dGjuXhGcVMlc53ja9yuk16Uj64ggEzilRDgmkqYfNs,1334
|
285
292
|
letta/schemas/step.py,sha256=SKJfcaaqdaGZtaqsfzwAx_O_maDzsxYJYUtSBUZxSfE,3456
|
286
|
-
letta/schemas/step_metrics.py,sha256=
|
293
|
+
letta/schemas/step_metrics.py,sha256=u9dGPbc0AkXsMaqU09m4XtAu8EDjprakDBnISAFWseU,1606
|
287
294
|
letta/schemas/tool.py,sha256=Yxj36CKnBDtKaidSoTUZvd7GuUcciDGHaCjAhk6DcdA,15099
|
288
295
|
letta/schemas/tool_execution_result.py,sha256=17tMU01ACtpA41MTeWPqnF0uFpOYeaprORgGAd4XztA,895
|
289
296
|
letta/schemas/tool_rule.py,sha256=qFY1SDkozIdEr2FuVFiRJEFYPdWbzIMsXr9_OSy8fBc,13048
|
@@ -307,7 +314,7 @@ letta/schemas/providers/groq.py,sha256=AquJQH-Y5-s75Nj2_X7xavuWUu5F2bSvHjAZ1Gfpe
|
|
307
314
|
letta/schemas/providers/letta.py,sha256=tsVg4dE7r33TDkK6BCbC9lvnjk35uf32mecmuY3589E,1580
|
308
315
|
letta/schemas/providers/lmstudio.py,sha256=Hi8Nir96B5FCQ8cVT-mWl7nLX0Z2-RIxUANAqRGG-zo,4323
|
309
316
|
letta/schemas/providers/mistral.py,sha256=EjFF6YcfN5jBjCfnZw3ECv_3qYuG0HVb7B0VoYk-jKU,1866
|
310
|
-
letta/schemas/providers/ollama.py,sha256=
|
317
|
+
letta/schemas/providers/ollama.py,sha256=yTawbJBVkPAH7RNkTqHtZ8g4AscVkN_wR8EbZspO36k,5970
|
311
318
|
letta/schemas/providers/openai.py,sha256=XcuGB-80qpEzMKfPNU6AEtlhNkrdWTGBQiBqBx0qteY,11145
|
312
319
|
letta/schemas/providers/together.py,sha256=jsaziBEfVKg_70c3-m0FdYYBnbYpYkCEPVDKBZsvMWs,3852
|
313
320
|
letta/schemas/providers/vllm.py,sha256=CwM260cxWLkviVzY4wwkw4NmDAK69fv531AofRGa9JA,2480
|
@@ -326,18 +333,18 @@ letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
333
|
letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
|
327
334
|
letta/server/db.py,sha256=AULPiuS0b_EmNsQIS9b0yy3WBTpJv41vqF6Hxq9VXYg,17854
|
328
335
|
letta/server/generate_openapi_schema.sh,sha256=14Q6r0fbNNVVdf4X3Z-H0ZtyrVw5zYLzL5Doom3kM9k,351
|
329
|
-
letta/server/server.py,sha256=
|
336
|
+
letta/server/server.py,sha256=KFFbyl7Djn8CS0aPxz3jL8RwmXPr9nKY3wDu3ymUWjI,109265
|
330
337
|
letta/server/startup.sh,sha256=z-Fea-7LiuS_aG1tJqS8JAsDQaamwC_kuDhv9D3PPPY,2698
|
331
338
|
letta/server/utils.py,sha256=rRvW6L1lzau4u9boamiyZH54lf5tQ91ypXzUW9cfSPA,1667
|
332
339
|
letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
333
340
|
letta/server/rest_api/app.py,sha256=W3lCWe2iGumNIAyuDyH2sNO1EwGKqh7iSo82NXCXrVw,19270
|
334
341
|
letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
|
335
342
|
letta/server/rest_api/chat_completions_interface.py,sha256=-7wO7pNBWXMqblVkJpuZ8JPJ-LjudLTtT6BJu-q_XAM,11138
|
336
|
-
letta/server/rest_api/interface.py,sha256=
|
337
|
-
letta/server/rest_api/json_parser.py,sha256=
|
338
|
-
letta/server/rest_api/redis_stream_manager.py,sha256=
|
343
|
+
letta/server/rest_api/interface.py,sha256=X5NZ8oerDcipG9y1AfD92zJ_2TgVMO4eJ42RP82GFF8,70952
|
344
|
+
letta/server/rest_api/json_parser.py,sha256=yoakaCkSMdf0Y_pyILoFKZlvzXeqF-E1KNeHzatLMDc,9157
|
345
|
+
letta/server/rest_api/redis_stream_manager.py,sha256=YR9daW5kG-s31-lyg4YVPU8lClS6UG7zuzZWKVUXBQg,10179
|
339
346
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
340
|
-
letta/server/rest_api/streaming_response.py,sha256=
|
347
|
+
letta/server/rest_api/streaming_response.py,sha256=wfhby6skucjGtw9d9pcfa856lI1r6JKaosCYbutKD2k,14458
|
341
348
|
letta/server/rest_api/utils.py,sha256=IT3RnZJWNIaTdFEEyveZb47o9PIzDT_2pIgpPBVN7iU,19326
|
342
349
|
letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
343
350
|
letta/server/rest_api/auth/index.py,sha256=oaWNZREyuTyldHBx0vQYlqtePruL21H1atZj_TO_nyg,1377
|
@@ -346,28 +353,28 @@ letta/server/rest_api/middleware/check_password.py,sha256=LKR_rlhzZ-93o0FpkwDn8v
|
|
346
353
|
letta/server/rest_api/middleware/profiler_context.py,sha256=MbOFOXhkOCuq6vlOiv0DGgmlLVKxC-9tRZ0OTOn_0GA,859
|
347
354
|
letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
348
355
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
349
|
-
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=
|
350
|
-
letta/server/rest_api/routers/v1/__init__.py,sha256=
|
351
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
352
|
-
letta/server/rest_api/routers/v1/blocks.py,sha256=
|
356
|
+
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=ohM1i8BsNxTiw8duuRT5X_0tSUzBwctQM4fJ5DXURic,5157
|
357
|
+
letta/server/rest_api/routers/v1/__init__.py,sha256=9MnEA7CgtIxyU_dDNG0jm-Ziqu1somBml-e5gKjgd9I,1997
|
358
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=VQyGsi6Ci7Ili8rSoKnwY9RZYBcSXzcj7lnpz4OopSk,75580
|
359
|
+
letta/server/rest_api/routers/v1/blocks.py,sha256=ykI77xnmIxPLqdAy5kzGyGw0w0ZRyVXn-O5Xcdj6-70,7690
|
353
360
|
letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
|
354
|
-
letta/server/rest_api/routers/v1/folders.py,sha256
|
355
|
-
letta/server/rest_api/routers/v1/groups.py,sha256=
|
361
|
+
letta/server/rest_api/routers/v1/folders.py,sha256=8Yb-bw2JdXBxMfrJNIZQk9_FKN2fet9Ccp8T83_c2sc,23539
|
362
|
+
letta/server/rest_api/routers/v1/groups.py,sha256=PlCKfG1ZUubg-bNVRBmqJNBMvvZtHDvT50LUKKd0w9I,11466
|
356
363
|
letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
|
357
364
|
letta/server/rest_api/routers/v1/identities.py,sha256=KUfw6avQIVHNw2lWz4pXOyTOPVy1g19CJGG-zayORl8,7858
|
358
|
-
letta/server/rest_api/routers/v1/internal_templates.py,sha256=
|
365
|
+
letta/server/rest_api/routers/v1/internal_templates.py,sha256=wY7tUmF7kZEVnjBVsw3_Tez4U2c8SABDJ2vplsKxhzM,11211
|
359
366
|
letta/server/rest_api/routers/v1/jobs.py,sha256=ZcP_cqxgixCEYNtKVMqN1FwErNY-945h7XZhQV4vcEE,4933
|
360
367
|
letta/server/rest_api/routers/v1/llms.py,sha256=0VJuuGW9_ta0cBnSDtXd3Ngw7GjsqEN2NBf5U3b6M3I,1920
|
361
|
-
letta/server/rest_api/routers/v1/messages.py,sha256=
|
368
|
+
letta/server/rest_api/routers/v1/messages.py,sha256=J4Sbn8oMX24_OoBpHFLpcJi7vgJxeihmu36EgcPmfjk,7662
|
362
369
|
letta/server/rest_api/routers/v1/organizations.py,sha256=OnG2vMDZEmN4eEvj24CPwiV76ImHQuHi2ojrgwJnw7I,2925
|
363
370
|
letta/server/rest_api/routers/v1/providers.py,sha256=rypNWQ1VMjmZJYd48uvNGJsE2N22jDTxn89qvbDaOMs,4765
|
364
|
-
letta/server/rest_api/routers/v1/runs.py,sha256=
|
371
|
+
letta/server/rest_api/routers/v1/runs.py,sha256=WnYwoFNjHNZicTnCkvoXCxl0XiyVAEvF70TTaMCBhPw,12982
|
365
372
|
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=f0xEOwR3PXqCS2HOjEv7UKfMWTwEaTHx105HW_X-LI4,8852
|
366
|
-
letta/server/rest_api/routers/v1/sources.py,sha256=
|
373
|
+
letta/server/rest_api/routers/v1/sources.py,sha256=nXZxtHi40281VltWmx1RwGBbau_00UpzDS6teTLvt2w,22679
|
367
374
|
letta/server/rest_api/routers/v1/steps.py,sha256=bTzfz1GR3VEZdJRYUGiSr6ZLd12i5faPsf3oAqu1eMk,5570
|
368
375
|
letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
|
369
376
|
letta/server/rest_api/routers/v1/telemetry.py,sha256=eSTg7mWbuwPb2OTHQxwRM0EUEl49wHzNB6i1xJtH8BQ,1036
|
370
|
-
letta/server/rest_api/routers/v1/tools.py,sha256=
|
377
|
+
letta/server/rest_api/routers/v1/tools.py,sha256=aYp__U2PgTCpL3eypYUJ6V5C4iQA6LeFBHTSo8w-WOg,51890
|
371
378
|
letta/server/rest_api/routers/v1/users.py,sha256=J1vaTbS1UrBMgnPya7GdZ2wr3L9XHmkm6qdGY6pWaOI,2366
|
372
379
|
letta/server/rest_api/routers/v1/voice.py,sha256=ghMBp5Uovbf0-3nN6d9P5kpl1hHACLRMhIDGQp96G9Q,1986
|
373
380
|
letta/server/static_files/favicon.ico,sha256=DezhLdFSbM8o81wCOZcV3riq7tFUOGQD4h6-vr-HuU0,342
|
@@ -382,24 +389,24 @@ letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etz
|
|
382
389
|
letta/server/ws_api/server.py,sha256=_16TQafm509rqRztZYqo0HKKZoe8ccBrNftd_kbIJTE,5833
|
383
390
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
384
391
|
letta/services/agent_file_manager.py,sha256=bgYTyQA90Iqo3W-LprPtyyOKf2itoqivcRhh4EOUXss,30847
|
385
|
-
letta/services/agent_manager.py,sha256=
|
386
|
-
letta/services/agent_serialization_manager.py,sha256=
|
387
|
-
letta/services/archive_manager.py,sha256=
|
388
|
-
letta/services/block_manager.py,sha256=
|
392
|
+
letta/services/agent_manager.py,sha256=KaJRTWwvA1SpfKQFPPVCeYxIOKwpKmLMioeyHuGw63Y,168884
|
393
|
+
letta/services/agent_serialization_manager.py,sha256=lWXTzYItqVxJMyy9ZYlcCDQwC3ZKk9XPCHvBkoVuszA,46388
|
394
|
+
letta/services/archive_manager.py,sha256=P10BjZ2PxLoIkCwJ8rx7qLzchNVBsqNG3_KzxTanCLQ,14060
|
395
|
+
letta/services/block_manager.py,sha256=mohj12QqHenSBbBx0Xmry1Rw25Gy5DSljOITzAwqMtw,33683
|
389
396
|
letta/services/file_manager.py,sha256=d4uX8RblmqNGk1MsfeGzQ5uDWKVFP-AH63Jz5xOkj2c,31364
|
390
397
|
letta/services/files_agents_manager.py,sha256=QJrJTgDn3RXUjZIGiIw4GQ5k2iKj-Wvzs-WQetpQ154,30059
|
391
|
-
letta/services/group_manager.py,sha256=
|
398
|
+
letta/services/group_manager.py,sha256=dD4DDHjOptMrtbWqw1ErlhpBqChw2ubLJdILjeLTY8I,29183
|
392
399
|
letta/services/identity_manager.py,sha256=JI9Xc7EsBagSwDS2na4rFNhoO_LuaxlkVO_1oIK_ITQ,11841
|
393
400
|
letta/services/job_manager.py,sha256=31AKBwQWkjOFH2n4Cx3KCv1g_n499C_1VRIVviUGsLI,35312
|
394
401
|
letta/services/llm_batch_manager.py,sha256=iDzLFfmgpQooGY4zpN_w8q1SZ27fr2Cv6Ks3ltZErL8,20929
|
395
|
-
letta/services/mcp_manager.py,sha256=
|
396
|
-
letta/services/message_manager.py,sha256=
|
402
|
+
letta/services/mcp_manager.py,sha256=aenw1-UgjecmQ6BLrTWVvpKJmeFcGslocdhRKT_PqEk,45077
|
403
|
+
letta/services/message_manager.py,sha256=tomsZidPT-I95sJsEsls-vj3qglehV7XNTs-m2zF8Bg,60629
|
397
404
|
letta/services/organization_manager.py,sha256=JMW5oS_sr6vQQ27OgRV3BR1JL0MqyoGUDcpEOs3SLRY,5800
|
398
|
-
letta/services/passage_manager.py,sha256=
|
405
|
+
letta/services/passage_manager.py,sha256=kOQjlJFz7Dy6e0NEECoFHhcH8hPIMNeEHxZ1JJ-R2Cs,52372
|
399
406
|
letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
|
400
407
|
letta/services/provider_manager.py,sha256=vysp_SgJDezn6YymOfTiNVKOF93EK_dLhsM7upzSjrM,10727
|
401
408
|
letta/services/sandbox_config_manager.py,sha256=BwN3bebiFvcliTJpRkbOwGxmV5dUJ8B64kFfXAgAqDw,25989
|
402
|
-
letta/services/source_manager.py,sha256=
|
409
|
+
letta/services/source_manager.py,sha256=mH9l2KJ9R7yG1vdqhltOIVsAajQP4KbueKcB7ZgN0QA,18624
|
403
410
|
letta/services/step_manager.py,sha256=RLDdxyPI0bxlp2CWr1zzGuNbyR6CAttw4wThpOQAQyE,20891
|
404
411
|
letta/services/telemetry_manager.py,sha256=zDdSsRrBYunmlemtUUL1Qh3bcKu5-nhL2n7AlAmVrgs,3297
|
405
412
|
letta/services/tool_manager.py,sha256=zh52n6StaFF5-v6nu0kdNSzJq4du5ACv5iGw5_Y9EDM,43192
|
@@ -408,16 +415,17 @@ letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
408
415
|
letta/services/context_window_calculator/context_window_calculator.py,sha256=Ux1UU_l0Nk08HGUMUUrjbtnm2thVRC9bHE7poo8gb8o,8241
|
409
416
|
letta/services/context_window_calculator/token_counter.py,sha256=Am3ofVdi0_RiJz56b2uqc1Xz_1WglHkiyRwWrXvYrx8,4815
|
410
417
|
letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
411
|
-
letta/services/file_processor/file_processor.py,sha256=
|
418
|
+
letta/services/file_processor/file_processor.py,sha256=VkQDtb79Xlj4bWLbGGG53ZPwaDf55w7t50WhlwNYvfI,15923
|
412
419
|
letta/services/file_processor/file_types.py,sha256=kHe_EWK2k8y_5glVkCkkdZy1BLALyBvtlpZ9V-kiqHE,13070
|
413
420
|
letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
414
421
|
letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
415
422
|
letta/services/file_processor/chunker/line_chunker.py,sha256=AlFgcPIjy2w4ennaQwlYKeKhuvmdpuIqUrENMxp2U7o,7568
|
416
423
|
letta/services/file_processor/chunker/llama_index_chunker.py,sha256=zHjwQUE4QTJonxHpG09sd_0fgt4KTUyjRJawUcGDAyI,7615
|
417
424
|
letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
418
|
-
letta/services/file_processor/embedder/base_embedder.py,sha256=
|
419
|
-
letta/services/file_processor/embedder/openai_embedder.py,sha256=
|
420
|
-
letta/services/file_processor/embedder/pinecone_embedder.py,sha256=
|
425
|
+
letta/services/file_processor/embedder/base_embedder.py,sha256=qqL3pcsWXDN0PzcP5tjjFdqdEQJok_lcFAMNJadeNVE,705
|
426
|
+
letta/services/file_processor/embedder/openai_embedder.py,sha256=8jnBvd-BK2yB4bylLXz4Q0Kn_D2XCdJI10fvxGLUTvk,7737
|
427
|
+
letta/services/file_processor/embedder/pinecone_embedder.py,sha256=W-GFaYLG1J-Z8jGf_IUCBWBpBl6UZED-spnBySsnq7s,3339
|
428
|
+
letta/services/file_processor/embedder/turbopuffer_embedder.py,sha256=LyzgCnKQjqNZ7CTN-RIkKy0DD7tvRYOuL5LUKShwj70,2870
|
421
429
|
letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
422
430
|
letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
|
423
431
|
letta/services/file_processor/parser/markitdown_parser.py,sha256=BpCM82ocDKbNTKhb2Zu3ffYUXR5fqudiUiwxmmUePg4,3715
|
@@ -434,14 +442,14 @@ letta/services/mcp/streamable_http_client.py,sha256=d-5wmrZ7MjLTFbaAUAITEC699TBz
|
|
434
442
|
letta/services/mcp/types.py,sha256=8LYlBwWvdbvfy6ZdXJoin-7QmgmJC7samYXjQZL4KZs,1662
|
435
443
|
letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
436
444
|
letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZVV2r0,279
|
437
|
-
letta/services/summarizer/summarizer.py,sha256=
|
445
|
+
letta/services/summarizer/summarizer.py,sha256=hRGkiPvcX3u5PSOxCrbwL4G1RCSlFaHAaB5FObZCuSY,18977
|
438
446
|
letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
439
447
|
letta/services/tool_executor/builtin_tool_executor.py,sha256=QKPFXbgzYQobqWRuFs9RhVcQ1d53q8-yV_GFdR2IX88,9718
|
440
448
|
letta/services/tool_executor/composio_tool_executor.py,sha256=ia2AA_WDOseR8Ylam-HEayR7OiyfNSb1sSUrjwqlmFM,2308
|
441
|
-
letta/services/tool_executor/core_tool_executor.py,sha256=
|
442
|
-
letta/services/tool_executor/files_tool_executor.py,sha256=
|
449
|
+
letta/services/tool_executor/core_tool_executor.py,sha256=bd9x0M9Ttj3FqoIUU66k2FHa2PVY0OlUHqs1aLZYxFI,22624
|
450
|
+
letta/services/tool_executor/files_tool_executor.py,sha256=HyJ2RXYMVOhvKoLAamgMA2YsgQJmu6CcjioXiaGfAn0,37808
|
443
451
|
letta/services/tool_executor/mcp_tool_executor.py,sha256=2zEXmkKsH-IGbMG2Xw1S9op4eL21g25RA4vGImB29KY,2000
|
444
|
-
letta/services/tool_executor/multi_agent_tool_executor.py,sha256=
|
452
|
+
letta/services/tool_executor/multi_agent_tool_executor.py,sha256=LIg9yh8BlfYokP_29WryLZPPSMqEsJUwc0mZGMlhc00,5724
|
445
453
|
letta/services/tool_executor/sandbox_tool_executor.py,sha256=LamEZUVqsiBfBL9S1uQMXFGQOXqJlXK9ZrfpZBk5jsA,6258
|
446
454
|
letta/services/tool_executor/tool_execution_manager.py,sha256=Jz05CfUJAiVngwLV_qAgY8LwSHZGmp7poRcVJxOJPRE,6950
|
447
455
|
letta/services/tool_executor/tool_execution_sandbox.py,sha256=mDK8ZrtC-Fe8MY9gmhONMsjxiiSCJtL4bTrpECKksgQ,25908
|
@@ -449,12 +457,12 @@ letta/services/tool_executor/tool_executor_base.py,sha256=4b1GU0LZc8iwbM3TisqBVO
|
|
449
457
|
letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
450
458
|
letta/services/tool_sandbox/base.py,sha256=afzDoYo-Jw9shnAEzQubIV6H8Q2kJQ_6elWlQUr-sGY,8120
|
451
459
|
letta/services/tool_sandbox/e2b_sandbox.py,sha256=7h7quhbJRV1eIztZPVPgJLYwgHS3ZiaaMvTPrt01F1U,10294
|
452
|
-
letta/services/tool_sandbox/local_sandbox.py,sha256=
|
460
|
+
letta/services/tool_sandbox/local_sandbox.py,sha256=4DnzszQ0VRIKo9kejfYyp4UTOQW_NTTfebhjeLtqOIs,11992
|
453
461
|
letta/services/tool_sandbox/modal_constants.py,sha256=AaXPxSlCj2BhfY5DGwQvqHXfikpurhV2iFsN7zxM3Is,454
|
454
462
|
letta/services/tool_sandbox/modal_deployment_manager.py,sha256=rNDcaHSC3ALA8gAgwAnMG-sbz67zqm6Oa8lgSku0Ah0,9157
|
455
463
|
letta/services/tool_sandbox/modal_sandbox.py,sha256=bgzcj1ysGiFanr1pYkiWxWd1YjHv9OkXd32iuwDpRA8,17814
|
456
464
|
letta/services/tool_sandbox/modal_sandbox_v2.py,sha256=8GcGG20lirNU33375SFfhecS6EvGlYojjUGzwU34sQ0,18483
|
457
|
-
letta/services/tool_sandbox/modal_version_manager.py,sha256=
|
465
|
+
letta/services/tool_sandbox/modal_version_manager.py,sha256=Xj1xwAjdHq7IafwaKnhzXkWEjxywsm7OrI396Zfo4G4,11485
|
458
466
|
letta/services/tool_sandbox/safe_pickle.py,sha256=p8NJy3zVj-LrvXj8pwJ-SG8r-VhD86NVGWoboaF3ir4,5964
|
459
467
|
letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
460
468
|
letta/templates/sandbox_code_file.py.j2,sha256=eXga5J_04Z8-pGdwfOCDjcRnMceIqcF5ii0rUY3lmq4,2270
|
@@ -462,8 +470,8 @@ letta/templates/sandbox_code_file_async.py.j2,sha256=lb7nh_P2W9VZHzU_9TxSCEMUod7
|
|
462
470
|
letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUIXjgXKiizuc,842
|
463
471
|
letta/templates/template_helper.py,sha256=HkG3zwRc5NVGmSTQu5PUTpz7LevK43bzXVaQuN8urf0,1634
|
464
472
|
letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
|
465
|
-
letta_nightly-0.11.7.
|
466
|
-
letta_nightly-0.11.7.
|
467
|
-
letta_nightly-0.11.7.
|
468
|
-
letta_nightly-0.11.7.
|
469
|
-
letta_nightly-0.11.7.
|
473
|
+
letta_nightly-0.11.7.dev20250911104039.dist-info/METADATA,sha256=toGJ1-WRYUWzjt9UP7FnP49pm3M_vjCliXaUV3yLsw0,24436
|
474
|
+
letta_nightly-0.11.7.dev20250911104039.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
475
|
+
letta_nightly-0.11.7.dev20250911104039.dist-info/entry_points.txt,sha256=m-94Paj-kxiR6Ktu0us0_2qfhn29DzF2oVzqBE6cu8w,41
|
476
|
+
letta_nightly-0.11.7.dev20250911104039.dist-info/licenses/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
477
|
+
letta_nightly-0.11.7.dev20250911104039.dist-info/RECORD,,
|
File without changes
|
File without changes
|