letta-nightly 0.8.13.dev20250714104447__py3-none-any.whl → 0.8.15.dev20250715080149__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.

Files changed (36) hide show
  1. letta/__init__.py +1 -1
  2. letta/constants.py +6 -0
  3. letta/functions/function_sets/base.py +2 -2
  4. letta/functions/function_sets/files.py +11 -11
  5. letta/helpers/decorators.py +1 -1
  6. letta/helpers/pinecone_utils.py +164 -11
  7. letta/orm/agent.py +1 -1
  8. letta/orm/file.py +2 -17
  9. letta/orm/files_agents.py +9 -10
  10. letta/orm/organization.py +0 -4
  11. letta/orm/passage.py +0 -10
  12. letta/orm/source.py +3 -20
  13. letta/prompts/system/memgpt_v2_chat.txt +28 -10
  14. letta/schemas/file.py +1 -0
  15. letta/schemas/memory.py +2 -2
  16. letta/server/rest_api/routers/v1/agents.py +4 -4
  17. letta/server/rest_api/routers/v1/messages.py +2 -6
  18. letta/server/rest_api/routers/v1/sources.py +3 -3
  19. letta/server/server.py +0 -3
  20. letta/services/agent_manager.py +194 -147
  21. letta/services/block_manager.py +18 -18
  22. letta/services/context_window_calculator/context_window_calculator.py +15 -10
  23. letta/services/context_window_calculator/token_counter.py +40 -0
  24. letta/services/file_manager.py +37 -0
  25. letta/services/file_processor/chunker/line_chunker.py +17 -0
  26. letta/services/file_processor/embedder/openai_embedder.py +50 -5
  27. letta/services/files_agents_manager.py +12 -2
  28. letta/services/group_manager.py +11 -11
  29. letta/services/source_manager.py +19 -3
  30. letta/services/tool_executor/core_tool_executor.py +2 -2
  31. letta/services/tool_executor/files_tool_executor.py +6 -1
  32. {letta_nightly-0.8.13.dev20250714104447.dist-info → letta_nightly-0.8.15.dev20250715080149.dist-info}/METADATA +1 -1
  33. {letta_nightly-0.8.13.dev20250714104447.dist-info → letta_nightly-0.8.15.dev20250715080149.dist-info}/RECORD +36 -36
  34. {letta_nightly-0.8.13.dev20250714104447.dist-info → letta_nightly-0.8.15.dev20250715080149.dist-info}/LICENSE +0 -0
  35. {letta_nightly-0.8.13.dev20250714104447.dist-info → letta_nightly-0.8.15.dev20250715080149.dist-info}/WHEEL +0 -0
  36. {letta_nightly-0.8.13.dev20250714104447.dist-info → letta_nightly-0.8.15.dev20250715080149.dist-info}/entry_points.txt +0 -0
@@ -1,8 +1,12 @@
1
1
  import asyncio
2
2
  from typing import List, Optional
3
3
 
4
+ from sqlalchemy import select
5
+
6
+ from letta.orm import Agent as AgentModel
4
7
  from letta.orm.errors import NoResultFound
5
8
  from letta.orm.source import Source as SourceModel
9
+ from letta.orm.sources_agents import SourcesAgents
6
10
  from letta.otel.tracing import trace_method
7
11
  from letta.schemas.agent import AgentState as PydanticAgentState
8
12
  from letta.schemas.source import Source as PydanticSource
@@ -104,9 +108,21 @@ class SourceManager:
104
108
  # Verify source exists and user has permission to access it
105
109
  source = await SourceModel.read_async(db_session=session, identifier=source_id, actor=actor)
106
110
 
107
- # The agents relationship is already loaded due to lazy="selectin" in the Source model
108
- # and will be properly filtered by organization_id due to the OrganizationMixin
109
- agents_orm = source.agents
111
+ # Use junction table query instead of relationship to avoid performance issues
112
+ query = (
113
+ select(AgentModel)
114
+ .join(SourcesAgents, AgentModel.id == SourcesAgents.agent_id)
115
+ .where(
116
+ SourcesAgents.source_id == source_id,
117
+ AgentModel.organization_id == actor.organization_id if actor else True,
118
+ AgentModel.is_deleted == False,
119
+ )
120
+ .order_by(AgentModel.created_at.desc(), AgentModel.id)
121
+ )
122
+
123
+ result = await session.execute(query)
124
+ agents_orm = result.scalars().all()
125
+
110
126
  return await asyncio.gather(*[agent.to_pydantic_async() for agent in agents_orm])
