letta-nightly 0.6.28.dev20250220163833__py3-none-any.whl → 0.6.29.dev20250221033538__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 +6 -1
- letta/llm_api/helpers.py +20 -10
- letta/llm_api/llm_api_tools.py +4 -1
- letta/llm_api/openai.py +3 -1
- letta/orm/__init__.py +1 -0
- letta/orm/agent.py +9 -11
- letta/orm/identities_agents.py +13 -0
- letta/orm/identity.py +26 -5
- letta/orm/sqlalchemy_base.py +4 -0
- letta/schemas/agent.py +3 -5
- letta/schemas/identity.py +26 -3
- letta/server/rest_api/chat_completions_interface.py +45 -21
- letta/server/rest_api/routers/openai/chat_completions/chat_completions.py +98 -24
- letta/server/rest_api/routers/v1/agents.py +9 -4
- letta/server/rest_api/routers/v1/identities.py +20 -10
- letta/server/rest_api/utils.py +183 -4
- letta/server/server.py +10 -1
- letta/services/agent_manager.py +8 -9
- letta/services/helpers/agent_manager_helper.py +0 -15
- letta/services/identity_manager.py +37 -21
- letta/streaming_interface.py +6 -2
- {letta_nightly-0.6.28.dev20250220163833.dist-info → letta_nightly-0.6.29.dev20250221033538.dist-info}/METADATA +1 -1
- {letta_nightly-0.6.28.dev20250220163833.dist-info → letta_nightly-0.6.29.dev20250221033538.dist-info}/RECORD +27 -26
- {letta_nightly-0.6.28.dev20250220163833.dist-info → letta_nightly-0.6.29.dev20250221033538.dist-info}/LICENSE +0 -0
- {letta_nightly-0.6.28.dev20250220163833.dist-info → letta_nightly-0.6.29.dev20250221033538.dist-info}/WHEEL +0 -0
- {letta_nightly-0.6.28.dev20250220163833.dist-info → letta_nightly-0.6.29.dev20250221033538.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from typing import List, Optional
|
|
2
2
|
|
|
3
3
|
from fastapi import HTTPException
|
|
4
|
+
from sqlalchemy.exc import NoResultFound
|
|
4
5
|
from sqlalchemy.orm import Session
|
|
5
6
|
|
|
6
7
|
from letta.orm.agent import Agent as AgentModel
|
|
@@ -23,6 +24,7 @@ class IdentityManager:
|
|
|
23
24
|
self,
|
|
24
25
|
name: Optional[str] = None,
|
|
25
26
|
project_id: Optional[str] = None,
|
|
27
|
+
identifier_key: Optional[str] = None,
|
|
26
28
|
identity_type: Optional[IdentityType] = None,
|
|
27
29
|
before: Optional[str] = None,
|
|
28
30
|
after: Optional[str] = None,
|
|
@@ -33,6 +35,8 @@ class IdentityManager:
|
|
|
33
35
|
filters = {"organization_id": actor.organization_id}
|
|
34
36
|
if project_id:
|
|
35
37
|
filters["project_id"] = project_id
|
|
38
|
+
if identifier_key:
|
|
39
|
+
filters["identifier_key"] = identifier_key
|
|
36
40
|
if identity_type:
|
|
37
41
|
filters["identity_type"] = identity_type
|
|
38
42
|
identities = IdentityModel.list(
|
|
@@ -46,9 +50,9 @@ class IdentityManager:
|
|
|
46
50
|
return [identity.to_pydantic() for identity in identities]
|
|
47
51
|
|
|
48
52
|
@enforce_types
|
|
49
|
-
def
|
|
53
|
+
def get_identity(self, identity_id: str, actor: PydanticUser) -> PydanticIdentity:
|
|
50
54
|
with self.session_maker() as session:
|
|
51
|
-
identity = IdentityModel.read(db_session=session,
|
|
55
|
+
identity = IdentityModel.read(db_session=session, identifier=identity_id, actor=actor)
|
|
52
56
|
return identity.to_pydantic()
|
|
53
57
|
|
|
54
58
|
@enforce_types
|
|
@@ -68,44 +72,56 @@ class IdentityManager:
|
|
|
68
72
|
identifier_key=identity.identifier_key,
|
|
69
73
|
project_id=identity.project_id,
|
|
70
74
|
organization_id=actor.organization_id,
|
|
75
|
+
actor=actor,
|
|
71
76
|
)
|
|
72
77
|
|
|
73
78
|
if existing_identity is None:
|
|
74
79
|
return self.create_identity(identity=identity, actor=actor)
|
|
75
80
|
else:
|
|
76
|
-
if existing_identity.identifier_key != identity.identifier_key:
|
|
77
|
-
raise HTTPException(status_code=400, detail="Identifier key is an immutable field")
|
|
78
|
-
if existing_identity.project_id != identity.project_id:
|
|
79
|
-
raise HTTPException(status_code=400, detail="Project id is an immutable field")
|
|
80
81
|
identity_update = IdentityUpdate(name=identity.name, identity_type=identity.identity_type, agent_ids=identity.agent_ids)
|
|
81
|
-
return self.
|
|
82
|
+
return self._update_identity(
|
|
83
|
+
session=session, existing_identity=existing_identity, identity=identity_update, actor=actor, replace=True
|
|
84
|
+
)
|
|
82
85
|
|
|
83
86
|
@enforce_types
|
|
84
|
-
def
|
|
85
|
-
self, identifier_key: str, identity: IdentityUpdate, actor: PydanticUser, replace: bool = False
|
|
86
|
-
) -> PydanticIdentity:
|
|
87
|
+
def update_identity(self, identity_id: str, identity: IdentityUpdate, actor: PydanticUser, replace: bool = False) -> PydanticIdentity:
|
|
87
88
|
with self.session_maker() as session:
|
|
88
89
|
try:
|
|
89
|
-
existing_identity = IdentityModel.read(db_session=session,
|
|
90
|
+
existing_identity = IdentityModel.read(db_session=session, identifier=identity_id, actor=actor)
|
|
90
91
|
except NoResultFound:
|
|
91
92
|
raise HTTPException(status_code=404, detail="Identity not found")
|
|
92
93
|
if existing_identity.organization_id != actor.organization_id:
|
|
93
94
|
raise HTTPException(status_code=403, detail="Forbidden")
|
|
94
95
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
identity.identity_type if identity.identity_type is not None else existing_identity.identity_type
|
|
98
|
-
)
|
|
99
|
-
self._process_agent_relationship(
|
|
100
|
-
session=session, identity=existing_identity, agent_ids=identity.agent_ids, allow_partial=False, replace=replace
|
|
96
|
+
return self._update_identity(
|
|
97
|
+
session=session, existing_identity=existing_identity, identity=identity, actor=actor, replace=replace
|
|
101
98
|
)
|
|
102
|
-
|
|
103
|
-
|
|
99
|
+
|
|
100
|
+
def _update_identity(
|
|
101
|
+
self,
|
|
102
|
+
session: Session,
|
|
103
|
+
existing_identity: IdentityModel,
|
|
104
|
+
identity: IdentityUpdate,
|
|
105
|
+
actor: PydanticUser,
|
|
106
|
+
replace: bool = False,
|
|
107
|
+
) -> PydanticIdentity:
|
|
108
|
+
if identity.identifier_key is not None:
|
|
109
|
+
existing_identity.identifier_key = identity.identifier_key
|
|
110
|
+
if identity.name is not None:
|
|
111
|
+
existing_identity.name = identity.name
|
|
112
|
+
if identity.identity_type is not None:
|
|
113
|
+
existing_identity.identity_type = identity.identity_type
|
|
114
|
+
|
|
115
|
+
self._process_agent_relationship(
|
|
116
|
+
session=session, identity=existing_identity, agent_ids=identity.agent_ids, allow_partial=False, replace=replace
|
|
117
|
+
)
|
|
118
|
+
existing_identity.update(session, actor=actor)
|
|
119
|
+
return existing_identity.to_pydantic()
|
|
104
120
|
|
|
105
121
|
@enforce_types
|
|
106
|
-
def
|
|
122
|
+
def delete_identity(self, identity_id: str, actor: PydanticUser) -> None:
|
|
107
123
|
with self.session_maker() as session:
|
|
108
|
-
identity = IdentityModel.read(db_session=session,
|
|
124
|
+
identity = IdentityModel.read(db_session=session, identifier=identity_id)
|
|
109
125
|
if identity is None:
|
|
110
126
|
raise HTTPException(status_code=404, detail="Identity not found")
|
|
111
127
|
if identity.organization_id != actor.organization_id:
|
letta/streaming_interface.py
CHANGED
|
@@ -48,7 +48,9 @@ class AgentChunkStreamingInterface(ABC):
|
|
|
48
48
|
raise NotImplementedError
|
|
49
49
|
|
|
50
50
|
@abstractmethod
|
|
51
|
-
def process_chunk(
|
|
51
|
+
def process_chunk(
|
|
52
|
+
self, chunk: ChatCompletionChunkResponse, message_id: str, message_date: datetime, expect_reasoning_content: bool = False
|
|
53
|
+
):
|
|
52
54
|
"""Process a streaming chunk from an OpenAI-compatible server"""
|
|
53
55
|
raise NotImplementedError
|
|
54
56
|
|
|
@@ -92,7 +94,9 @@ class StreamingCLIInterface(AgentChunkStreamingInterface):
|
|
|
92
94
|
def _flush(self):
|
|
93
95
|
pass
|
|
94
96
|
|
|
95
|
-
def process_chunk(
|
|
97
|
+
def process_chunk(
|
|
98
|
+
self, chunk: ChatCompletionChunkResponse, message_id: str, message_date: datetime, expect_reasoning_content: bool = False
|
|
99
|
+
):
|
|
96
100
|
assert len(chunk.choices) == 1, chunk
|
|
97
101
|
|
|
98
102
|
message_delta = chunk.choices[0].delta
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
letta/__init__.py,sha256=
|
|
1
|
+
letta/__init__.py,sha256=AszTrvA12qPiq-KNlJEZgwz6FiVOZcYLcHlO3LEPyrs,918
|
|
2
2
|
letta/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
|
|
3
|
-
letta/agent.py,sha256=
|
|
3
|
+
letta/agent.py,sha256=cHbzAFuqSGS3-H0qODtjyQXvuBZwgAwvDv1TYGHtRX4,60694
|
|
4
4
|
letta/benchmark/benchmark.py,sha256=ebvnwfp3yezaXOQyGXkYCDYpsmre-b9hvNtnyx4xkG0,3701
|
|
5
5
|
letta/benchmark/constants.py,sha256=aXc5gdpMGJT327VuxsT5FngbCK2J41PQYeICBO7g_RE,536
|
|
6
6
|
letta/chat_only_agent.py,sha256=71Lf-df8y3nsE9IFKpEigaZaWHoWnXnhVChkp1L-83I,4760
|
|
@@ -46,10 +46,10 @@ letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,124
|
|
|
46
46
|
letta/llm_api/google_ai.py,sha256=VnoxG6QYcwgFEbH8iJ8MHaMQrW4ROekZy6ZV5ZdHxzI,18000
|
|
47
47
|
letta/llm_api/google_constants.py,sha256=ZdABT9l9l-qKcV2QCkVsv9kQbttx6JyIJoOWS8IMS5o,448
|
|
48
48
|
letta/llm_api/google_vertex.py,sha256=Cqr73-jZJJvii1M_0QEmasNajOIJ5TDs5GabsCJjI04,14149
|
|
49
|
-
letta/llm_api/helpers.py,sha256=
|
|
50
|
-
letta/llm_api/llm_api_tools.py,sha256=
|
|
49
|
+
letta/llm_api/helpers.py,sha256=pXBemF43Ywbwub5dc5V7Slw5K7lNlO0ae8dQBOXgDHs,16773
|
|
50
|
+
letta/llm_api/llm_api_tools.py,sha256=wOm_NqBipE2M_XUN8y5KCDpZrXaEJuuvZ0llqfWFROo,26205
|
|
51
51
|
letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
|
|
52
|
-
letta/llm_api/openai.py,sha256=
|
|
52
|
+
letta/llm_api/openai.py,sha256=NCL_pT35BfSsQ7LSfUdNuhI2hi1nEhBiGffLz_81Mcw,21271
|
|
53
53
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
|
54
54
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
letta/local_llm/chat_completion_proxy.py,sha256=44rvabj2iXPswe5jFt0qWYCasSVXjkT31DivvDoWVMM,13543
|
|
@@ -94,8 +94,8 @@ letta/offline_memory_agent.py,sha256=P_rm6GmKAH6lg7-njuv7dK29f7v5-tAQy-rMOwcPfwk
|
|
|
94
94
|
letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
95
|
letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
|
|
96
96
|
letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
|
|
97
|
-
letta/orm/__init__.py,sha256=
|
|
98
|
-
letta/orm/agent.py,sha256=
|
|
97
|
+
letta/orm/__init__.py,sha256=I_6UgqHfv5H4OyB48-acXxtY2u0PGdV4Z_Y1UeXr5YQ,939
|
|
98
|
+
letta/orm/agent.py,sha256=LYMAfDfUlLTpOu5hw8mrQ1AKOOkT39BvLMp12IdGrik,7742
|
|
99
99
|
letta/orm/agents_tags.py,sha256=dYSnHz4IWBjyOiQ4RJomX3P0QN76JTlEZEw5eJM6Emg,925
|
|
100
100
|
letta/orm/base.py,sha256=VjvxF9TwKF9Trf8BJkDgf7D6KrWWopOkUiF18J3IElk,3071
|
|
101
101
|
letta/orm/block.py,sha256=EjH8lXexHtFIHJ8G-RjNo2oAH834x0Hbn4CER9S4U74,3880
|
|
@@ -104,7 +104,8 @@ letta/orm/custom_columns.py,sha256=NnTpOhSdnlFb45AkQg8RZQU2aMm7hxjZc_ubleza_nw,2
|
|
|
104
104
|
letta/orm/enums.py,sha256=g4qbX_6a1NQpCt3rScAySbwSbkwqGmnOEaNbkMmCWF4,474
|
|
105
105
|
letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
|
|
106
106
|
letta/orm/file.py,sha256=7_p7LxityP3NQZVURQYG0kgcZhEkVuMN0Fj4h9YOe1w,1780
|
|
107
|
-
letta/orm/
|
|
107
|
+
letta/orm/identities_agents.py,sha256=cfIQ6UsbwmjxtGVmFt1ArK2zbKr9k6VWoELuISDnLSc,502
|
|
108
|
+
letta/orm/identity.py,sha256=a5KjfSUVbpz3UDJlIacs3w-8fYA4bebSN0uhQGYzBj0,2462
|
|
108
109
|
letta/orm/job.py,sha256=G2P-xUpTapD4lhU2FwMZET1b5QR4ju9WOB3uiTKD_mw,2157
|
|
109
110
|
letta/orm/job_messages.py,sha256=SgwaYPYwwAC3dBtl9Xye_TWUl9H_-m95S95TTcfPyOg,1245
|
|
110
111
|
letta/orm/message.py,sha256=qY5lhSq5JDOSGKnEnLryKr2bHYLr60pk2LqYBxGeONQ,2718
|
|
@@ -115,7 +116,7 @@ letta/orm/provider.py,sha256=-qA9tvKTZgaM4D7CoDZZiA7zTgjaaWDV4jZvifQv_MM,805
|
|
|
115
116
|
letta/orm/sandbox_config.py,sha256=DyOy_1_zCMlp13elCqPcuuA6OwUove6mrjhcpROTg50,4150
|
|
116
117
|
letta/orm/source.py,sha256=cpaleNiP-DomM2oopwgL2DGn38ITQwLMs5mKODf_c_4,2167
|
|
117
118
|
letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
|
|
118
|
-
letta/orm/sqlalchemy_base.py,sha256=
|
|
119
|
+
letta/orm/sqlalchemy_base.py,sha256=tIuKJ0CH4tYCzhpDqqr2EDD6AxGlnXI752oYZtlvM6o,22151
|
|
119
120
|
letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
|
|
120
121
|
letta/orm/step.py,sha256=6t_PlVd8pW1Rd6JeECImBG2n9P-yif0Sl9Uzhb-m77w,2982
|
|
121
122
|
letta/orm/tool.py,sha256=JEPHlM4ePaLaGtHpHhYdKCteHTRJnOFgQmfR5wL8TpA,2379
|
|
@@ -148,7 +149,7 @@ letta/prompts/system/memgpt_modified_o1.txt,sha256=objnDgnxpF3-MmU28ZqZ7-TOG8UlH
|
|
|
148
149
|
letta/prompts/system/memgpt_offline_memory.txt,sha256=rWEJeF-6aiinjkJM9hgLUYCmlEcC_HekYB1bjEUYq6M,2460
|
|
149
150
|
letta/prompts/system/memgpt_offline_memory_chat.txt,sha256=ituh7gDuio7nC2UKFB7GpBq6crxb8bYedQfJ0ADoPgg,3949
|
|
150
151
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
letta/schemas/agent.py,sha256=
|
|
152
|
+
letta/schemas/agent.py,sha256=vERl22iOcNfWOqcuFadKGUSy03pHDSgctdn5OTd5qFI,14387
|
|
152
153
|
letta/schemas/block.py,sha256=FYYmRWjH4d4QHMUx_nmIXjv_qJna_l-Ip_4i51wDBPA,5942
|
|
153
154
|
letta/schemas/embedding_config.py,sha256=ufboqW9ctSBJdhwzJRbrGtTzOTwSKfT0LY0mowpr6fs,3398
|
|
154
155
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
|
@@ -156,7 +157,7 @@ letta/schemas/enums.py,sha256=jfuke35XP_AKfHHBnH1rx1wYjUDWqgDsKnRxdrCpTKA,1213
|
|
|
156
157
|
letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
|
|
157
158
|
letta/schemas/file.py,sha256=ChN2CWzLI2TT9WLItcfElEH0E8b7kzPylF2OQBr6Beg,1550
|
|
158
159
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
|
159
|
-
letta/schemas/identity.py,sha256=
|
|
160
|
+
letta/schemas/identity.py,sha256=028DseEyCErZ_fifQdFp4ON5QKlDWp-6hrrlekqko_g,2883
|
|
160
161
|
letta/schemas/job.py,sha256=MX9EiLDDIeHm3q52ImOjp7UzXEdYTXAWWobRCAxwV0w,2225
|
|
161
162
|
letta/schemas/letta_base.py,sha256=HTnSHJ2YSyhEdpY-vg9Y7ywqS1zzTjb9j5iVPYsuVSk,3991
|
|
162
163
|
letta/schemas/letta_message.py,sha256=QHzIEwnEJEkE02biCwyQo5IvL2fVq_whBRQD3vPYO48,9837
|
|
@@ -196,17 +197,17 @@ letta/server/rest_api/app.py,sha256=F9XAwZt5nPAE75gHSurXGe4mGmNvmI8DD7RssK8l124,
|
|
|
196
197
|
letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
198
|
letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
|
|
198
199
|
letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
|
|
199
|
-
letta/server/rest_api/chat_completions_interface.py,sha256=
|
|
200
|
+
letta/server/rest_api/chat_completions_interface.py,sha256=ORkZ-UmkmSx-FyGp85BDs9sQdNE49GehlmxVSxq4vLs,12073
|
|
200
201
|
letta/server/rest_api/interface.py,sha256=jAt7azrk27sNKNCZHgoIzYDIUbEgJ8hsC3Ef7OevH7U,57605
|
|
201
202
|
letta/server/rest_api/optimistic_json_parser.py,sha256=1z4d9unmxMb0ou7owJ62uUQoNjNYf21FmaNdg0ZcqUU,6567
|
|
202
203
|
letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
204
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
-
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=
|
|
205
|
+
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=xEi3nPOkrGiv3lQJbLsVtEJuFQYR1mZFvHqExJO6MDY,8982
|
|
205
206
|
letta/server/rest_api/routers/v1/__init__.py,sha256=kQUDemPYl4ZcOndpsexbLQRAObkuDN00ZYTnQJYiHNk,1269
|
|
206
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
|
207
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=OrP-F58ca8D2uZcsj2dqHrkrcMcsdszxTUP48HOGXkc,26081
|
|
207
208
|
letta/server/rest_api/routers/v1/blocks.py,sha256=oJYOpGUTd4AhKwVolVlZPIXO2EoOrBHkyi2PdrmbtmA,3888
|
|
208
209
|
letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
|
|
209
|
-
letta/server/rest_api/routers/v1/identities.py,sha256=
|
|
210
|
+
letta/server/rest_api/routers/v1/identities.py,sha256=CA9hhUcqcGX-5n4GTIK14ydfxEHiiTbvUS--JbkTqd8,4969
|
|
210
211
|
letta/server/rest_api/routers/v1/jobs.py,sha256=pKihW12hQdFwt6tHQXs94yOMv6xotlhBB3Vl7Q5ASKQ,2738
|
|
211
212
|
letta/server/rest_api/routers/v1/llms.py,sha256=lYp5URXtZk1yu_Pe-p1Wq1uQ0qeb6aWtx78rXSB7N_E,881
|
|
212
213
|
letta/server/rest_api/routers/v1/organizations.py,sha256=8n-kA9LHtKImdY2xL-v7m6nYAbFWqH1vjBCJhQbv7Is,2077
|
|
@@ -219,8 +220,8 @@ letta/server/rest_api/routers/v1/tags.py,sha256=45G0cmcP-ER0OO5OanT_fGtGQfl9ZjRK
|
|
|
219
220
|
letta/server/rest_api/routers/v1/tools.py,sha256=DD01gnqDNd5UKYCw8qZ_SV7ktOzzc73C5vbFUrIk2mk,13127
|
|
220
221
|
letta/server/rest_api/routers/v1/users.py,sha256=G5DBHSkPfBgVHN2Wkm-rVYiLQAudwQczIq2Z3YLdbVo,2277
|
|
221
222
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
|
222
|
-
letta/server/rest_api/utils.py,sha256=
|
|
223
|
-
letta/server/server.py,sha256=
|
|
223
|
+
letta/server/rest_api/utils.py,sha256=lOLqSWPq3yh3AzbAOxCI89Y4laXSDmIhDQ34s4VVhp8,12025
|
|
224
|
+
letta/server/server.py,sha256=3TjO0sef8UeQc_0efCoPT6vGz7f673KDZHwd15qKW2Q,57384
|
|
224
225
|
letta/server/startup.sh,sha256=qEi6dQHJRzEzDIgnIODj-RYp-O1XstfFpc6cFLkUzVs,1576
|
|
225
226
|
letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
|
|
226
227
|
letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
|
|
@@ -234,11 +235,11 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
|
|
|
234
235
|
letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
|
|
235
236
|
letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
|
|
236
237
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
|
-
letta/services/agent_manager.py,sha256=
|
|
238
|
+
letta/services/agent_manager.py,sha256=rS5WqtFPrPYg_1C1EgB74uABTypuSv-j-mndql2_PM4,53648
|
|
238
239
|
letta/services/block_manager.py,sha256=VQvaMAuIdvJcboaGK1NUznvaoPGf13uzeUDhKzN7EhY,5515
|
|
239
|
-
letta/services/helpers/agent_manager_helper.py,sha256=
|
|
240
|
+
letta/services/helpers/agent_manager_helper.py,sha256=MexqAGoc2e8Bso4_hJhBR6qyiFXtiB2MiMMqL-ur1a0,11302
|
|
240
241
|
letta/services/helpers/tool_execution_helper.py,sha256=q8uSiQcX6VH_iNg5VNloZgC2JkH9lIOXBKCXYPx2Yac,6097
|
|
241
|
-
letta/services/identity_manager.py,sha256=
|
|
242
|
+
letta/services/identity_manager.py,sha256=oLeeqRdjh-uhZHQ8S6QeSrTpAm7NZKhzjbcXHejha_g,6781
|
|
242
243
|
letta/services/job_manager.py,sha256=y7P03ijWrOY1HzhphrRdeEPUQz-wHcNvoi-zrefjbuE,13155
|
|
243
244
|
letta/services/message_manager.py,sha256=GOjDXSyYXUbXJafFshz-4-wVyg2szV73q-f4cWp0Ogs,10643
|
|
244
245
|
letta/services/organization_manager.py,sha256=dhQ3cFPXWNYLfMjdahr2HsOAMJ1JtCEWj1G8Nei5MQc,3388
|
|
@@ -252,13 +253,13 @@ letta/services/tool_execution_sandbox.py,sha256=mev4oCHy4B_uoXRccTirDNp_pSX_s5wb
|
|
|
252
253
|
letta/services/tool_manager.py,sha256=Q-J8mZKw3zi5Ymxy48DiwpOcv1s6rqdSkRHE6pbnzKk,9568
|
|
253
254
|
letta/services/user_manager.py,sha256=ScHbdJK9kNF8QXjsd3ZWGEL87n_Uyp3YwfKetOJmpHs,4304
|
|
254
255
|
letta/settings.py,sha256=l6jrMyIK3tqLTXhBx5rN06nEEnJh4vafxBQWhUa2WAI,6579
|
|
255
|
-
letta/streaming_interface.py,sha256=
|
|
256
|
+
letta/streaming_interface.py,sha256=1vuAckIxo1p1UsXtDzE8LTUve5RoTZRdXUe-WBIYDWU,15818
|
|
256
257
|
letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
|
|
257
258
|
letta/system.py,sha256=dnOrS2FlRMwijQnOvfrky0Lg8wEw-FUq2zzfAJOUSKA,8477
|
|
258
259
|
letta/tracing.py,sha256=0uCH8j2ipTpS8Vt7bFl74sG5ckgBHy9fu-cyG9SBSsc,7464
|
|
259
260
|
letta/utils.py,sha256=AdHrQ2OQ3V4XhJ1LtYwbLUO71j2IJY37cIUxXPgaaRY,32125
|
|
260
|
-
letta_nightly-0.6.
|
|
261
|
-
letta_nightly-0.6.
|
|
262
|
-
letta_nightly-0.6.
|
|
263
|
-
letta_nightly-0.6.
|
|
264
|
-
letta_nightly-0.6.
|
|
261
|
+
letta_nightly-0.6.29.dev20250221033538.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
|
262
|
+
letta_nightly-0.6.29.dev20250221033538.dist-info/METADATA,sha256=-nQzzujtRWyHik1L8_JwgpCxz_s4xWr0sXN6QU5B84c,22752
|
|
263
|
+
letta_nightly-0.6.29.dev20250221033538.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
264
|
+
letta_nightly-0.6.29.dev20250221033538.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
|
265
|
+
letta_nightly-0.6.29.dev20250221033538.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|