letta-nightly 0.9.1.dev20250731104458__py3-none-any.whl → 0.10.0.dev20250801060805__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/__init__.py +2 -1
- letta/agent.py +1 -1
- letta/agents/base_agent.py +2 -2
- letta/agents/letta_agent.py +22 -8
- letta/agents/letta_agent_batch.py +2 -2
- letta/agents/voice_agent.py +2 -2
- letta/client/client.py +0 -11
- letta/data_sources/redis_client.py +1 -2
- letta/errors.py +11 -0
- letta/functions/function_sets/builtin.py +3 -7
- letta/functions/mcp_client/types.py +107 -1
- letta/helpers/reasoning_helper.py +48 -0
- letta/helpers/tool_execution_helper.py +2 -65
- letta/interfaces/openai_streaming_interface.py +38 -2
- letta/llm_api/anthropic_client.py +1 -5
- letta/llm_api/google_vertex_client.py +1 -1
- letta/llm_api/llm_client.py +1 -1
- letta/llm_api/openai_client.py +2 -0
- letta/llm_api/sample_response_jsons/lmstudio_embedding_list.json +3 -2
- letta/orm/agent.py +5 -0
- letta/orm/enums.py +0 -1
- letta/orm/file.py +0 -1
- letta/orm/files_agents.py +9 -9
- letta/orm/sandbox_config.py +1 -1
- letta/orm/sqlite_functions.py +15 -13
- letta/prompts/system/memgpt_generate_tool.txt +139 -0
- letta/schemas/agent.py +15 -1
- letta/schemas/enums.py +6 -0
- letta/schemas/file.py +3 -3
- letta/schemas/letta_ping.py +28 -0
- letta/schemas/letta_request.py +9 -0
- letta/schemas/letta_stop_reason.py +25 -0
- letta/schemas/llm_config.py +1 -0
- letta/schemas/mcp.py +16 -3
- letta/schemas/memory.py +5 -0
- letta/schemas/providers/lmstudio.py +7 -0
- letta/schemas/providers/ollama.py +11 -8
- letta/schemas/sandbox_config.py +17 -7
- letta/server/rest_api/app.py +2 -0
- letta/server/rest_api/routers/v1/agents.py +93 -30
- letta/server/rest_api/routers/v1/blocks.py +52 -0
- letta/server/rest_api/routers/v1/sandbox_configs.py +2 -1
- letta/server/rest_api/routers/v1/tools.py +43 -101
- letta/server/rest_api/streaming_response.py +121 -9
- letta/server/server.py +6 -10
- letta/services/agent_manager.py +41 -4
- letta/services/block_manager.py +63 -1
- letta/services/file_processor/chunker/line_chunker.py +20 -19
- letta/services/file_processor/file_processor.py +0 -2
- letta/services/file_processor/file_types.py +1 -2
- letta/services/files_agents_manager.py +46 -6
- letta/services/helpers/agent_manager_helper.py +185 -13
- letta/services/job_manager.py +4 -4
- letta/services/mcp/oauth_utils.py +6 -150
- letta/services/mcp_manager.py +120 -2
- letta/services/sandbox_config_manager.py +3 -5
- letta/services/tool_executor/builtin_tool_executor.py +13 -18
- letta/services/tool_executor/files_tool_executor.py +31 -27
- letta/services/tool_executor/mcp_tool_executor.py +10 -1
- letta/services/tool_executor/{tool_executor.py → sandbox_tool_executor.py} +14 -2
- letta/services/tool_executor/tool_execution_manager.py +1 -1
- letta/services/tool_executor/tool_execution_sandbox.py +2 -1
- letta/services/tool_manager.py +59 -21
- letta/services/tool_sandbox/base.py +18 -2
- letta/services/tool_sandbox/e2b_sandbox.py +5 -35
- letta/services/tool_sandbox/local_sandbox.py +5 -22
- letta/services/tool_sandbox/modal_sandbox.py +205 -0
- letta/settings.py +27 -8
- letta/system.py +1 -4
- letta/templates/template_helper.py +5 -0
- letta/utils.py +14 -2
- {letta_nightly-0.9.1.dev20250731104458.dist-info → letta_nightly-0.10.0.dev20250801060805.dist-info}/METADATA +7 -3
- {letta_nightly-0.9.1.dev20250731104458.dist-info → letta_nightly-0.10.0.dev20250801060805.dist-info}/RECORD +76 -73
- letta/orm/__all__.py +0 -15
- {letta_nightly-0.9.1.dev20250731104458.dist-info → letta_nightly-0.10.0.dev20250801060805.dist-info}/LICENSE +0 -0
- {letta_nightly-0.9.1.dev20250731104458.dist-info → letta_nightly-0.10.0.dev20250801060805.dist-info}/WHEEL +0 -0
- {letta_nightly-0.9.1.dev20250731104458.dist-info → letta_nightly-0.10.0.dev20250801060805.dist-info}/entry_points.txt +0 -0
letta/settings.py
CHANGED
@@ -7,21 +7,22 @@ from pydantic import AliasChoices, Field
|
|
7
7
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
8
8
|
|
9
9
|
from letta.local_llm.constants import DEFAULT_WRAPPER_NAME, INNER_THOUGHTS_KWARG
|
10
|
+
from letta.schemas.enums import SandboxType
|
10
11
|
from letta.services.summarizer.enums import SummarizationMode
|
11
12
|
|
12
13
|
|
13
14
|
class ToolSettings(BaseSettings):
|
14
|
-
composio_api_key:
|
15
|
+
composio_api_key: str | None = Field(default=None, description="API key for Composio")
|
15
16
|
|
16
|
-
#
|
17
|
-
e2b_api_key:
|
18
|
-
e2b_sandbox_template_id:
|
17
|
+
# Sandbox Configurations
|
18
|
+
e2b_api_key: str | None = Field(default=None, description="API key for using E2B as a tool sandbox")
|
19
|
+
e2b_sandbox_template_id: str | None = Field(default=None, description="Template ID for E2B Sandbox. Updated Manually.")
|
19
20
|
|
20
|
-
|
21
|
-
tavily_api_key: Optional[str] = None
|
21
|
+
modal_api_key: str | None = Field(default=None, description="API key for using Modal as a tool sandbox")
|
22
22
|
|
23
|
-
#
|
24
|
-
|
23
|
+
# Search Providers
|
24
|
+
tavily_api_key: str | None = Field(default=None, description="API key for using Tavily as a search provider.")
|
25
|
+
firecrawl_api_key: str | None = Field(default=None, description="API key for using Firecrawl as a search provider.")
|
25
26
|
|
26
27
|
# Local Sandbox configurations
|
27
28
|
tool_exec_dir: Optional[str] = None
|
@@ -36,6 +37,15 @@ class ToolSettings(BaseSettings):
|
|
36
37
|
mcp_read_from_config: bool = False # if False, will throw if attempting to read/write from file
|
37
38
|
mcp_disable_stdio: bool = False
|
38
39
|
|
40
|
+
@property
|
41
|
+
def sandbox_type(self) -> SandboxType:
|
42
|
+
if self.e2b_api_key:
|
43
|
+
return SandboxType.E2B
|
44
|
+
elif self.modal_api_key:
|
45
|
+
return SandboxType.MODAL
|
46
|
+
else:
|
47
|
+
return SandboxType.LOCAL
|
48
|
+
|
39
49
|
|
40
50
|
class SummarizerSettings(BaseSettings):
|
41
51
|
model_config = SettingsConfigDict(env_prefix="letta_summarizer_", extra="ignore")
|
@@ -194,6 +204,10 @@ class Settings(BaseSettings):
|
|
194
204
|
debug: Optional[bool] = False
|
195
205
|
cors_origins: Optional[list] = cors_origins
|
196
206
|
|
207
|
+
# SSE Streaming keepalive settings
|
208
|
+
enable_keepalive: bool = Field(True, description="Enable keepalive messages in SSE streams to prevent timeouts")
|
209
|
+
keepalive_interval: float = Field(50.0, description="Seconds between keepalive messages (default: 50)")
|
210
|
+
|
197
211
|
# default handles
|
198
212
|
default_llm_handle: Optional[str] = None
|
199
213
|
default_embedding_handle: Optional[str] = None
|
@@ -278,6 +292,11 @@ class Settings(BaseSettings):
|
|
278
292
|
pinecone_agent_index: Optional[str] = "recall"
|
279
293
|
upsert_pinecone_indices: bool = False
|
280
294
|
|
295
|
+
# For tpuf - currently only for archival memories
|
296
|
+
use_tpuf: bool = False
|
297
|
+
tpuf_api_key: Optional[str] = None
|
298
|
+
tpuf_region: str = "gcp-us-central1.turbopuffer.com"
|
299
|
+
|
281
300
|
# File processing timeout settings
|
282
301
|
file_processing_timeout_minutes: int = 30
|
283
302
|
file_processing_timeout_error_message: str = "File processing timed out after {} minutes. Please try again."
|
letta/system.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import json
|
2
|
-
import uuid
|
3
2
|
import warnings
|
4
3
|
from typing import Optional
|
5
4
|
|
@@ -13,7 +12,7 @@ from .helpers.datetime_helpers import get_local_time
|
|
13
12
|
from .helpers.json_helpers import json_dumps
|
14
13
|
|
15
14
|
|
16
|
-
def get_initial_boot_messages(version, timezone):
|
15
|
+
def get_initial_boot_messages(version, timezone, tool_call_id):
|
17
16
|
if version == "startup":
|
18
17
|
initial_boot_message = INITIAL_BOOT_MESSAGE
|
19
18
|
messages = [
|
@@ -21,7 +20,6 @@ def get_initial_boot_messages(version, timezone):
|
|
21
20
|
]
|
22
21
|
|
23
22
|
elif version == "startup_with_send_message":
|
24
|
-
tool_call_id = str(uuid.uuid4())
|
25
23
|
messages = [
|
26
24
|
# first message includes both inner monologue and function call to send_message
|
27
25
|
{
|
@@ -53,7 +51,6 @@ def get_initial_boot_messages(version, timezone):
|
|
53
51
|
]
|
54
52
|
|
55
53
|
elif version == "startup_with_send_message_gpt35":
|
56
|
-
tool_call_id = str(uuid.uuid4())
|
57
54
|
messages = [
|
58
55
|
# first message includes both inner monologue and function call to send_message
|
59
56
|
{
|
@@ -2,6 +2,8 @@ import os
|
|
2
2
|
|
3
3
|
from jinja2 import Environment, FileSystemLoader, StrictUndefined, Template
|
4
4
|
|
5
|
+
from letta.otel.tracing import trace_method
|
6
|
+
|
5
7
|
TEMPLATE_DIR = os.path.dirname(__file__)
|
6
8
|
|
7
9
|
# Synchronous environment (for backward compatibility)
|
@@ -22,18 +24,21 @@ jinja_async_env = Environment(
|
|
22
24
|
)
|
23
25
|
|
24
26
|
|
27
|
+
@trace_method
|
25
28
|
def render_template(template_name: str, **kwargs):
|
26
29
|
"""Synchronous template rendering function (kept for backward compatibility)"""
|
27
30
|
template = jinja_env.get_template(template_name)
|
28
31
|
return template.render(**kwargs)
|
29
32
|
|
30
33
|
|
34
|
+
@trace_method
|
31
35
|
async def render_template_async(template_name: str, **kwargs):
|
32
36
|
"""Asynchronous template rendering function that doesn't block the event loop"""
|
33
37
|
template = jinja_async_env.get_template(template_name)
|
34
38
|
return await template.render_async(**kwargs)
|
35
39
|
|
36
40
|
|
41
|
+
@trace_method
|
37
42
|
async def render_string_async(template_string: str, **kwargs):
|
38
43
|
"""Asynchronously render a template from a string"""
|
39
44
|
template = Template(template_string, enable_async=True)
|
letta/utils.py
CHANGED
@@ -32,6 +32,7 @@ from letta.constants import (
|
|
32
32
|
DEFAULT_CORE_MEMORY_SOURCE_CHAR_LIMIT,
|
33
33
|
DEFAULT_MAX_FILES_OPEN,
|
34
34
|
ERROR_MESSAGE_PREFIX,
|
35
|
+
FILE_IS_TRUNCATED_WARNING,
|
35
36
|
LETTA_DIR,
|
36
37
|
MAX_FILENAME_LENGTH,
|
37
38
|
TOOL_CALL_ID_MAX_LEN,
|
@@ -417,7 +418,6 @@ NOUN_BANK = [
|
|
417
418
|
"unicorn",
|
418
419
|
"vaccination",
|
419
420
|
"wolverine",
|
420
|
-
"xenophobia",
|
421
421
|
"yam",
|
422
422
|
"zeppelin",
|
423
423
|
"accordion",
|
@@ -1190,7 +1190,7 @@ async def get_latest_alembic_revision() -> str:
|
|
1190
1190
|
return "unknown"
|
1191
1191
|
|
1192
1192
|
except Exception as e:
|
1193
|
-
logger.error(
|
1193
|
+
logger.error("Error getting latest alembic revision: %s", e)
|
1194
1194
|
return "unknown"
|
1195
1195
|
|
1196
1196
|
|
@@ -1223,3 +1223,15 @@ def calculate_file_defaults_based_on_context_window(context_window: Optional[int
|
|
1223
1223
|
return 10, 40_000 # ~100k tokens
|
1224
1224
|
else: # Extremely large models (200K+)
|
1225
1225
|
return 15, 40_000 # ~1505k tokens
|
1226
|
+
|
1227
|
+
|
1228
|
+
def truncate_file_visible_content(visible_content: str, is_open: bool, per_file_view_window_char_limit: int):
|
1229
|
+
visible_content = visible_content if visible_content and is_open else ""
|
1230
|
+
|
1231
|
+
# Truncate content and add warnings here when converting from FileAgent to Block
|
1232
|
+
if len(visible_content) > per_file_view_window_char_limit:
|
1233
|
+
truncated_warning = f"...[TRUNCATED]\n{FILE_IS_TRUNCATED_WARNING}"
|
1234
|
+
visible_content = visible_content[: per_file_view_window_char_limit - len(truncated_warning)]
|
1235
|
+
visible_content += truncated_warning
|
1236
|
+
|
1237
|
+
return visible_content
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: letta-nightly
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10.0.dev20250801060805
|
4
4
|
Summary: Create LLM agents with long-term memory and custom tools
|
5
5
|
License: Apache License
|
6
6
|
Author: Letta Team
|
@@ -47,7 +47,7 @@ Requires-Dist: fastapi (>=0.115.6,<0.116.0) ; extra == "server" or extra == "des
|
|
47
47
|
Requires-Dist: firecrawl-py (>=2.8.0,<3.0.0) ; extra == "external-tools"
|
48
48
|
Requires-Dist: google-cloud-profiler (>=4.1.0,<5.0.0) ; extra == "experimental" or extra == "all"
|
49
49
|
Requires-Dist: google-genai (>=1.15.0,<2.0.0) ; extra == "google"
|
50
|
-
Requires-Dist: granian[reload
|
50
|
+
Requires-Dist: granian[reload] (>=2.3.2,<3.0.0) ; extra == "experimental" or extra == "all"
|
51
51
|
Requires-Dist: grpcio (>=1.68.1,<2.0.0)
|
52
52
|
Requires-Dist: grpcio-tools (>=1.68.1,<2.0.0)
|
53
53
|
Requires-Dist: html2text (>=2020.1.16,<2021.0.0)
|
@@ -66,6 +66,7 @@ Requires-Dist: marshmallow-sqlalchemy (>=1.4.1,<2.0.0)
|
|
66
66
|
Requires-Dist: matplotlib (>=3.10.1,<4.0.0)
|
67
67
|
Requires-Dist: mcp[cli] (>=1.9.4,<2.0.0)
|
68
68
|
Requires-Dist: mistralai (>=1.8.1,<2.0.0)
|
69
|
+
Requires-Dist: modal (>=1.1.0,<2.0.0) ; extra == "cloud-tool-sandbox"
|
69
70
|
Requires-Dist: nltk (>=3.8.1,<4.0.0)
|
70
71
|
Requires-Dist: numpy (>=2.1.0,<3.0.0)
|
71
72
|
Requires-Dist: openai (>=1.60.0,<2.0.0)
|
@@ -74,6 +75,7 @@ Requires-Dist: opentelemetry-exporter-otlp (==1.30.0)
|
|
74
75
|
Requires-Dist: opentelemetry-instrumentation-requests (==0.51b0)
|
75
76
|
Requires-Dist: opentelemetry-instrumentation-sqlalchemy (==0.51b0)
|
76
77
|
Requires-Dist: opentelemetry-sdk (==1.30.0)
|
78
|
+
Requires-Dist: orjson (>=3.11.1,<4.0.0)
|
77
79
|
Requires-Dist: pathvalidate (>=3.2.1,<4.0.0)
|
78
80
|
Requires-Dist: pexpect (>=4.9.0,<5.0.0) ; extra == "dev" or extra == "all"
|
79
81
|
Requires-Dist: pg8000 (>=1.30.3,<2.0.0) ; extra == "postgres" or extra == "all"
|
@@ -101,13 +103,15 @@ Requires-Dist: setuptools (>=70,<71)
|
|
101
103
|
Requires-Dist: sqlalchemy-json (>=0.7.0,<0.8.0)
|
102
104
|
Requires-Dist: sqlalchemy-utils (>=0.41.2,<0.42.0)
|
103
105
|
Requires-Dist: sqlalchemy[asyncio] (>=2.0.41,<3.0.0)
|
106
|
+
Requires-Dist: sqlite-vec (>=0.1.7a2,<0.2.0) ; extra == "desktop"
|
104
107
|
Requires-Dist: sqlmodel (>=0.0.16,<0.0.17)
|
105
108
|
Requires-Dist: structlog (>=25.4.0,<26.0.0)
|
106
109
|
Requires-Dist: tavily-python (>=0.7.2,<0.8.0)
|
107
110
|
Requires-Dist: tqdm (>=4.66.1,<5.0.0)
|
111
|
+
Requires-Dist: turbopuffer (>=0.5.17,<0.6.0) ; extra == "all"
|
108
112
|
Requires-Dist: typer (>=0.15.2,<0.16.0)
|
109
113
|
Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server" or extra == "desktop" or extra == "all"
|
110
|
-
Requires-Dist: uvloop (>=0.21.0,<0.22.0) ; extra == "experimental" or extra == "all"
|
114
|
+
Requires-Dist: uvloop (>=0.21.0,<0.22.0) ; (sys_platform != "win32") and (extra == "experimental" or extra == "all")
|
111
115
|
Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "external-tools" or extra == "tests" or extra == "desktop" or extra == "all"
|
112
116
|
Description-Content-Type: text/markdown
|
113
117
|
|
@@ -1,19 +1,19 @@
|
|
1
|
-
letta/__init__.py,sha256=
|
2
|
-
letta/agent.py,sha256=
|
1
|
+
letta/__init__.py,sha256=1aujGz0RfVZG02Tnl4ffxxrCFnguHNJlBlJ_bqJEYhA,1382
|
2
|
+
letta/agent.py,sha256=kd0IXIkeeHzh_dcufGKXjYvfjB0dyDRBZhOn7a68s08,89368
|
3
3
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
letta/agents/base_agent.py,sha256=
|
4
|
+
letta/agents/base_agent.py,sha256=tTZ2FHTYOkSS2xu_oxeA4_ucS97F_Yo8wOtTW8Ks_TA,7928
|
5
5
|
letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
|
6
6
|
letta/agents/ephemeral_summary_agent.py,sha256=tOldA_daa_PduTJ2RA7fAo9Rv6sUb-C_9dJaD6iujS4,4454
|
7
7
|
letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
|
8
8
|
letta/agents/helpers.py,sha256=9skIeui2yF-5DH9P3bCK1pcegk4nVZAtKMVaDqdQExo,10021
|
9
|
-
letta/agents/letta_agent.py,sha256=
|
10
|
-
letta/agents/letta_agent_batch.py,sha256=
|
11
|
-
letta/agents/voice_agent.py,sha256=
|
9
|
+
letta/agents/letta_agent.py,sha256=xHP6I2ru17DEmoVY4SnV3g6DwjArPsRXgfFQcOXRSUo,73462
|
10
|
+
letta/agents/letta_agent_batch.py,sha256=GVJm9FYvGUi4F9Ir5rG01LrellyxdB-kd3A8LA2BgwM,28025
|
11
|
+
letta/agents/voice_agent.py,sha256=7B2J8E4Wrj8tkkOQXPUc1nl_s291fk5SeqbO3briHzk,23352
|
12
12
|
letta/agents/voice_sleeptime_agent.py,sha256=ByRRoH115SaDr0ORMimQdYBWdz6c2RlFWQjVrFiGniQ,8743
|
13
13
|
letta/cli/cli.py,sha256=tKtghlX36Rp0_HbkMosvlAapL07JXhA0vKLGTNKnxSQ,1615
|
14
14
|
letta/cli/cli_load.py,sha256=paAyDq6e-8D1ZWo8JvXIiA1N7FeKcQMSWgcr2vU_1Gs,319
|
15
15
|
letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
letta/client/client.py,sha256=
|
16
|
+
letta/client/client.py,sha256=5AgLHrFIaPBUVIm42Sae1rvqiroMHpqhp7NBvTnzEUc,84450
|
17
17
|
letta/client/streaming.py,sha256=UsDS_tDTsA3HgYryIDvGGmx_dWfnfQwtmEwLi4Z89Ik,4701
|
18
18
|
letta/client/utils.py,sha256=VCGV-op5ZSmurd4yw7Vhf93XDQ0BkyBT8qsuV7EqfiU,2859
|
19
19
|
letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
|
@@ -21,15 +21,15 @@ letta/constants.py,sha256=D_rczuQLn8lAoVLhYpwFM2hhrc3RTKes4NBIZh8ynV0,15183
|
|
21
21
|
letta/data_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
letta/data_sources/connectors.py,sha256=V8mUgE3V6CX-CcOyvkPSQ_ZWP2VtuqgTEXkCN1j0p68,7920
|
23
23
|
letta/data_sources/connectors_helper.py,sha256=oQpVlc-BjSz9sTZ7sp4PsJSXJbBKpZPi3Dam03CURTQ,3376
|
24
|
-
letta/data_sources/redis_client.py,sha256=
|
24
|
+
letta/data_sources/redis_client.py,sha256=Lz9hjJL9S7yd_qsvbuwqrGL3GwZe-qOc0uZm9FqNm4M,10688
|
25
25
|
letta/embeddings.py,sha256=zh_yQCXNhmzIKAwLCXDpACqFiCg4WC9m2HwJz1U8TN8,10526
|
26
|
-
letta/errors.py,sha256=
|
26
|
+
letta/errors.py,sha256=DiskTVZiSZ4jbjEBYw7TDvuslnYhcXSXX2LUzmMbydo,7632
|
27
27
|
letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
28
|
letta/functions/ast_parsers.py,sha256=0dXAN4qx3pWL_Y0aoEkaBpMKwI-kpoLEJftjW3v2I4E,5031
|
29
29
|
letta/functions/async_composio_toolset.py,sha256=IuhZTVghPDXRsehOOZsEEiJGYyjWjDTQc2xrjTg0yBo,4786
|
30
30
|
letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2i8XP_8,3593
|
31
31
|
letta/functions/function_sets/base.py,sha256=jM4bsghPzPnvw2MkbPmvYRSQYsog3K5NSbo0Y0R_6sM,16113
|
32
|
-
letta/functions/function_sets/builtin.py,sha256=
|
32
|
+
letta/functions/function_sets/builtin.py,sha256=UR54nwIXZl4NkF9c_IMpTxf2e9yPO_LGZ-joIeeI9TI,2009
|
33
33
|
letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
|
34
34
|
letta/functions/function_sets/files.py,sha256=swMuHkwQrgYTYXUpHTBiuUB0cPUHMeJ19rzPszWwK9k,3615
|
35
35
|
letta/functions/function_sets/multi_agent.py,sha256=Vze76mj0YGZQYmWEzknnf3vEf-O7gcCUPQead7HH3FQ,7045
|
@@ -42,7 +42,7 @@ letta/functions/mcp_client/base_client.py,sha256=yfpJyPpKxbA9Q_LfLDNOIL1EqwHi21L
|
|
42
42
|
letta/functions/mcp_client/exceptions.py,sha256=IE5SLCuMK7hK9V1QsJafPo6u0S0OwqRvMx2NcsE3g3c,313
|
43
43
|
letta/functions/mcp_client/sse_client.py,sha256=QDC29Re2mdGji77YrUk7JXfTVJeS6039oeeh3y6A_7g,2292
|
44
44
|
letta/functions/mcp_client/stdio_client.py,sha256=-SymmkO_KNFZUP5e5mhcidpyyXBv6Xh72yUiMnv_bFw,4709
|
45
|
-
letta/functions/mcp_client/types.py,sha256=
|
45
|
+
letta/functions/mcp_client/types.py,sha256=LCE-M0OrnfdLS6nrCHGRYgjUTzv2kp_tgR6ORs80eF8,10418
|
46
46
|
letta/functions/prompts.py,sha256=jNl83xjNpoSs8KzGtuc6jzN8jp_T4BC_5f4FMJ88_K0,1145
|
47
47
|
letta/functions/schema_generator.py,sha256=PMk3xO478wLqZiP7ZYLcrsBeQAF38RJ6dZhN7gwAQYo,28215
|
48
48
|
letta/functions/types.py,sha256=XzUVHbS72bdKhviFcSZZXq_f9IFR5eOD-cVIcwqANaY,730
|
@@ -60,8 +60,9 @@ letta/helpers/decorators.py,sha256=KbYLW0RdTnBaXlXFq-Dw3G-PNTGKywfFLMcEOYHLcPA,5
|
|
60
60
|
letta/helpers/json_helpers.py,sha256=xYfB0T-bx0G1VJDdywUAV3Xh6WJ8MyjkDceAtk9c1xs,666
|
61
61
|
letta/helpers/message_helper.py,sha256=Xzf_VCMAXT0Ys8LVUh1ySVtgJwabSQYksOdPr7P4EJU,3549
|
62
62
|
letta/helpers/pinecone_utils.py,sha256=9dKkHdNif6JNDYk9KPiil6gvbKr0Q69hpxcCg9YJyhE,14723
|
63
|
+
letta/helpers/reasoning_helper.py,sha256=8P5AJo-UFsYhZC3yNx4N-pIkVUsjfz7ZPmydsVKPLN4,1931
|
63
64
|
letta/helpers/singleton.py,sha256=Y4dG_ZBCcrogvl9iZ69bSLq-QltrdP8wHqKkhef8OBI,370
|
64
|
-
letta/helpers/tool_execution_helper.py,sha256=
|
65
|
+
letta/helpers/tool_execution_helper.py,sha256=POyO0pHmmOVQi5yklniii_WFNp81Ow7wqD-lkoQBlfs,4035
|
65
66
|
letta/helpers/tool_rule_solver.py,sha256=tibShbx0M9AeHBjwumWoR4U7JHuWxBBLbUCgHCmfsLs,11186
|
66
67
|
letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
68
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
@@ -70,7 +71,7 @@ letta/interface.py,sha256=4MLY-bRH4lWNW8vL9L5nwu1_Yh_CeV4KVWACNKhkS5U,13023
|
|
70
71
|
letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
72
|
letta/interfaces/anthropic_streaming_interface.py,sha256=8prNzCn3nJD9SOoFlLgXpcgKgf7TEaFCzTMINNVWCQI,24825
|
72
73
|
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=3xHXh8cW79EkiMUTYfvcH_s92nkLjxXfvtVOVC3bfLo,5050
|
73
|
-
letta/interfaces/openai_streaming_interface.py,sha256=
|
74
|
+
letta/interfaces/openai_streaming_interface.py,sha256=PzjDanY44CiehfUmt5WlwYPXf9soGNY5J0g6pHjJHG8,25515
|
74
75
|
letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
|
75
76
|
letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
76
77
|
letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
|
@@ -79,7 +80,7 @@ letta/jobs/scheduler.py,sha256=Ub5VTCA8P5C9Y-0mPK2YIPJSEzKbSd2l5Sp0sOWctD8,8697
|
|
79
80
|
letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
|
80
81
|
letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
82
|
letta/llm_api/anthropic.py,sha256=dkP3hxZXb_Oi0w99acvasrFMxdnwIHImK8O4gI3D8fs,47933
|
82
|
-
letta/llm_api/anthropic_client.py,sha256=
|
83
|
+
letta/llm_api/anthropic_client.py,sha256=ZT060rqSPj4vdb-U0u9AAaSOSNkifyzDb1MsL6RRwug,28938
|
83
84
|
letta/llm_api/aws_bedrock.py,sha256=b5Gj0LH4WrFF7ieo6-xx7Zqa4mB9JDVUF50zP_lODQU,3119
|
84
85
|
letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
|
85
86
|
letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
|
@@ -88,16 +89,16 @@ letta/llm_api/cohere.py,sha256=uoiRdaymqxEu0-rUVKVK5geGfzV0n_fVcZTYsG7kifg,14848
|
|
88
89
|
letta/llm_api/deepseek.py,sha256=pLd2WMKjks1QulnSqy7V5JDk67TTN9dIRaYl5kWamV8,12455
|
89
90
|
letta/llm_api/google_ai_client.py,sha256=JweTUHZXvK6kcZBGXA7XEU53KP4vM7_zdD7AorCtsdI,8166
|
90
91
|
letta/llm_api/google_constants.py,sha256=eOjOv-FImyJ4b4QGIaod-mEROMtrBFz0yhuYHqOEkwY,797
|
91
|
-
letta/llm_api/google_vertex_client.py,sha256=
|
92
|
+
letta/llm_api/google_vertex_client.py,sha256=T1s2xMTZWOTdnYmJJ7LQiZnsChMICoqx3zFsad9E3rM,23241
|
92
93
|
letta/llm_api/helpers.py,sha256=MmNAvqfVyI5IpVRbx4p-TkzXTaz-EFkY6oDf62D2Syo,17578
|
93
94
|
letta/llm_api/llm_api_tools.py,sha256=znSw2eEIvAwPHBMDZN57kGWFjFFodVNrIpZrYEEft-Q,30183
|
94
|
-
letta/llm_api/llm_client.py,sha256=
|
95
|
+
letta/llm_api/llm_client.py,sha256=kTjlhCzefwfRnD0AituXq1tRcQ3WnYwp9YSoNxCW124,2391
|
95
96
|
letta/llm_api/llm_client_base.py,sha256=P678pt6IFDZRJbSkn213trs63k5zdsvdzTw21_iuGlg,8528
|
96
97
|
letta/llm_api/mistral.py,sha256=lNVYLNdULpqjMLX-5Cnw61dXVdh9T5H3Zg4UPhx9zQU,663
|
97
98
|
letta/llm_api/openai.py,sha256=Jam6eWrn2dbIovwdSODLXbyEkMLbhEiOCHWVMrfFLlk,27447
|
98
|
-
letta/llm_api/openai_client.py,sha256=
|
99
|
+
letta/llm_api/openai_client.py,sha256=TZlMXt_DPnoeRJYhXD6-dE88VqwwYo-k3C1gB2tsFbg,20503
|
99
100
|
letta/llm_api/sample_response_jsons/aws_bedrock.json,sha256=RS3VqyxPB9hQQCPm42hWoga0bisKv_0e8ZF-c3Ag1FA,930
|
100
|
-
letta/llm_api/sample_response_jsons/lmstudio_embedding_list.json,sha256=
|
101
|
+
letta/llm_api/sample_response_jsons/lmstudio_embedding_list.json,sha256=qHLtRuO1u7jFcaO0xaIMpRgCe74sSrya67IVPqS66fg,344
|
101
102
|
letta/llm_api/sample_response_jsons/lmstudio_model_list.json,sha256=hrW4RifD5nty3Wx22NZ7GJB74HW4C75fIEaKrVFhwYM,448
|
102
103
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
103
104
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -141,19 +142,18 @@ letta/main.py,sha256=wj4cawl4HP2ok-CqKVvqzSiOMahHC4t8FWxvuKKTWUA,317
|
|
141
142
|
letta/memory.py,sha256=l5iNhLAR_xzgTb0GBlQx4SVgH8kuZh8siJdC_CFPKEs,4278
|
142
143
|
letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
143
144
|
letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
|
144
|
-
letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
|
145
145
|
letta/orm/__init__.py,sha256=DdPkr1TbtZhxLVEPPHfSPDOcFQKDmhhszQcHOXmyloQ,1451
|
146
|
-
letta/orm/agent.py,sha256=
|
146
|
+
letta/orm/agent.py,sha256=7EwLr5HsqCodRHCq3Yiwh0-F_iKP4rUZuHzaEQl21rU,16743
|
147
147
|
letta/orm/agents_tags.py,sha256=-rWR8DoEiHM4yc9vAHgHuvjIwgMXMWzKnTKFlBBu3TQ,1076
|
148
148
|
letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
|
149
149
|
letta/orm/block.py,sha256=x7qqrOupMfU52JngciO6OXEzdWyv4nV0YR4_Mc4t2IE,5903
|
150
150
|
letta/orm/block_history.py,sha256=L8BCcJe9_eMKLPiSxTBzvHdqfHAjJTCePIqkjE0-yP8,2092
|
151
151
|
letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,1128
|
152
152
|
letta/orm/custom_columns.py,sha256=gVq4opV0sIuThphX7z3QdyF8RKbcxUO6IHX2J4al27U,5585
|
153
|
-
letta/orm/enums.py,sha256=
|
153
|
+
letta/orm/enums.py,sha256=CmSvB2z22a3cBRvnbNewLFSluKA3Pg-X0SEhaHZhNBQ,800
|
154
154
|
letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
|
155
|
-
letta/orm/file.py,sha256=
|
156
|
-
letta/orm/files_agents.py,sha256=
|
155
|
+
letta/orm/file.py,sha256=LynuEajZM7QeO4Y_J84iAB9dqXHPCY-xTur0q022n48,5298
|
156
|
+
letta/orm/files_agents.py,sha256=W604OZRfHWMNavSS_XY-1xkSwxwYn7YtPjim1xnPkGk,3875
|
157
157
|
letta/orm/group.py,sha256=MhZs_dYVPpC6jAAPWNPy3Y7XKqsqxs2XoFrwJl5CSKg,2128
|
158
158
|
letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,483
|
159
159
|
letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
|
@@ -173,11 +173,11 @@ letta/orm/passage.py,sha256=z3IU4esAXJ9v01F36CzwAOrmylkgD-7zsYlRhTch9ug,3767
|
|
173
173
|
letta/orm/prompt.py,sha256=NpFPTm3jD8Aewxhlnq8s4eIzANJ3bAEtbq6UmFqyc3U,489
|
174
174
|
letta/orm/provider.py,sha256=JD0kP2qP1WguuwEHqeNzPo_ERm5SSHDVEY7pfuYvQss,1542
|
175
175
|
letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
|
176
|
-
letta/orm/sandbox_config.py,sha256=
|
176
|
+
letta/orm/sandbox_config.py,sha256=8_9OLOT5BaOnLg5VVhXQvGJgGMJAXPkg8Q9MGVw1uqY,4233
|
177
177
|
letta/orm/source.py,sha256=lXuV7kq3xa7YsLQmrGsD3dB7Tp6B3CiCE6YcvJgmZSE,1415
|
178
178
|
letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
|
179
179
|
letta/orm/sqlalchemy_base.py,sha256=mw_leKRvSskRswfiUTYP3Jk9Q7Io9rQJWyVEUGWyTaw,44900
|
180
|
-
letta/orm/sqlite_functions.py,sha256=
|
180
|
+
letta/orm/sqlite_functions.py,sha256=zxGKhdpjHkBzMUM1N-ksp68Y2AvV3BfvbxkyFtI27cg,7254
|
181
181
|
letta/orm/step.py,sha256=Ly7QhFtHjTUNc9HuLOFVJxRNqU3RtHG2J0DLw2T1SXA,3769
|
182
182
|
letta/orm/tool.py,sha256=oTDbvSNNW_jHjYbJqqsLLuXf9uFRTZTZh33TXAcZ898,2839
|
183
183
|
letta/orm/tools_agents.py,sha256=r6t-V21w2_mG8n38zuUb5jOi_3hRxsjgezsLA4sg0m4,626
|
@@ -218,6 +218,7 @@ letta/prompts/system/memgpt_chat_compressed.txt,sha256=_gMDjc8tcigLfJ3fOXryz31_D
|
|
218
218
|
letta/prompts/system/memgpt_chat_fstring.txt,sha256=N6KSRwu-dcnDBLpCeqCdgM9lI0CnR3uIVPFcrCCa0V0,4720
|
219
219
|
letta/prompts/system/memgpt_convo_only.txt,sha256=-x2NDaV_lz5C-sRK1Fo_U_XGW7jtY_br6VBM2NgtM9Y,868
|
220
220
|
letta/prompts/system/memgpt_doc.txt,sha256=AsT55NOORoH-K-p0fxklrDRZ3qHs4MIKMuR-M4SSU4E,4768
|
221
|
+
letta/prompts/system/memgpt_generate_tool.txt,sha256=S09fTYUCoyeRr6r1xXmhGsumDDZOys7YHFpHShEM_w0,6589
|
221
222
|
letta/prompts/system/memgpt_gpt35_extralong.txt,sha256=FheNhYoIzNz6qnJKhVquZVSMj3HduC48reFaX7Pf7ig,5046
|
222
223
|
letta/prompts/system/memgpt_intuitive_knowledge.txt,sha256=sA7c3urYqREVnSBI81nTGImXAekqC0Fxc7RojFqud1g,2966
|
223
224
|
letta/prompts/system/memgpt_memory_only.txt,sha256=p63yl5dRigC9dj1h4g0gRuYmScp1j43efhFnfNxSbUs,2509
|
@@ -236,14 +237,14 @@ letta/prompts/system/voice_chat.txt,sha256=Q_vd2Q08z6qTIVeMML0z9706NG8aAq-scxvi-
|
|
236
237
|
letta/prompts/system/voice_sleeptime.txt,sha256=LPh-XjAthvsdEkXoZ4NTzTUuMbMsMkoDl9ofCUJC7Us,3696
|
237
238
|
letta/prompts/system/workflow.txt,sha256=pLOaUDsNFAzLs4xb9JgGtd1w-lrq0Q1E7SpFBttXYCI,834
|
238
239
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
|
-
letta/schemas/agent.py,sha256=
|
240
|
+
letta/schemas/agent.py,sha256=yqm8hhpVN2n5QVkLJeQ5CpHwE8f7gctzHy2en79Mlr0,28747
|
240
241
|
letta/schemas/agent_file.py,sha256=-avXXLA6g0dknigGHobLaLyjqqwjChM1cd1fRZ1w_Fg,13036
|
241
242
|
letta/schemas/block.py,sha256=M2Azp7hY9KIdvVTnM07-ubpBqgTnIpoP-qCDduuEuDo,6247
|
242
243
|
letta/schemas/embedding_config.py,sha256=BgqSCIIl4kswW3G561VRnf_La0-OMXllddURl0Z-spI,4464
|
243
244
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
244
|
-
letta/schemas/enums.py,sha256=
|
245
|
+
letta/schemas/enums.py,sha256=8zT_0Y5mVQ6Uoizbahq9vKBvmLL4rTfw9oOmvyroS9Y,3958
|
245
246
|
letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
|
246
|
-
letta/schemas/file.py,sha256=
|
247
|
+
letta/schemas/file.py,sha256=kjv_xEuuo8Z5i7dOzugIdlAK_k2xHHLhugDgBq0-8Os,4763
|
247
248
|
letta/schemas/folder.py,sha256=OpTj9idfGx6CEKDySeDEu3ZNDYjl8jJ02CH96RWPAVk,3309
|
248
249
|
letta/schemas/group.py,sha256=qrPad_rjGR81qBgtfJ77kj6IlCRXTXNe6aB0ArEnJMY,6673
|
249
250
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
@@ -252,14 +253,15 @@ letta/schemas/job.py,sha256=68fSqIsVfjW65SLVV9wrp1q_4e5pRxE7R6ifvogJptU,4083
|
|
252
253
|
letta/schemas/letta_base.py,sha256=LhVKaSAUr7HzrvuEJE_1ZKJMe-nJKoYR-ZgLe1IUTpY,4020
|
253
254
|
letta/schemas/letta_message.py,sha256=2FC968X8sZEgX5rbBpRjMzrcafR_aRs_Nl6mowHjXYI,15647
|
254
255
|
letta/schemas/letta_message_content.py,sha256=XsokQDvKCf_PcZKH6G5-B4NELaHVtrhDVjbOMc_osLs,8983
|
255
|
-
letta/schemas/
|
256
|
+
letta/schemas/letta_ping.py,sha256=9JphoKhWZ63JqsakIx4aaj8dYMtYVa7HxSkT5cMh5cI,863
|
257
|
+
letta/schemas/letta_request.py,sha256=GF7tSVjoAXukl1SXN2FBi8ZMaWOVRvuJuXPgEwbV7Hg,2944
|
256
258
|
letta/schemas/letta_response.py,sha256=e6FcAhRX3heB0FoWAAozB3RJboMwi_JpelTdc5JupVA,8188
|
257
|
-
letta/schemas/letta_stop_reason.py,sha256=
|
259
|
+
letta/schemas/letta_stop_reason.py,sha256=4t39UKMMsLuNM-9a0BG7Mi-zZ7YhYLFSEpTWc8_OyrQ,2035
|
258
260
|
letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQI,3136
|
259
|
-
letta/schemas/llm_config.py,sha256=
|
261
|
+
letta/schemas/llm_config.py,sha256=UsiXPbva0CZmYiJ_HCfXX4Fzb6UPRY5AdxyDJW0o8Uc,9113
|
260
262
|
letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
|
261
|
-
letta/schemas/mcp.py,sha256=
|
262
|
-
letta/schemas/memory.py,sha256=
|
263
|
+
letta/schemas/mcp.py,sha256=_FKUSIoTLfx64buKqye-9fPET8-1_e2h9uYByNwTVio,10440
|
264
|
+
letta/schemas/memory.py,sha256=HRaG7hHiFUpHzWN9pH15eTTIYIPynhRQPUBXDc9ps24,13842
|
263
265
|
letta/schemas/message.py,sha256=SWckkSA67fFpM7mnsVvuIFriWaZCcfgQS-97RI2v4yw,54533
|
264
266
|
letta/schemas/openai/chat_completion_request.py,sha256=QKIqH_B1A2logYvVBBkEVhhKe73khv6mZTxCHbGmfvA,4233
|
265
267
|
letta/schemas/openai/chat_completion_response.py,sha256=Hes8D-tl8_I_LClONUNw3NZ_vkvas6d4QfE-7ge1eac,7065
|
@@ -283,9 +285,9 @@ letta/schemas/providers/google_gemini.py,sha256=VnC0rrjnUdUK08VLGhI290p7yDsUnOwD
|
|
283
285
|
letta/schemas/providers/google_vertex.py,sha256=ooKgRXum1NOMGb4cJsOLPlFVw-TwAde9l-20ngEd9h4,2674
|
284
286
|
letta/schemas/providers/groq.py,sha256=AquJQH-Y5-s75Nj2_X7xavuWUu5F2bSvHjAZ1GfpeyQ,1455
|
285
287
|
letta/schemas/providers/letta.py,sha256=DD42qaJoR7YvaWIB0Y1oMFGQgcI3BDe0X6--5DB1px4,1585
|
286
|
-
letta/schemas/providers/lmstudio.py,sha256=
|
288
|
+
letta/schemas/providers/lmstudio.py,sha256=fx1lfLG4K1x6RUeHEXr9pMnQ1IgMpK1XmW_Y23riwgw,4303
|
287
289
|
letta/schemas/providers/mistral.py,sha256=EjFF6YcfN5jBjCfnZw3ECv_3qYuG0HVb7B0VoYk-jKU,1866
|
288
|
-
letta/schemas/providers/ollama.py,sha256=
|
290
|
+
letta/schemas/providers/ollama.py,sha256=IMnlVUrwvJeuIMAgD6buJq5Ccows2R4KZzFJ9QF8VNU,6452
|
289
291
|
letta/schemas/providers/openai.py,sha256=Et2NoOPWQ4xIn_WMP2ingZM_heLFM7SCtY6kHxCi9Tw,11042
|
290
292
|
letta/schemas/providers/together.py,sha256=2zFca6Jy08r1ANrdvtlSIduyDr8ek9Tt1yYiz1S-5g8,3422
|
291
293
|
letta/schemas/providers/vllm.py,sha256=OK98JyUXsI5Ygr1xSG9WDH6JqQXDifVSccdGwRW_gUQ,2482
|
@@ -293,7 +295,7 @@ letta/schemas/providers/xai.py,sha256=KCYqE75msyhxTwy_ZxRU3t46UWCWATE4pSCJmBbf4V
|
|
293
295
|
letta/schemas/providers.py,sha256=FjxKTT2-DFCgJxOsdtkklvHQ78V7atgdTxosxjNrpYc,69394
|
294
296
|
letta/schemas/response_format.py,sha256=pXNsjbtpA3Tf8HsDyIa40CSmoUbVR_7n2WOfQaX4aFs,2204
|
295
297
|
letta/schemas/run.py,sha256=1lVOWlHVbk9MYIOiIrE1gCoQvBhErKo7UMSeWyMExbw,2089
|
296
|
-
letta/schemas/sandbox_config.py,sha256=
|
298
|
+
letta/schemas/sandbox_config.py,sha256=Ch0M_ZMU4pYA6JguKOF2zvir4gmNi1PiTaGOqBi3BSQ,5704
|
297
299
|
letta/schemas/source.py,sha256=6f_f9fnFs78JR5cZqFniCeTT1DYGuMP9QSBBCiC8e4s,3281
|
298
300
|
letta/schemas/source_metadata.py,sha256=_dGjuXhGcVMlc53ja9yuk16Uj64ggEzilRDgmkqYfNs,1334
|
299
301
|
letta/schemas/step.py,sha256=q2wEU_GTNPqhsLe1frLu7WDA4SA5GPVE-9PRIJRFjw4,3039
|
@@ -317,7 +319,7 @@ letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
|
|
317
319
|
letta/server/db.py,sha256=DWIWjGGXYKiryqtyy0zf4P-n5lEMFr9QfvRaKIonHGA,17343
|
318
320
|
letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
|
319
321
|
letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
320
|
-
letta/server/rest_api/app.py,sha256=
|
322
|
+
letta/server/rest_api/app.py,sha256=cLZuGhuD4pfYkgEQcE3kIlcZUtwMXgW4sQwqQw8G0P8,19273
|
321
323
|
letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
324
|
letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
|
323
325
|
letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
|
@@ -331,8 +333,8 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
331
333
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
332
334
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
|
333
335
|
letta/server/rest_api/routers/v1/__init__.py,sha256=HlL-WoRMz39NLyHhFugHbdIho66ZVK5VG2YRNYIiMZU,1866
|
334
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
335
|
-
letta/server/rest_api/routers/v1/blocks.py,sha256=
|
336
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=JIxhAsX0mq1i-0DjvJiQxCxx16elmGdiT7ckGlRAFgo,64518
|
337
|
+
letta/server/rest_api/routers/v1/blocks.py,sha256=jICprv_qKlS1H9xOwzXVnGG41l9D9WR6RpKPAKljrhk,7459
|
336
338
|
letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
|
337
339
|
letta/server/rest_api/routers/v1/folders.py,sha256=ikC1oYkWZXafDlFDv1hOkuGkOnUCAU3XqNmZG6PsqS4,21646
|
338
340
|
letta/server/rest_api/routers/v1/groups.py,sha256=M67QsD9kx3RhMfwpvXoBcujUwKVXJuXsV6nMUUxgtdc,10978
|
@@ -344,18 +346,18 @@ letta/server/rest_api/routers/v1/messages.py,sha256=EBCxkt44r9uhw9GIkN5v6Rc1R_xG
|
|
344
346
|
letta/server/rest_api/routers/v1/organizations.py,sha256=OnG2vMDZEmN4eEvj24CPwiV76ImHQuHi2ojrgwJnw7I,2925
|
345
347
|
letta/server/rest_api/routers/v1/providers.py,sha256=Vg3N73OIDSAjFyvV7qfltsnOyNMUU9aqsVZ7z0ifhEs,4365
|
346
348
|
letta/server/rest_api/routers/v1/runs.py,sha256=vieUp7uTvRTdAte0Nw1bqX2APMATZhKTr2R1HVNJT74,8879
|
347
|
-
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=
|
349
|
+
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=tAXoyJLEXTkanBqGO3-d2WIAOgChmeLmJABS3Am9uTM,8941
|
348
350
|
letta/server/rest_api/routers/v1/sources.py,sha256=8hkkTi90felNFix5egZ7Xv9ic-muiyLF0RRjTWk45kQ,23238
|
349
351
|
letta/server/rest_api/routers/v1/steps.py,sha256=N863b0Oyzz64rKHqpyQnXEQBw0SCQ8kAxWaZ7huV1Rk,4925
|
350
352
|
letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
|
351
353
|
letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
|
352
|
-
letta/server/rest_api/routers/v1/tools.py,sha256=
|
354
|
+
letta/server/rest_api/routers/v1/tools.py,sha256=B6XlUdE2EQFSM_JMIeq_Z6Um0Sd2DiwPD-cv2Q9IkDM,39965
|
353
355
|
letta/server/rest_api/routers/v1/users.py,sha256=J1vaTbS1UrBMgnPya7GdZ2wr3L9XHmkm6qdGY6pWaOI,2366
|
354
356
|
letta/server/rest_api/routers/v1/voice.py,sha256=ghMBp5Uovbf0-3nN6d9P5kpl1hHACLRMhIDGQp96G9Q,1986
|
355
357
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
356
|
-
letta/server/rest_api/streaming_response.py,sha256
|
358
|
+
letta/server/rest_api/streaming_response.py,sha256=TzIxkkHQe6kc1wl3JTITuvJiiICNaXDe3gRDXXc2idQ,12243
|
357
359
|
letta/server/rest_api/utils.py,sha256=RbkiTWvcvVTJnJTh_RcPJDfaZUJQuMr7pgyDZxqpi_o,17222
|
358
|
-
letta/server/server.py,sha256=
|
360
|
+
letta/server/server.py,sha256=ksN253xK-FDyUILvXTRdEr67YdsGYArNfnm2YVBTMzo,112224
|
359
361
|
letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
|
360
362
|
letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
|
361
363
|
letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
|
@@ -370,50 +372,50 @@ letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etz
|
|
370
372
|
letta/server/ws_api/server.py,sha256=_16TQafm509rqRztZYqo0HKKZoe8ccBrNftd_kbIJTE,5833
|
371
373
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
372
374
|
letta/services/agent_file_manager.py,sha256=bgYTyQA90Iqo3W-LprPtyyOKf2itoqivcRhh4EOUXss,30847
|
373
|
-
letta/services/agent_manager.py,sha256=
|
375
|
+
letta/services/agent_manager.py,sha256=0rUJayUpqoWS8qkqUz-RTEYX2aiwuXJsKl_WaAXH23I,147636
|
374
376
|
letta/services/agent_serialization_manager.py,sha256=wtT9STO05rdjtafbbO2aXzUdGqt1uuJpfmB2O4_GRVI,36468
|
375
|
-
letta/services/block_manager.py,sha256=
|
377
|
+
letta/services/block_manager.py,sha256=sSbNpsbk62-qBtOmhIp3YlOQKTpWQ3gXlVrFpF1vY50,33491
|
376
378
|
letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
377
379
|
letta/services/context_window_calculator/context_window_calculator.py,sha256=_VluA3OU_E-GuYdPGF6dLSRRCVataStoYNA_BEm72iY,6567
|
378
380
|
letta/services/context_window_calculator/token_counter.py,sha256=QHNeLciQmBDV0pdCawkNaltbTYp2Ju7ZwKpE5y46LDg,4731
|
379
381
|
letta/services/file_manager.py,sha256=6hjBk4ZJJ7emqyswqB3Kn0JQBSzL2aE4Rzj7vyEsXjo,26157
|
380
382
|
letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
383
|
letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
382
|
-
letta/services/file_processor/chunker/line_chunker.py,sha256=
|
384
|
+
letta/services/file_processor/chunker/line_chunker.py,sha256=AlFgcPIjy2w4ennaQwlYKeKhuvmdpuIqUrENMxp2U7o,7568
|
383
385
|
letta/services/file_processor/chunker/llama_index_chunker.py,sha256=zHjwQUE4QTJonxHpG09sd_0fgt4KTUyjRJawUcGDAyI,7615
|
384
386
|
letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
385
387
|
letta/services/file_processor/embedder/base_embedder.py,sha256=cuHF2kAlBFL9Hr63Q5vJQYYrfyDNtm31vYvW5boUQ58,518
|
386
388
|
letta/services/file_processor/embedder/openai_embedder.py,sha256=HPFQ0igTCP4T0eF2sxHNTDDNsdj86fuB8GtlkiezbSE,7565
|
387
389
|
letta/services/file_processor/embedder/pinecone_embedder.py,sha256=e_TQcSKfxS9xJaY6slAUxnD6Hk91kQI2E-bGr41Eb_g,3187
|
388
|
-
letta/services/file_processor/file_processor.py,sha256=
|
389
|
-
letta/services/file_processor/file_types.py,sha256=
|
390
|
+
letta/services/file_processor/file_processor.py,sha256=GRr_sKO44WKQVXcoN0nnN_wZuczQOpop5y0AYiM0cCY,15479
|
391
|
+
letta/services/file_processor/file_types.py,sha256=kHe_EWK2k8y_5glVkCkkdZy1BLALyBvtlpZ9V-kiqHE,13070
|
390
392
|
letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
391
393
|
letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
|
392
394
|
letta/services/file_processor/parser/markitdown_parser.py,sha256=BpCM82ocDKbNTKhb2Zu3ffYUXR5fqudiUiwxmmUePg4,3715
|
393
395
|
letta/services/file_processor/parser/mistral_parser.py,sha256=NmCdVdpAB5f-VjILJp85pz2rSjlghKEg7qKTFzZLhP8,2384
|
394
396
|
letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
|
-
letta/services/files_agents_manager.py,sha256=
|
397
|
+
letta/services/files_agents_manager.py,sha256=lSKiekZuB5fgVvhLxaA2oU1ddv4BWyIl7dDx43esUrQ,27892
|
396
398
|
letta/services/group_manager.py,sha256=2QzL1Hy-j42pRHK8t-nAF1qlXGRSpBQlwWwfU7s4_ow,23688
|
397
|
-
letta/services/helpers/agent_manager_helper.py,sha256=
|
399
|
+
letta/services/helpers/agent_manager_helper.py,sha256=x_TIa9o9M47MHBoZ_L7JDnyQS-wIWpGPtcNP1Qkrhuo,53560
|
398
400
|
letta/services/helpers/tool_execution_helper.py,sha256=45L7woJ98jK5MQAnhE_4NZdCeyOOzC4328FTQPM7iTA,9159
|
399
401
|
letta/services/helpers/tool_parser_helper.py,sha256=_3oAVRVfRaicGpO6qRKAlCAujZw2uBGUclei4FUC6Do,4349
|
400
402
|
letta/services/identity_manager.py,sha256=tI7K1VupongrJRDfFo4F86qcgCGhLmMiIAwTFwt3Syk,11847
|
401
|
-
letta/services/job_manager.py,sha256=
|
403
|
+
letta/services/job_manager.py,sha256=y9HAZj8vE2tlsU6mCMrIRB-77SMOwGXEwfLifuTgPVc,34752
|
402
404
|
letta/services/llm_batch_manager.py,sha256=9jszUj-hqvBf4OQQUNANC0b1xeULWjUXMFVso-eCc9o,20998
|
403
405
|
letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
404
406
|
letta/services/mcp/base_client.py,sha256=1THT7KMtrU7XmmPQguobVBWqDy_QmsdwkAF5Xfm2UOo,4331
|
405
|
-
letta/services/mcp/oauth_utils.py,sha256=
|
407
|
+
letta/services/mcp/oauth_utils.py,sha256=swWsypnbxg58NRNnlCctb-imKedj8GJ-iAuJTHWV-xw,12626
|
406
408
|
letta/services/mcp/sse_client.py,sha256=q1Wkfu2Cqljm11E5rkQ4hc7Ehf9Eaf6rZ5Yw0ROgZXs,1736
|
407
409
|
letta/services/mcp/stdio_client.py,sha256=Z8HEQOGiY1jZFlW_pWbuOn1paYB6XhEH-ANmX55q9FI,1001
|
408
410
|
letta/services/mcp/streamable_http_client.py,sha256=MuYhJt7mi34EVQ4XK_xZOY1GZWBEqfhsq6rXuZxOJx0,3546
|
409
411
|
letta/services/mcp/types.py,sha256=8LYlBwWvdbvfy6ZdXJoin-7QmgmJC7samYXjQZL4KZs,1662
|
410
|
-
letta/services/mcp_manager.py,sha256=
|
412
|
+
letta/services/mcp_manager.py,sha256=SWAAwerDBdLrl8OlsvY-GnPbAOUqxmdVO1PTTGIORUI,34469
|
411
413
|
letta/services/message_manager.py,sha256=_kwN9ZRRbZXX3yAiTSty9Eiybl10cQNqrt-7284_PPo,31721
|
412
414
|
letta/services/organization_manager.py,sha256=PngZXPuzcCWB1CW7vAST9CsQZLysrpEdwHwhFN4_fhs,5838
|
413
415
|
letta/services/passage_manager.py,sha256=ZOE6MxNJcODdDow6NV-LOwK0cv39j1nXGpdo8TkW7lc,43348
|
414
416
|
letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
|
415
417
|
letta/services/provider_manager.py,sha256=28HDjZflfV0EjhiMRYbY-wmZWRxrxscX-Z1ukZO2pc8,9617
|
416
|
-
letta/services/sandbox_config_manager.py,sha256
|
418
|
+
letta/services/sandbox_config_manager.py,sha256=-smC1Y3bjE6CmCEW3xbbka6AWu_eyayF18nFDHhWUNk,26114
|
417
419
|
letta/services/source_manager.py,sha256=borlj2xDW-1PKbxzEfn1j5oNMLw4bb3ujOyn5UmmCrI,16844
|
418
420
|
letta/services/step_manager.py,sha256=Ts-4vnLJnQ9DPVUgMPEoeNpm_NgckT2Tw_fnOj5gfF4,12169
|
419
421
|
letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -421,35 +423,36 @@ letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZ
|
|
421
423
|
letta/services/summarizer/summarizer.py,sha256=n15G0h7VQrBu-E41YV6riClk5zk7PrCSn2zE9TBODOA,18589
|
422
424
|
letta/services/telemetry_manager.py,sha256=Ur_VPgawiLIwDuxP9NHuz-hq_-S1vKIYThlB-doKZPY,3338
|
423
425
|
letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
424
|
-
letta/services/tool_executor/builtin_tool_executor.py,sha256=
|
426
|
+
letta/services/tool_executor/builtin_tool_executor.py,sha256=KzywqcNO0nLfR5FJ9Aq4a8s-T5H_PEbR6lXFFAEDk8c,17951
|
425
427
|
letta/services/tool_executor/composio_tool_executor.py,sha256=ia2AA_WDOseR8Ylam-HEayR7OiyfNSb1sSUrjwqlmFM,2308
|
426
428
|
letta/services/tool_executor/core_tool_executor.py,sha256=rzglWNjJ5RiQMZLHbjW6dzVrfm_1mzBTgId9cXisWtA,20462
|
427
|
-
letta/services/tool_executor/files_tool_executor.py,sha256=
|
428
|
-
letta/services/tool_executor/mcp_tool_executor.py,sha256=
|
429
|
+
letta/services/tool_executor/files_tool_executor.py,sha256=bhmerU0mgPhorxWNtKCfWrSMK8OnGwGEcmUhRSFJMD8,29731
|
430
|
+
letta/services/tool_executor/mcp_tool_executor.py,sha256=mY2JqB6G4DOvRVWuiL9BbHOfAO2VlLBDmJrjL3TNc4E,1908
|
429
431
|
letta/services/tool_executor/multi_agent_tool_executor.py,sha256=dfaZeldEnzJDg2jGHlGy3YXKjsJpokJW1tvVeoCCDrk,5496
|
430
|
-
letta/services/tool_executor/
|
431
|
-
letta/services/tool_executor/
|
432
|
-
letta/services/tool_executor/
|
432
|
+
letta/services/tool_executor/sandbox_tool_executor.py,sha256=jKexwLYo75ekCBKWpeFAKBdycRqXVfYS4TpAb4Vsauo,5335
|
433
|
+
letta/services/tool_executor/tool_execution_manager.py,sha256=VHHEnOKdcAPZXVj3XZ799TsHII2_9Ae7OnK9vTe_3rI,6407
|
434
|
+
letta/services/tool_executor/tool_execution_sandbox.py,sha256=xVQ8mBRJSAzQdW7iMnZZeMQQhhmLiJclah15odil18U,25573
|
433
435
|
letta/services/tool_executor/tool_executor_base.py,sha256=4b1GU0LZc8iwbM3TisqBVOxsE2H6BiFZ3-r11IrtZ1U,1566
|
434
|
-
letta/services/tool_manager.py,sha256=
|
436
|
+
letta/services/tool_manager.py,sha256=0zxL5Qdc5MCuEnkT1k7NYHm-Sqopbvo30zARJFBN0-Q,31119
|
435
437
|
letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
436
|
-
letta/services/tool_sandbox/base.py,sha256=
|
437
|
-
letta/services/tool_sandbox/e2b_sandbox.py,sha256=
|
438
|
-
letta/services/tool_sandbox/local_sandbox.py,sha256=
|
438
|
+
letta/services/tool_sandbox/base.py,sha256=79PHMDdxN0JtsjVpuR8jJpaLgBsG_-AsfMNrb5cYf5w,8595
|
439
|
+
letta/services/tool_sandbox/e2b_sandbox.py,sha256=EJGVSRhSHS9YMR76rujr3gFcbJ3VldspmEctUtgDl3A,10108
|
440
|
+
letta/services/tool_sandbox/local_sandbox.py,sha256=GEixAGa1EmsFzXwLjNGlCPFFhH83S7lhq3JBRrS80C0,11694
|
441
|
+
letta/services/tool_sandbox/modal_sandbox.py,sha256=A-qiKLbecGUQf5eruTj5TRd0Z-62t9GZrbe-VyasXxw,8724
|
439
442
|
letta/services/user_manager.py,sha256=0OHwODW24VSDwl-TiVMqpAmT7I-Y88CNOn9pUWDfkqc,9979
|
440
|
-
letta/settings.py,sha256=
|
443
|
+
letta/settings.py,sha256=sG2SDJeqhbgSxxvC-ppTwi-qeo-_-B9FlwSl_rRqRjQ,14267
|
441
444
|
letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
|
442
445
|
letta/streaming_utils.py,sha256=g6QPibjT5kwnJ55IwLb7mBQ9EYp61aBWgYeV_IUuTr8,12009
|
443
|
-
letta/system.py,sha256=
|
446
|
+
letta/system.py,sha256=7VkRJO59S7cq8mWbvCrP27YyTg7gVQoVE3IZbL6rRdI,8926
|
444
447
|
letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
445
448
|
letta/templates/sandbox_code_file.py.j2,sha256=-tLXbRjWaXGhj82oVKbRRMOakTRcuy5bwBTa_ak1GjU,2260
|
446
449
|
letta/templates/sandbox_code_file_async.py.j2,sha256=TmhqHHm83jNVPm2azkhxCygEJzMEczzPlDjqrkP5HAs,2742
|
447
450
|
letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUIXjgXKiizuc,842
|
448
|
-
letta/templates/template_helper.py,sha256=
|
451
|
+
letta/templates/template_helper.py,sha256=CzkLA-n_BCyvguP4c0V-O_YjQY1vl059MAQwbjt198s,1364
|
449
452
|
letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
|
450
|
-
letta/utils.py,sha256=
|
451
|
-
letta_nightly-0.
|
452
|
-
letta_nightly-0.
|
453
|
-
letta_nightly-0.
|
454
|
-
letta_nightly-0.
|
455
|
-
letta_nightly-0.
|
453
|
+
letta/utils.py,sha256=Fwwe2imHRamc_kucAATo8NXhwDG5NBoOIYmBaERXUhM,38384
|
454
|
+
letta_nightly-0.10.0.dev20250801060805.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
455
|
+
letta_nightly-0.10.0.dev20250801060805.dist-info/METADATA,sha256=rlg99LKSOUTkrWLPb_DXLp7J1pNARJLJWASpOFzBeH4,23310
|
456
|
+
letta_nightly-0.10.0.dev20250801060805.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
457
|
+
letta_nightly-0.10.0.dev20250801060805.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
458
|
+
letta_nightly-0.10.0.dev20250801060805.dist-info/RECORD,,
|
letta/orm/__all__.py
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
"""__all__ acts as manual import management to avoid collisions and circular imports."""
|
2
|
-
|
3
|
-
# from letta.orm.agent import Agent
|
4
|
-
# from letta.orm.users_agents import UsersAgents
|
5
|
-
# from letta.orm.blocks_agents import BlocksAgents
|
6
|
-
# from letta.orm.token import Token
|
7
|
-
# from letta.orm.source import Source
|
8
|
-
# from letta.orm.document import Document
|
9
|
-
# from letta.orm.passage import Passage
|
10
|
-
# from letta.orm.memory_templates import MemoryTemplate, HumanMemoryTemplate, PersonaMemoryTemplate
|
11
|
-
# from letta.orm.sources_agents import SourcesAgents
|
12
|
-
# from letta.orm.tools_agents import ToolsAgents
|
13
|
-
# from letta.orm.job import Job
|
14
|
-
# from letta.orm.block import Block
|
15
|
-
# from letta.orm.message import Message
|
File without changes
|