111
127
 
112
128
  # TODO: We make actor optional for now, but should most likely be enforced due to security reasons
@@ -188,7 +188,7 @@ class LettaCoreToolExecutor(ToolExecutor):
188
188
  Append to the contents of core memory.
189
189
 
190
190
  Args:
191
- label (str): Section of the memory to be edited (persona or human).
191
+ label (str): Section of the memory to be edited.
192
192
  content (str): Content to write to the memory. All unicode (including emojis) are supported.
193
193
 
194
194
  Returns:
@@ -214,7 +214,7 @@ class LettaCoreToolExecutor(ToolExecutor):
214
214
  Replace the contents of core memory. To delete memories, use an empty string for new_content.
215
215
 
216
216
  Args:
217
- label (str): Section of the memory to be edited (persona or human).
217
+ label (str): Section of the memory to be edited.
218
218
  old_content (str): String to replace. Must be an exact match.
219
219
  new_content (str): Content to write to the memory. All unicode (including emojis) are supported.
220
220
 
@@ -180,7 +180,12 @@ class LettaFileToolExecutor(ToolExecutor):
180
180
 
181
181
  # Handle LRU eviction and file opening
182
182
  closed_files, was_already_open = await self.files_agents_manager.enforce_max_open_files_and_open(
183
- agent_id=agent_state.id, file_id=file_id, file_name=file_name, actor=self.actor, visible_content=visible_content
183
+ agent_id=agent_state.id,
184
+ file_id=file_id,
185
+ file_name=file_name,
186
+ source_id=file.source_id,
187
+ actor=self.actor,
188
+ visible_content=visible_content,
184
189
  )
185
190
 
186
191
  opened_files.append(file_name)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-nightly
3
- Version: 0.8.13.dev20250714104447
3
+ Version: 0.8.15.dev20250715080149
4
4
  Summary: Create LLM agents with long-term memory and custom tools
5
5
  License: Apache License
6
6
  Author: Letta Team
@@ -1,4 +1,4 @@
1
- letta/__init__.py,sha256=P44L6tH5GEgZx3hAnIaAoBytfTCJGpqFrCashKMQmZ8,1222
1
+ letta/__init__.py,sha256=FAnQMTDhGVFB9Yp7UA48aWdetpgmWoC5hEr9inOigaw,1222
2
2
  letta/agent.py,sha256=esW2W5hBzO7aPr7ghEDb_fLnUxgYqBYDq_VWtQDrB0c,89153
3
3
  letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  letta/agents/base_agent.py,sha256=35JcOjA6FUuQRIf4CiPnJSwgniCaDrjM-fVlWmIk68E,7766
@@ -17,7 +17,7 @@ letta/client/client.py,sha256=l_yKUUzl1-qfxFkDHsOMHxSwyzOBbx-2mi0GfI3WlJE,84906
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
20
- letta/constants.py,sha256=eGXwXbvIZyvxiX2Trg28i8a7ABfhWqtqb36D3ciyr_8,14733
20
+ letta/constants.py,sha256=GYOg_IpDxNP7J-1_RkrqrZ1fJQpKSUGSYoyx9Ysq36w,14910
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
@@ -28,10 +28,10 @@ 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
- letta/functions/function_sets/base.py,sha256=FS-LRbvzO-duSUy0yLP_fBk2WSs4NAaaTAUuhl2ZS-I,16154
31
+ letta/functions/function_sets/base.py,sha256=lhuzqe-nBE9qd2U4wg6IYwvTdpPebTeq-NJGHOrUbLQ,16116
32
32
  letta/functions/function_sets/builtin.py,sha256=tm9KWrWZKhXMoXgd7PSsp-WfS8chhFe7gIdQhT1N5E4,2027
