letta-nightly 0.6.44.dev20250326104203__py3-none-any.whl → 0.6.45.dev20250327035218__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of letta-nightly might be problematic. Click here for more details.
- letta/__init__.py +1 -1
- letta/agent.py +1 -2
- letta/llm_api/anthropic.py +3 -1
- letta/llm_api/anthropic_client.py +487 -0
- letta/llm_api/llm_api_tools.py +6 -55
- letta/llm_api/llm_client.py +6 -0
- letta/llm_api/llm_client_base.py +2 -0
- letta/schemas/agent.py +8 -0
- letta/schemas/providers.py +3 -3
- letta/serialize_schemas/marshmallow_agent.py +3 -0
- letta/serialize_schemas/marshmallow_block.py +1 -1
- letta/serialize_schemas/marshmallow_tool.py +1 -1
- letta/serialize_schemas/pydantic_agent_schema.py +0 -7
- letta/server/rest_api/routers/v1/agents.py +2 -2
- letta/server/rest_api/routers/v1/blocks.py +1 -1
- letta/server/server.py +21 -5
- {letta_nightly-0.6.44.dev20250326104203.dist-info → letta_nightly-0.6.45.dev20250327035218.dist-info}/METADATA +3 -2
- {letta_nightly-0.6.44.dev20250326104203.dist-info → letta_nightly-0.6.45.dev20250327035218.dist-info}/RECORD +21 -22
- letta/llm_api/google_ai.py +0 -438
- letta/llm_api/google_vertex.py +0 -346
- {letta_nightly-0.6.44.dev20250326104203.dist-info → letta_nightly-0.6.45.dev20250327035218.dist-info}/LICENSE +0 -0
- {letta_nightly-0.6.44.dev20250326104203.dist-info → letta_nightly-0.6.45.dev20250327035218.dist-info}/WHEEL +0 -0
- {letta_nightly-0.6.44.dev20250326104203.dist-info → letta_nightly-0.6.45.dev20250327035218.dist-info}/entry_points.txt +0 -0
letta/schemas/providers.py
CHANGED
|
@@ -198,7 +198,7 @@ class OpenAIProvider(Provider):
|
|
|
198
198
|
EmbeddingConfig(
|
|
199
199
|
embedding_model="text-embedding-ada-002",
|
|
200
200
|
embedding_endpoint_type="openai",
|
|
201
|
-
embedding_endpoint=
|
|
201
|
+
embedding_endpoint=self.base_url,
|
|
202
202
|
embedding_dim=1536,
|
|
203
203
|
embedding_chunk_size=300,
|
|
204
204
|
handle=self.get_handle("text-embedding-ada-002", is_embedding=True),
|
|
@@ -206,7 +206,7 @@ class OpenAIProvider(Provider):
|
|
|
206
206
|
EmbeddingConfig(
|
|
207
207
|
embedding_model="text-embedding-3-small",
|
|
208
208
|
embedding_endpoint_type="openai",
|
|
209
|
-
embedding_endpoint=
|
|
209
|
+
embedding_endpoint=self.base_url,
|
|
210
210
|
embedding_dim=2000,
|
|
211
211
|
embedding_chunk_size=300,
|
|
212
212
|
handle=self.get_handle("text-embedding-3-small", is_embedding=True),
|
|
@@ -214,7 +214,7 @@ class OpenAIProvider(Provider):
|
|
|
214
214
|
EmbeddingConfig(
|
|
215
215
|
embedding_model="text-embedding-3-large",
|
|
216
216
|
embedding_endpoint_type="openai",
|
|
217
|
-
embedding_endpoint=
|
|
217
|
+
embedding_endpoint=self.base_url,
|
|
218
218
|
embedding_dim=2000,
|
|
219
219
|
embedding_chunk_size=300,
|
|
220
220
|
handle=self.get_handle("text-embedding-3-large", is_embedding=True),
|
|
@@ -10,8 +10,6 @@ from letta.schemas.llm_config import LLMConfig
|
|
|
10
10
|
class CoreMemoryBlockSchema(BaseModel):
|
|
11
11
|
created_at: str
|
|
12
12
|
description: Optional[str]
|
|
13
|
-
identities: List[Any]
|
|
14
|
-
is_deleted: bool
|
|
15
13
|
is_template: bool
|
|
16
14
|
label: str
|
|
17
15
|
limit: int
|
|
@@ -42,7 +40,6 @@ class TagSchema(BaseModel):
|
|
|
42
40
|
class ToolEnvVarSchema(BaseModel):
|
|
43
41
|
created_at: str
|
|
44
42
|
description: Optional[str]
|
|
45
|
-
is_deleted: bool
|
|
46
43
|
key: str
|
|
47
44
|
updated_at: str
|
|
48
45
|
value: str
|
|
@@ -76,7 +73,6 @@ class ToolSchema(BaseModel):
|
|
|
76
73
|
args_json_schema: Optional[Any]
|
|
77
74
|
created_at: str
|
|
78
75
|
description: str
|
|
79
|
-
is_deleted: bool
|
|
80
76
|
json_schema: ToolJSONSchema
|
|
81
77
|
name: str
|
|
82
78
|
return_char_limit: int
|
|
@@ -94,9 +90,6 @@ class AgentSchema(BaseModel):
|
|
|
94
90
|
created_at: str
|
|
95
91
|
description: Optional[str]
|
|
96
92
|
embedding_config: EmbeddingConfig
|
|
97
|
-
groups: List[Any]
|
|
98
|
-
identities: List[Any]
|
|
99
|
-
is_deleted: bool
|
|
100
93
|
llm_config: LLMConfig
|
|
101
94
|
message_buffer_autoclear: bool
|
|
102
95
|
messages: List[MessageSchema]
|
|
@@ -215,7 +215,7 @@ def modify_agent(
|
|
|
215
215
|
):
|
|
216
216
|
"""Update an existing agent"""
|
|
217
217
|
actor = server.user_manager.get_user_or_default(user_id=actor_id)
|
|
218
|
-
return server.
|
|
218
|
+
return server.update_agent(agent_id=agent_id, request=update_agent, actor=actor)
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
@router.get("/{agent_id}/tools", response_model=List[Tool], operation_id="list_agent_tools")
|
|
@@ -661,7 +661,7 @@ async def process_message_background(
|
|
|
661
661
|
job_update = JobUpdate(
|
|
662
662
|
status=JobStatus.completed,
|
|
663
663
|
completed_at=datetime.utcnow(),
|
|
664
|
-
metadata={"result": result.model_dump()}, # Store the result in metadata
|
|
664
|
+
metadata={"result": result.model_dump(mode="json")}, # Store the result in metadata
|
|
665
665
|
)
|
|
666
666
|
server.job_manager.update_job_by_id(job_id=job_id, job_update=job_update, actor=actor)
|
|
667
667
|
|
|
@@ -18,7 +18,7 @@ router = APIRouter(prefix="/blocks", tags=["blocks"])
|
|
|
18
18
|
def list_blocks(
|
|
19
19
|
# query parameters
|
|
20
20
|
label: Optional[str] = Query(None, description="Labels to include (e.g. human, persona)"),
|
|
21
|
-
templates_only: bool = Query(
|
|
21
|
+
templates_only: bool = Query(False, description="Whether to include only templates"),
|
|
22
22
|
name: Optional[str] = Query(None, description="Name of the block"),
|
|
23
23
|
identity_id: Optional[str] = Query(None, description="Search agents by identifier id"),
|
|
24
24
|
identifier_keys: Optional[List[str]] = Query(None, description="Search agents by identifier keys"),
|
letta/server/server.py
CHANGED
|
@@ -35,7 +35,7 @@ from letta.log import get_logger
|
|
|
35
35
|
from letta.offline_memory_agent import OfflineMemoryAgent
|
|
36
36
|
from letta.orm.errors import NoResultFound
|
|
37
37
|
from letta.round_robin_multi_agent import RoundRobinMultiAgent
|
|
38
|
-
from letta.schemas.agent import AgentState, AgentType, CreateAgent
|
|
38
|
+
from letta.schemas.agent import AgentState, AgentType, CreateAgent, UpdateAgent
|
|
39
39
|
from letta.schemas.block import BlockUpdate
|
|
40
40
|
from letta.schemas.embedding_config import EmbeddingConfig
|
|
41
41
|
|
|
@@ -166,7 +166,7 @@ class SyncServer(Server):
|
|
|
166
166
|
def __init__(
|
|
167
167
|
self,
|
|
168
168
|
chaining: bool = True,
|
|
169
|
-
max_chaining_steps: Optional[
|
|
169
|
+
max_chaining_steps: Optional[int] = 100,
|
|
170
170
|
default_interface_factory: Callable[[], AgentInterface] = lambda: CLIInterface(),
|
|
171
171
|
init_with_default_org_and_user: bool = True,
|
|
172
172
|
# default_interface: AgentInterface = CLIInterface(),
|
|
@@ -768,6 +768,25 @@ class SyncServer(Server):
|
|
|
768
768
|
actor=actor,
|
|
769
769
|
)
|
|
770
770
|
|
|
771
|
+
def update_agent(
|
|
772
|
+
self,
|
|
773
|
+
agent_id: str,
|
|
774
|
+
request: UpdateAgent,
|
|
775
|
+
actor: User,
|
|
776
|
+
) -> AgentState:
|
|
777
|
+
if request.model is not None:
|
|
778
|
+
request.llm_config = self.get_llm_config_from_handle(handle=request.model)
|
|
779
|
+
|
|
780
|
+
if request.embedding is not None:
|
|
781
|
+
request.embedding_config = self.get_embedding_config_from_handle(handle=request.embedding)
|
|
782
|
+
|
|
783
|
+
# Invoke manager
|
|
784
|
+
return self.agent_manager.update_agent(
|
|
785
|
+
agent_id=agent_id,
|
|
786
|
+
agent_update=request,
|
|
787
|
+
actor=actor,
|
|
788
|
+
)
|
|
789
|
+
|
|
771
790
|
# convert name->id
|
|
772
791
|
|
|
773
792
|
# TODO: These can be moved to agent_manager
|
|
@@ -1041,9 +1060,6 @@ class SyncServer(Server):
|
|
|
1041
1060
|
|
|
1042
1061
|
llm_models.extend(self.get_local_llm_configs())
|
|
1043
1062
|
|
|
1044
|
-
# respect global maximum
|
|
1045
|
-
for llm_config in llm_models:
|
|
1046
|
-
llm_config.context_window = min(llm_config.context_window, model_settings.global_max_context_window_limit)
|
|
1047
1063
|
return llm_models
|
|
1048
1064
|
|
|
1049
1065
|
def list_embedding_models(self) -> List[EmbeddingConfig]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-nightly
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.45.dev20250327035218
|
|
4
4
|
Summary: Create LLM agents with long-term memory and custom tools
|
|
5
5
|
License: Apache License
|
|
6
6
|
Author: Letta Team
|
|
@@ -38,6 +38,7 @@ Requires-Dist: docstring-parser (>=0.16,<0.17)
|
|
|
38
38
|
Requires-Dist: e2b-code-interpreter (>=1.0.3,<2.0.0) ; extra == "cloud-tool-sandbox"
|
|
39
39
|
Requires-Dist: faker (>=36.1.0,<37.0.0)
|
|
40
40
|
Requires-Dist: fastapi (>=0.115.6,<0.116.0) ; extra == "server" or extra == "desktop" or extra == "all"
|
|
41
|
+
Requires-Dist: firecrawl-py (>=1.15.0,<2.0.0)
|
|
41
42
|
Requires-Dist: google-genai (>=1.1.0,<2.0.0) ; extra == "google"
|
|
42
43
|
Requires-Dist: grpcio (>=1.68.1,<2.0.0)
|
|
43
44
|
Requires-Dist: grpcio-tools (>=1.68.1,<2.0.0)
|
|
@@ -69,7 +70,7 @@ Requires-Dist: pre-commit (>=3.5.0,<4.0.0) ; extra == "dev" or extra == "all"
|
|
|
69
70
|
Requires-Dist: prettytable (>=3.9.0,<4.0.0)
|
|
70
71
|
Requires-Dist: psycopg2 (>=2.9.10,<3.0.0) ; extra == "postgres" or extra == "desktop" or extra == "all"
|
|
71
72
|
Requires-Dist: psycopg2-binary (>=2.9.10,<3.0.0) ; extra == "postgres" or extra == "desktop" or extra == "all"
|
|
72
|
-
Requires-Dist: pydantic (>=2.
|
|
73
|
+
Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
|
73
74
|
Requires-Dist: pydantic-settings (>=2.2.1,<3.0.0)
|
|
74
75
|
Requires-Dist: pyhumps (>=3.8.0,<4.0.0)
|
|
75
76
|
Requires-Dist: pyright (>=1.1.347,<2.0.0) ; extra == "dev" or extra == "desktop" or extra == "all"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
letta/__init__.py,sha256=
|
|
1
|
+
letta/__init__.py,sha256=7IYWU4LNHVqOn6H4ogs5GfY_j3BPuppJsLl5LvXPsgk,918
|
|
2
2
|
letta/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
|
|
3
|
-
letta/agent.py,sha256=
|
|
3
|
+
letta/agent.py,sha256=WnedC2HfJs2VAJ1i-AIb5wAOdmWHBgfeERj1HU78l-s,68748
|
|
4
4
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
letta/agents/base_agent.py,sha256=8IMB7UK4ft-Wi-ZYjX7akqQUhk_cSswRgepqeZyvCMs,1550
|
|
6
6
|
letta/agents/ephemeral_agent.py,sha256=DBMXT50UQoqjkvl_Piwle3Fy7iXopy15oMWwnWzbpvo,2751
|
|
@@ -53,21 +53,20 @@ letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
53
53
|
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=SfqVp7V7AbBqv8D_IwyqrcztNiI0nKhjAvqtZQE_jfM,4729
|
|
54
54
|
letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
|
|
55
55
|
letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
letta/llm_api/anthropic.py,sha256=
|
|
56
|
+
letta/llm_api/anthropic.py,sha256=L8MEP58iN-wInNo4PFzhvAfYlWfUjIFoS-TAMnbx0Fk,43585
|
|
57
|
+
letta/llm_api/anthropic_client.py,sha256=79jdaxJYtOcIYbc5UoxQkcPji8ogIHSZzOaBXXUfozU,19322
|
|
57
58
|
letta/llm_api/aws_bedrock.py,sha256=kAPpKPRe4ZUa6fkxFbo8xwQgq4fJf3QoZEAP1LOCfaw,4168
|
|
58
59
|
letta/llm_api/azure_openai.py,sha256=Y8R9vDmruJnCr_EfmPj_oangX8gJPpiyhTppD9T8SHE,5168
|
|
59
60
|
letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
|
|
60
61
|
letta/llm_api/cohere.py,sha256=uzSXkvDPg4CV6tNnbX3yYkYsXRXAm4FvclUX8ln1etM,14863
|
|
61
62
|
letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,12456
|
|
62
|
-
letta/llm_api/google_ai.py,sha256=oeGH6dTKfNTQ1Ip4HWkZ5KkVoujdru6XjQPWsirRBSM,18162
|
|
63
63
|
letta/llm_api/google_ai_client.py,sha256=114KoGp-6AecNE5BITHdjEvXnhqw6m4FSPrbwrl_Bkg,14486
|
|
64
64
|
letta/llm_api/google_constants.py,sha256=ZdABT9l9l-qKcV2QCkVsv9kQbttx6JyIJoOWS8IMS5o,448
|
|
65
|
-
letta/llm_api/google_vertex.py,sha256=-8ERH8YPsQIAi6ZuYNcvny7Jz-Q4IFIbV7xqDspUUD4,14399
|
|
66
65
|
letta/llm_api/google_vertex_client.py,sha256=Cu1AVKxLCSvip1h8lleJ8voatSH2d6XnGmQjdKqmVoo,9648
|
|
67
66
|
letta/llm_api/helpers.py,sha256=sLYv30UnKBRVPuhU_KDXfKFdbkUONiDAyVEwGr86l3A,16780
|
|
68
|
-
letta/llm_api/llm_api_tools.py,sha256=
|
|
69
|
-
letta/llm_api/llm_client.py,sha256=
|
|
70
|
-
letta/llm_api/llm_client_base.py,sha256=
|
|
67
|
+
letta/llm_api/llm_api_tools.py,sha256=vbK_G2TZovLhCpV38EfGE_gM-GgkhrtHKqE-FIi_TAs,26853
|
|
68
|
+
letta/llm_api/llm_client.py,sha256=CQGAtK3b-5CznWyIgr4MDcNFcgpOfLjGMniL2R3qyrc,2062
|
|
69
|
+
letta/llm_api/llm_client_base.py,sha256=IU4iyF-EijSBbT88vu6DLt1bD3U2iwhtftIHRf9gJHo,4975
|
|
71
70
|
letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
|
|
72
71
|
letta/llm_api/openai.py,sha256=XyUdtWEeKEsxmryomgKn65157R1TJFEVAhfJJBGILzY,22401
|
|
73
72
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
|
@@ -174,7 +173,7 @@ letta/prompts/system/memgpt_offline_memory.txt,sha256=rWEJeF-6aiinjkJM9hgLUYCmlE
|
|
|
174
173
|
letta/prompts/system/memgpt_offline_memory_chat.txt,sha256=ituh7gDuio7nC2UKFB7GpBq6crxb8bYedQfJ0ADoPgg,3949
|
|
175
174
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
175
|
letta/round_robin_multi_agent.py,sha256=up9x_9Zb20sPZT-iAkheM5RsrplMAeTdYPkK-18P3y4,6220
|
|
177
|
-
letta/schemas/agent.py,sha256=
|
|
176
|
+
letta/schemas/agent.py,sha256=7Xxp4i0HNc0vKkMX9iXZSd9A-_mQxUXsgY-Y1voK2pc,15204
|
|
178
177
|
letta/schemas/block.py,sha256=rMWflyj982qW86dQK-9saXBHKaLCu3aUG2gQTckG3Ik,4984
|
|
179
178
|
letta/schemas/embedding_config.py,sha256=ufboqW9ctSBJdhwzJRbrGtTzOTwSKfT0LY0mowpr6fs,3398
|
|
180
179
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
|
@@ -201,7 +200,7 @@ letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNo
|
|
|
201
200
|
letta/schemas/openai/openai.py,sha256=Hilo5BiLAGabzxCwnwfzK5QrWqwYD8epaEKFa4Pwndk,7970
|
|
202
201
|
letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
|
|
203
202
|
letta/schemas/passage.py,sha256=RG0vkaewEu4a_NAZM-FVyMammHjqpPP0RDYAdu27g6A,3723
|
|
204
|
-
letta/schemas/providers.py,sha256=
|
|
203
|
+
letta/schemas/providers.py,sha256=wlo4PdkjpQ7pLML2KdM8HMawlHJG8zQS6CU3EQ1SrCE,53268
|
|
205
204
|
letta/schemas/run.py,sha256=SRqPRziINIiPunjOhE_NlbnQYgxTvqmbauni_yfBQRA,2085
|
|
206
205
|
letta/schemas/sandbox_config.py,sha256=SZCo3FSMz-DIBMKGu0atT4tsVFXGsqMFPaJnjrxpkX4,5993
|
|
207
206
|
letta/schemas/source.py,sha256=IuenIFs7B8uOuYJIHXqR1E28wVSa-pUX6NkLZH7cukg,3141
|
|
@@ -211,15 +210,15 @@ letta/schemas/tool_rule.py,sha256=tZ-BoyFJcFLMOd8KIng8pw3yCtdV8KGh4Vz730ZA-WQ,56
|
|
|
211
210
|
letta/schemas/usage.py,sha256=b8cNifTm7cqd1MtnqfZqUbn2KtACubX-VkEaYEMLBkg,1153
|
|
212
211
|
letta/schemas/user.py,sha256=V32Tgl6oqB3KznkxUz12y7agkQicjzW7VocSpj78i6Q,1526
|
|
213
212
|
letta/serialize_schemas/__init__.py,sha256=cosMjvWz7cubC1azbUofzYrcDBTuSgjJImUdsrSs3p0,77
|
|
214
|
-
letta/serialize_schemas/marshmallow_agent.py,sha256=
|
|
213
|
+
letta/serialize_schemas/marshmallow_agent.py,sha256=bL8GNc9nhB8cY8MiPaN-RSiyvl1KSz_Mz19cySBu_64,4378
|
|
215
214
|
letta/serialize_schemas/marshmallow_agent_environment_variable.py,sha256=9RYJkaNH2UiRoIFzrNklVAGl3uMmu3n6NwzFdviPPVA,653
|
|
216
215
|
letta/serialize_schemas/marshmallow_base.py,sha256=GP0ImCRfJ-BqNKe-T44Feal18pmFQG-p8JllOsSSNRk,1379
|
|
217
|
-
letta/serialize_schemas/marshmallow_block.py,sha256=
|
|
216
|
+
letta/serialize_schemas/marshmallow_block.py,sha256=8u4y1APVgaSdrOu12O-m5rRl9xEKAnUNlcs1Iik9BCo,459
|
|
218
217
|
letta/serialize_schemas/marshmallow_custom_fields.py,sha256=_rXV4eGY4wKqzZQPyk3ohHq4rt_oXa4r9QoHfoE-DbM,2500
|
|
219
218
|
letta/serialize_schemas/marshmallow_message.py,sha256=vkBlIFONzsiREXo507sWl1mjVjCLV97RtB7jyE0N_fw,1336
|
|
220
219
|
letta/serialize_schemas/marshmallow_tag.py,sha256=ssNGdD-z9UafhoTTOcvWRXju__NSx1bPijae_vljMr4,682
|
|
221
|
-
letta/serialize_schemas/marshmallow_tool.py,sha256=
|
|
222
|
-
letta/serialize_schemas/pydantic_agent_schema.py,sha256=
|
|
220
|
+
letta/serialize_schemas/marshmallow_tool.py,sha256=jwU69BDCakPlYPSk-ta21kuvsURKO3snU28802EgqXA,422
|
|
221
|
+
letta/serialize_schemas/pydantic_agent_schema.py,sha256=HFXV_VE91LZFtYza0xAXTAgTrtZTgGRSdkfS1zYX3ns,2516
|
|
223
222
|
letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
223
|
letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
|
|
225
224
|
letta/server/db.py,sha256=cA1MHpMCTTC1MX7VWppJ-cKq1XW93Vws_vTV0-bKmTE,3642
|
|
@@ -236,8 +235,8 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
236
235
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
236
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=OgjWs4zJaIi5Ps67iCTeOLmLXcW0S5Xccd-TcNa9obQ,5321
|
|
238
237
|
letta/server/rest_api/routers/v1/__init__.py,sha256=AV_uopcsNQIK-paX-9X23dNmLMUDDe_fgLTfeNyjWk8,1456
|
|
239
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
|
240
|
-
letta/server/rest_api/routers/v1/blocks.py,sha256=
|
|
238
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=vRwzqod7wk0Wa2OGLTdinxoosnuHcT0J19PgjkJ9sFQ,30354
|
|
239
|
+
letta/server/rest_api/routers/v1/blocks.py,sha256=Sefvon0jLvlNh0oAzntUcDZptnutuJOf-2Wcad_45Dg,4169
|
|
241
240
|
letta/server/rest_api/routers/v1/groups.py,sha256=v53Ekx9HmcabvBuUsvxlJyRvUiStgVrzAFoqzwC4cOs,9826
|
|
242
241
|
letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
|
|
243
242
|
letta/server/rest_api/routers/v1/identities.py,sha256=gRTcOXxbpiTzQzzVA_I1Sc9aUSKhW6YcQcJb__HxOX4,5957
|
|
@@ -255,7 +254,7 @@ letta/server/rest_api/routers/v1/users.py,sha256=G5DBHSkPfBgVHN2Wkm-rVYiLQAudwQc
|
|
|
255
254
|
letta/server/rest_api/routers/v1/voice.py,sha256=0lerWjrKLkt4gXLhZl1cIcgstOz9Q2HZwc67L58BCXE,2451
|
|
256
255
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
|
257
256
|
letta/server/rest_api/utils.py,sha256=gT8gCii9McrNqA6x2-v--s68NbxWZCt091WrpgBmXTk,13854
|
|
258
|
-
letta/server/server.py,sha256=
|
|
257
|
+
letta/server/server.py,sha256=8p4l6DxE5MUvKPI25aAksOwBibb3G7RcnMOJ42U9uQk,76495
|
|
259
258
|
letta/server/startup.sh,sha256=2S_MuvYYY5YZQOYBL-7mq2CC-A7Hhwyd9be2QqmNqzA,2514
|
|
260
259
|
letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
|
|
261
260
|
letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
|
|
@@ -300,8 +299,8 @@ letta/supervisor_multi_agent.py,sha256=jMy0J-a1_u5ZCulweXwJ98SgF6Hnvwxh1L3_wavnT
|
|
|
300
299
|
letta/system.py,sha256=dnOrS2FlRMwijQnOvfrky0Lg8wEw-FUq2zzfAJOUSKA,8477
|
|
301
300
|
letta/tracing.py,sha256=RstWXpfWVF77nmb_ISORVWd9IQw2Ky3de40k_S70yKI,8258
|
|
302
301
|
letta/utils.py,sha256=AdHrQ2OQ3V4XhJ1LtYwbLUO71j2IJY37cIUxXPgaaRY,32125
|
|
303
|
-
letta_nightly-0.6.
|
|
304
|
-
letta_nightly-0.6.
|
|
305
|
-
letta_nightly-0.6.
|
|
306
|
-
letta_nightly-0.6.
|
|
307
|
-
letta_nightly-0.6.
|
|
302
|
+
letta_nightly-0.6.45.dev20250327035218.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
|
303
|
+
letta_nightly-0.6.45.dev20250327035218.dist-info/METADATA,sha256=HMdk_EesEP7HXyEfcY23Zd31Jbol9xlr7GelphLogXc,22937
|
|
304
|
+
letta_nightly-0.6.45.dev20250327035218.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
305
|
+
letta_nightly-0.6.45.dev20250327035218.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
|
306
|
+
letta_nightly-0.6.45.dev20250327035218.dist-info/RECORD,,
|