33
33
  letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
34
- letta/functions/function_sets/files.py,sha256=TccGykV2V3igBKor6Lgrr028Ttif4V_EQo9VTGLL0jI,3662
34
+ letta/functions/function_sets/files.py,sha256=swMuHkwQrgYTYXUpHTBiuUB0cPUHMeJ19rzPszWwK9k,3615
35
35
  letta/functions/function_sets/multi_agent.py,sha256=Vze76mj0YGZQYmWEzknnf3vEf-O7gcCUPQead7HH3FQ,7045
36
36
  letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
37
37
  letta/functions/functions.py,sha256=0lPsB_IRNP-Ld5RHnzs59Pw6f4BzWllRAYuoW6ntV8M,5939
@@ -56,10 +56,10 @@ letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
56
56
  letta/helpers/composio_helpers.py,sha256=MwfmLt7tgjvxAXLHpx9pa5QolxcqoCbofb-30-DVpsI,1714
57
57
  letta/helpers/converters.py,sha256=_-6Ke5ZUtaKYmh8SncGj1ejTG3GyKhZ4ByVCrlcHsOI,15026
58
58
  letta/helpers/datetime_helpers.py,sha256=8AwZInX-NX_XQiqej2arozYqfC2ysnWpCJ9ETv8RdL0,4381
59
- letta/helpers/decorators.py,sha256=jyywXMxO5XPDSe93ybVXIOjTWkGX514S9BMcy_gP0j8,5891
59
+ letta/helpers/decorators.py,sha256=KbYLW0RdTnBaXlXFq-Dw3G-PNTGKywfFLMcEOYHLcPA,5889
60
60
  letta/helpers/json_helpers.py,sha256=9W_1dhNnXWdQLiZD3tO9047cB2ATrCAYVHnYGvT8Ke0,470
61
61
  letta/helpers/message_helper.py,sha256=Xzf_VCMAXT0Ys8LVUh1ySVtgJwabSQYksOdPr7P4EJU,3549
62
- letta/helpers/pinecone_utils.py,sha256=cF5VeEmENCepbaNT7_cEpiHU3U0x-32g0AG1d4OF73A,7461
62
+ letta/helpers/pinecone_utils.py,sha256=KPoiCoODsU-vJdvCkrnzkxZpflYQVmpMFmZ4lU44e6g,14259
63
63
  letta/helpers/singleton.py,sha256=Y4dG_ZBCcrogvl9iZ69bSLq-QltrdP8wHqKkhef8OBI,370
64
64
  letta/helpers/tool_execution_helper.py,sha256=BgBgVLZzbc-JTdOGwyU9miV_-zM3A30jkMpwH1otxaU,7599
65
65
  letta/helpers/tool_rule_solver.py,sha256=avRMQzqxE2r6gRvw7oTImYmkSvuoMHlADPND0__feBw,11620
@@ -140,7 +140,7 @@ letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
140
140
  letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
141
141
  letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
142
142
  letta/orm/__init__.py,sha256=cViTMoXDD81NoT8X_h_ozH6_-zWm8_aJ34BCtXmCmCo,1415
143
- letta/orm/agent.py,sha256=eweHoPCWRaIE9i4cvxRaHUx42K_iYr3iY_Y4MC8FF0I,15066
143
+ letta/orm/agent.py,sha256=E6cIU7ZXzgQJ4eyAlHSAqowDwxRLwf3Avh8Dsr8IWso,15061
144
144
  letta/orm/agents_tags.py,sha256=IM9UxHtcispiieh0EnOIGTk--nGK9XaS6v3jl_cjcWo,1011
145
145
  letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
146
146
  letta/orm/block.py,sha256=BhjjYiHV5crvES6GDz60J_1MRdePZcvw_YHzTdbIzuU,5870
@@ -149,8 +149,8 @@ letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,11
149
149
  letta/orm/custom_columns.py,sha256=gVq4opV0sIuThphX7z3QdyF8RKbcxUO6IHX2J4al27U,5585
150
150
  letta/orm/enums.py,sha256=k00U8nnb-sf6Un8pwtwt2-68avD1EkXLTZO_3alHhbQ,846
151
151
  letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
152
- letta/orm/file.py,sha256=1cAUzWFQGAtaj6c-neAeZdKuc1ppamIxfpwTkHIDvQk,6125
153
- letta/orm/files_agents.py,sha256=h0JeUXu73GgQzeP6qpKE20MYYmOftH5WB13K-LRUuHs,3896
152
+ letta/orm/file.py,sha256=qEDAXsj2mUc3MR_DbP9AjUX6OiUjJ3M60OHbw1sOKNc,5338
153
+ letta/orm/files_agents.py,sha256=O3t-ZG9XZ5IRzHcI89OsQO5wLv7mfzd3xaJSfG6_XgA,3934
154
154
  letta/orm/group.py,sha256=tygd3nWOmTIQ8TRzJeUA8rd9dfMDzw2XH8BfaQ4aEwI,2100
155
155
  letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,483
156
156
  letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
@@ -164,12 +164,12 @@ letta/orm/llm_batch_job.py,sha256=LaeOrnNf6FMm6ff2kOCEAjtbSuz4C5KYU5OmM90F1PY,23
164
164
  letta/orm/mcp_server.py,sha256=RWbLfTQ2LHIh2jU9QsGKhsQpN-8npNw8vTSD_S-PwMo,2295
165
165
  letta/orm/message.py,sha256=N4NumnqWlBEIFV1-lcBzAB_DxrMwLSIDngBJpQt4PuU,4922
166
166
  letta/orm/mixins.py,sha256=9c79Kfr-Z1hL-SDYKeoptx_yMTbBwJJBo9nrKEzSDAc,1622
167
- letta/orm/organization.py,sha256=VTeoGU8RHkLKqeN2PW7ztsZSTQgQ7FwnbivQIEilI5U,4201
168
- letta/orm/passage.py,sha256=FNGKUHfRB4G-gFfhZ9edyzp5zRAa9C6Wz1_uOrNEn_k,4091
167
+ letta/orm/organization.py,sha256=IY2sEtwW8v9JoryMjQBG1cF1KmPeV7vXAqSNGL7zI0Q,3863
168
+ letta/orm/passage.py,sha256=YR-HNM1U-P2wb0VNU9zah-EoGsoHqnKBVT7OQA6V_Rk,3694
169
169
  letta/orm/provider.py,sha256=JD0kP2qP1WguuwEHqeNzPo_ERm5SSHDVEY7pfuYvQss,1542
170
170
  letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
171
171
  letta/orm/sandbox_config.py,sha256=zOCvORexDBt16mc6A3U65EI6_2Xe3Roh7k2asLeFMps,4242
172
- letta/orm/source.py,sha256=kmEdbolwXbJb3u8JICFIUOqwTzkrxBbfI_VRE8ki8oU,2331
172
+ letta/orm/source.py,sha256=3gMmvTCAD_RWLFtJ2ZhVL5eEs_OaeauVE3JKA6O6DAI,1416
173
173
  letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
174
174
  letta/orm/sqlalchemy_base.py,sha256=N90RIye2ubLRklJAPEVrLkh7sV30DKLcFmAKHrCgXcY,44438
175
175
  letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
@@ -218,7 +218,7 @@ letta/prompts/system/memgpt_modified_o1.txt,sha256=objnDgnxpF3-MmU28ZqZ7-TOG8UlH
218
218
  letta/prompts/system/memgpt_offline_memory.txt,sha256=rWEJeF-6aiinjkJM9hgLUYCmlEcC_HekYB1bjEUYq6M,2460
219
219
  letta/prompts/system/memgpt_offline_memory_chat.txt,sha256=ituh7gDuio7nC2UKFB7GpBq6crxb8bYedQfJ0ADoPgg,3949
220
220
  letta/prompts/system/memgpt_sleeptime_chat.txt,sha256=ieHvVkJYE_4Z_vyUJS4KImBZCSQDcsUmy9IRF-FBpPE,4712
221
- letta/prompts/system/memgpt_v2_chat.txt,sha256=xGMgHHlx5_SACS7Wb1CVay6wbcDVWbVOQqyWz2XjMC0,4617
221
+ letta/prompts/system/memgpt_v2_chat.txt,sha256=RLIGgd1WnoyrLLLTbhueB9j3aUEHwrnYSFywAxZfMCg,5315
222
222
  letta/prompts/system/react.txt,sha256=AVPxs4dM_0bCvk68hPIQMgFGBnt-6Vor-i0YSjoMtCc,1547
223
223
  letta/prompts/system/sleeptime.txt,sha256=qoACziV1KoPk_nJMJHzEkyKQn9v9fmepWozAAixZc4s,3117
224
224
  letta/prompts/system/sleeptime_doc_ingest.txt,sha256=tyzHHzyDA2ib_XRwo5h5Ku9l_f-RSBPDJZrUusrQE80,2783
@@ -234,7 +234,7 @@ letta/schemas/embedding_config.py,sha256=huMcqUbSUDwAbd7IkjzxDSmOxGCJG_0eMqPqLj6
234
234
  letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
235
235
  letta/schemas/enums.py,sha256=QU6WneYqWtPqL9Z8o8wEw55uheS8df8dRPc7W7-naXI,3606
236
236
  letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
237
- letta/schemas/file.py,sha256=lJFQfUCf6iqtbyqxynL98fupDobnRPsoc2GrhgYJaig,4595
237
+ letta/schemas/file.py,sha256=V4VNgPmujkXGlaG9Uixe3tOCNrK2IrRt-kGnXGBu1WI,4711
238
238
  letta/schemas/group.py,sha256=0qFbCvE5gbdSAk1oXXT8xWQ02R4mS_jttJm0ASh8eCQ,6415
239
239
  letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
240
240
  letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
@@ -249,7 +249,7 @@ letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQ
249
249
  letta/schemas/llm_config.py,sha256=DUrBPJTucQld9o636qM9etGkaC6y0urgsQgZr7HmcVA,8979
250
250
  letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
251
251
  letta/schemas/mcp.py,sha256=h0Dp-oTe4AOj-SHw7ok_RyQlC62E6OW8NCGr9RH2h-0,6446
252
- letta/schemas/memory.py,sha256=sjfe3UEizgVy0aRP07bIWjR3SPBFu98e3SbzaVuy-KE,11833
252
+ letta/schemas/memory.py,sha256=-KTsY5iCkGdPY8GHTN28FeOPX2ekIejLeRpX3ZgJTs0,11795
253
253
  letta/schemas/message.py,sha256=v7LqaMhUuWQqDHMqYIW4tRx3ltm_qAPq7FrXGdFge6w,54131
254
254
  letta/schemas/openai/chat_completion_request.py,sha256=QKIqH_B1A2logYvVBBkEVhhKe73khv6mZTxCHbGmfvA,4233
255
255
  letta/schemas/openai/chat_completion_response.py,sha256=yGQ-qrMgefbZSjUtGe_oK5JnF4cw8upC3Bh6dQSAAeo,7066
@@ -298,7 +298,7 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
298
298
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
299
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
300
300
  letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
301
- letta/server/rest_api/routers/v1/agents.py,sha256=KuQB05DedF7wg72PD4dKz-W06QAjVJutUX6FB0dW9HM,55520
301
+ letta/server/rest_api/routers/v1/agents.py,sha256=LC_kQ2oCq6GGLM6EP2Z2CP5Lx0cwg9tUpmC_jP9Z7ac,55552
302
302
  letta/server/rest_api/routers/v1/blocks.py,sha256=MArBBnC7k9bc-Z1xMf46aH4ij6qhKAQAOoK9KjiXatU,5257
303
303
  letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
304
304
  letta/server/rest_api/routers/v1/groups.py,sha256=kR_oAuwPd9q-DaeK4Q6Xqu1XlXTXkwEvf2hH7tOiVuw,10978
@@ -306,12 +306,12 @@ letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdT
306
306
  letta/server/rest_api/routers/v1/identities.py,sha256=KUfw6avQIVHNw2lWz4pXOyTOPVy1g19CJGG-zayORl8,7858
307
307
  letta/server/rest_api/routers/v1/jobs.py,sha256=WoTWKGcIauHtwBjgw2ZVzRXzwQK4W162aCWm0cbtUzU,4774
308
308
  letta/server/rest_api/routers/v1/llms.py,sha256=0VJuuGW9_ta0cBnSDtXd3Ngw7GjsqEN2NBf5U3b6M3I,1920
309
- letta/server/rest_api/routers/v1/messages.py,sha256=z6K6HJlyML7LTqWizz4VU1p0MQJx6eo1BiFHObBizZs,7924
309
+ letta/server/rest_api/routers/v1/messages.py,sha256=EBCxkt44r9uhw9GIkN5v6Rc1R_xGVMpcStkLnY2t0n0,7807
310
310
  letta/server/rest_api/routers/v1/organizations.py,sha256=5NEjTOdGKWrfN584jfPpJhAcbTl168RrrDvqjO1_5fM,2927
311
311
  letta/server/rest_api/routers/v1/providers.py,sha256=8SJ_RsSk7L4nh1f_uFE31JOxefmGhOfN-fMJ0Sp6SJo,4353
312
312
  letta/server/rest_api/routers/v1/runs.py,sha256=vieUp7uTvRTdAte0Nw1bqX2APMATZhKTr2R1HVNJT74,8879
313
313
  letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=pKuy88GD3atrBkKa7VVfKTjg8Y07e1vVtdw4TtxkQBk,8910
314
- letta/server/rest_api/routers/v1/sources.py,sha256=ImunBc5PKO5sFtYLtJ1qOZ0kt5ZXckfr242qtWJrP30,20768
314
+ letta/server/rest_api/routers/v1/sources.py,sha256=oQiO21MstzjM7BVzNA7kxXV1X7W3dC6csUC-N7x4uNs,20773
315
315
  letta/server/rest_api/routers/v1/steps.py,sha256=N863b0Oyzz64rKHqpyQnXEQBw0SCQ8kAxWaZ7huV1Rk,4925
316
316
  letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
317
317
  letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
@@ -321,7 +321,7 @@ letta/server/rest_api/routers/v1/voice.py,sha256=ghMBp5Uovbf0-3nN6d9P5kpl1hHACLR
321
321
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
322
322
  letta/server/rest_api/streaming_response.py,sha256=IOOg0ezuFUCJxTABs_Pta_AHkvpSz6atGNvB-exbP4I,7719
323
323
  letta/server/rest_api/utils.py,sha256=6Ar4r3eohMRr5_p4e07x54ILZC5X4A9XZnupzQRasQA,17808
324
- letta/server/server.py,sha256=pWp0arXTcY4WZIv3C8iOIAGuusgKYfgBOofzGhw9FKQ,113917
324
+ letta/server/server.py,sha256=n-Amuete_KdaOdTwFFMl6Fd0NZISSOJ1N7nPMin4j3M,113747
325
325
  letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
326
326
  letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
327
327
  letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
@@ -335,19 +335,19 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
335
335
  letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
336
336
  letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
337
337
  letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- letta/services/agent_manager.py,sha256=yZ52BHJ0XyngIQUHkAQQ9cSh73c3WFwP4uezmyf7u8w,123384
339
- letta/services/block_manager.py,sha256=7EliXd0-LpSRwD2LbyjFpH5uiBdrtdZ6YLgb2_wKs3o,22905
338
+ letta/services/agent_manager.py,sha256=Zg20jbrT5EvHk2KWiw4UO0_lrnS4UdhaxzVBzp7Hd7M,125343
339
+ letta/services/block_manager.py,sha256=NF4L6mYvAtdIKOQiqpyfNVKn7EUJNLRf05_-08zhuxU,22905
340
340
  letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
- letta/services/context_window_calculator/context_window_calculator.py,sha256=H0-Ello1DHV28MnzMseWrg--jarDc6YwCcgwPlWjtZk,6527
342
- letta/services/context_window_calculator/token_counter.py,sha256=Ai9-aPkNvhhMTj9zlvdiQAdVqroTzIyAn0TrHpHNQZY,2954
343
- letta/services/file_manager.py,sha256=yxBRGKBpCcV7FnllMymYGJheUsfttbI6s-zUr3G3CKo,15938
341
+ letta/services/context_window_calculator/context_window_calculator.py,sha256=_VluA3OU_E-GuYdPGF6dLSRRCVataStoYNA_BEm72iY,6567
342
+ letta/services/context_window_calculator/token_counter.py,sha256=QHNeLciQmBDV0pdCawkNaltbTYp2Ju7ZwKpE5y46LDg,4731
343
+ letta/services/file_manager.py,sha256=KncSkNCZJSC6hlR_jvPpM6WXy42IoFqnKfbgXpFo7UE,17817
344
344
  letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- letta/services/file_processor/chunker/line_chunker.py,sha256=m02molsKXU_RUEebbHhMA6LNxg3JmFlCTOuX6kZcz3E,7024
346
+ letta/services/file_processor/chunker/line_chunker.py,sha256=l3QlaJVRpXMU8kX4MmlXRewJDJh9q-D6fqL65o2WUgg,7569
347
347
  letta/services/file_processor/chunker/llama_index_chunker.py,sha256=zHjwQUE4QTJonxHpG09sd_0fgt4KTUyjRJawUcGDAyI,7615
348
348
  letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
349
  letta/services/file_processor/embedder/base_embedder.py,sha256=cuHF2kAlBFL9Hr63Q5vJQYYrfyDNtm31vYvW5boUQ58,518
350
- letta/services/file_processor/embedder/openai_embedder.py,sha256=qafYDdbbBDCv5Mg-gdZozc5qFCdraaG8B8OCLd8_3vY,5715
350
+ letta/services/file_processor/embedder/openai_embedder.py,sha256=HPFQ0igTCP4T0eF2sxHNTDDNsdj86fuB8GtlkiezbSE,7565
351
351
  letta/services/file_processor/embedder/pinecone_embedder.py,sha256=O33NGvDyOG07Iz-tEhZDu_PKq7NfWIaBzjJuLi8hDiU,2841
352
352
  letta/services/file_processor/file_processor.py,sha256=vjl_pcwqDIMOhDDGbJQuL4oUXRVHm_o_mgy7kXQUanQ,10277
353
353
  letta/services/file_processor/file_types.py,sha256=9k3Lt_bquQjJ7T6L12fPS9IS5wldhJ2puSkH6rhfCaE,13128
@@ -355,8 +355,8 @@ letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
355
355
  letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
356
356
  letta/services/file_processor/parser/mistral_parser.py,sha256=NmCdVdpAB5f-VjILJp85pz2rSjlghKEg7qKTFzZLhP8,2384
357
357
  letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- letta/services/files_agents_manager.py,sha256=4o9GtgTpmPvpppvgcTJi8MqPDsGwDnt6Cua2JoiQ07E,23049
359
- letta/services/group_manager.py,sha256=X2gKKUGKTXGRMC8YjwmE6EOB1cVM4lo31eCnmog7dPQ,23368
358
+ letta/services/files_agents_manager.py,sha256=SHuLFqacYUJoi1zvWHKBpNEaXX41BrCiWereN5zcwa0,23403
359
+ letta/services/group_manager.py,sha256=J0LUYIgGZa17O9vcQm-QDPm_k6mSylLeE7OOfXbnLMI,23368
360
360
  letta/services/helpers/agent_manager_helper.py,sha256=8of5EgKA9-Y-s0ovD0NwTnOiaW-z8kBlKleZqnrwy5g,44034
361
361
  letta/services/helpers/tool_execution_helper.py,sha256=45L7woJ98jK5MQAnhE_4NZdCeyOOzC4328FTQPM7iTA,9159
362
362
  letta/services/helpers/tool_parser_helper.py,sha256=_3oAVRVfRaicGpO6qRKAlCAujZw2uBGUclei4FUC6Do,4349
@@ -376,7 +376,7 @@ letta/services/passage_manager.py,sha256=nmrrWE3UFojw73Q1qrG5dvrLDotP4xD5ZQARaEO
376
376
  letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
377
377
  letta/services/provider_manager.py,sha256=mEtiBF7kJgSzDwwyqSmWLT6kgvWPk-FERZ9Zw8QKpHw,9557
378
378
  letta/services/sandbox_config_manager.py,sha256=fcJkXCaA6vmrnTusHhns-c_aRXcPlFLICPGdWDaY8XQ,26138
379
- letta/services/source_manager.py,sha256=u4Nnwe7qwLETqF23NVLRnO3Qm7USpF5VPHE0K984nn0,6152
379
+ letta/services/source_manager.py,sha256=8xxEfl-oPebd-vgFSfUKew1liVWt8fE14-T5xgXsYaE,6701
380
380
  letta/services/step_manager.py,sha256=yK0Z6mzvQ0y3YjCRRcy7Qs2GXiJyvHX1o6rt-QFq0cw,10972
381
381
  letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
382
382
  letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZVV2r0,279
@@ -385,8 +385,8 @@ letta/services/telemetry_manager.py,sha256=1qvXeYltOf7m7oondtr4PeogVYqWekNO39zaD
385
385
  letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
386
  letta/services/tool_executor/builtin_tool_executor.py,sha256=4hVeFnExExxuZHPIOD3LK9fPlFUt0s-b_TpKuvyxLwk,17384
387
387
  letta/services/tool_executor/composio_tool_executor.py,sha256=ia2AA_WDOseR8Ylam-HEayR7OiyfNSb1sSUrjwqlmFM,2308
388
- letta/services/tool_executor/core_tool_executor.py,sha256=YfUTxo78FNFPFNc6714RR_ztrf9I1GATs4cZhSbiEag,20503
389
- letta/services/tool_executor/files_tool_executor.py,sha256=QZM0Q9zTsTSOnXq3gV5doy9HB6Mey_QdbAXWHpYlPDU,29045
388
+ letta/services/tool_executor/core_tool_executor.py,sha256=fVB2VlWaQI11xOU0KxmytIu0QZnNwLsutLsGrkCp6A0,20465
389
+ letta/services/tool_executor/files_tool_executor.py,sha256=Mp-6rh7g-q9o-UAdzuteK4Taf-AYaKtKpj7YtPqsmBE,29152
390
390
  letta/services/tool_executor/mcp_tool_executor.py,sha256=x8V8J4Xi1ZVbwfaR_IwnUGRrD9w5wgV4G54sjraVBw4,1676
391
391
  letta/services/tool_executor/multi_agent_tool_executor.py,sha256=dfaZeldEnzJDg2jGHlGy3YXKjsJpokJW1tvVeoCCDrk,5496
392
392
  letta/services/tool_executor/tool_execution_manager.py,sha256=flCbTmtxZvYNcTGNC2MrYWkdPIatqFPTWnI8oJUWTIY,6399
@@ -410,8 +410,8 @@ letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUI
410
410
  letta/templates/template_helper.py,sha256=uHWO1PukgMoIIvgqQdPyHq3o3CQ6mcjUjTGvx9VLGkk,409
411
411
  letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
412
412
  letta/utils.py,sha256=4segcFYPNsPrzMpiouYoV6Qzj4TIHuqtCyzVwAMildM,36172
413
- letta_nightly-0.8.13.dev20250714104447.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
414
- letta_nightly-0.8.13.dev20250714104447.dist-info/METADATA,sha256=Hlcl0xkp1eyp6NgLvLlQ1dEdaAh9ZGpntYlKtqtHOUI,22913
415
- letta_nightly-0.8.13.dev20250714104447.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
416
- letta_nightly-0.8.13.dev20250714104447.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
417
- letta_nightly-0.8.13.dev20250714104447.dist-info/RECORD,,
413
+ letta_nightly-0.8.15.dev20250715080149.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
414
+ letta_nightly-0.8.15.dev20250715080149.dist-info/METADATA,sha256=Dh2ysvY2Hb8DhZNLeOg0M755_YsG8AU0lWjBbgp4UeA,22913
415
+ letta_nightly-0.8.15.dev20250715080149.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
416
+ letta_nightly-0.8.15.dev20250715080149.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
417
+ letta_nightly-0.8.15.dev20250715080149.dist-info/RECORD,,