letta-nightly 0.8.2.dev20250606215616__py3-none-any.whl → 0.8.3.dev20250607104236__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.
Files changed (29) hide show
  1. letta/__init__.py +1 -1
  2. letta/agent.py +15 -11
  3. letta/agents/base_agent.py +1 -1
  4. letta/agents/helpers.py +13 -2
  5. letta/agents/letta_agent.py +23 -5
  6. letta/agents/voice_agent.py +1 -1
  7. letta/agents/voice_sleeptime_agent.py +12 -3
  8. letta/groups/sleeptime_multi_agent_v2.py +12 -2
  9. letta/llm_api/anthropic_client.py +8 -2
  10. letta/orm/passage.py +2 -0
  11. letta/schemas/letta_request.py +6 -0
  12. letta/schemas/passage.py +1 -0
  13. letta/server/rest_api/routers/v1/agents.py +9 -1
  14. letta/server/rest_api/routers/v1/tools.py +7 -2
  15. letta/server/server.py +7 -1
  16. letta/services/agent_manager.py +3 -3
  17. letta/services/context_window_calculator/context_window_calculator.py +1 -1
  18. letta/services/file_processor/file_processor.py +3 -1
  19. letta/services/helpers/agent_manager_helper.py +35 -4
  20. letta/services/mcp/stdio_client.py +5 -1
  21. letta/services/mcp_manager.py +4 -4
  22. letta/services/passage_manager.py +603 -18
  23. letta/services/tool_executor/files_tool_executor.py +9 -2
  24. letta/settings.py +2 -1
  25. {letta_nightly-0.8.2.dev20250606215616.dist-info → letta_nightly-0.8.3.dev20250607104236.dist-info}/METADATA +1 -1
  26. {letta_nightly-0.8.2.dev20250606215616.dist-info → letta_nightly-0.8.3.dev20250607104236.dist-info}/RECORD +29 -29
  27. {letta_nightly-0.8.2.dev20250606215616.dist-info → letta_nightly-0.8.3.dev20250607104236.dist-info}/LICENSE +0 -0
  28. {letta_nightly-0.8.2.dev20250606215616.dist-info → letta_nightly-0.8.3.dev20250607104236.dist-info}/WHEEL +0 -0
  29. {letta_nightly-0.8.2.dev20250606215616.dist-info → letta_nightly-0.8.3.dev20250607104236.dist-info}/entry_points.txt +0 -0
@@ -126,6 +126,13 @@ class LettaFileToolExecutor(ToolExecutor):
126
126
 
127
127
  # TODO: Make this paginated?
128
128
  async def search_files(self, agent_state: AgentState, query: str) -> List[str]:
129
- """Stub for search_files tool."""
129
+ """Search for text within attached files and return passages with their source filenames."""
130
130
  passages = await self.agent_manager.list_source_passages_async(actor=self.actor, agent_id=agent_state.id, query_text=query)
131
- return [p.text for p in passages]
131
+ formatted_results = []
132
+ for p in passages:
133
+ if p.file_name:
134
+ formatted_result = f"[{p.file_name}]:\n{p.text}"
135
+ else:
136
+ formatted_result = p.text
137
+ formatted_results.append(formatted_result)
138
+ return formatted_results
letta/settings.py CHANGED
@@ -28,7 +28,8 @@ class ToolSettings(BaseSettings):
28
28
  mcp_connect_to_server_timeout: float = 30.0
29
29
  mcp_list_tools_timeout: float = 30.0
30
30
  mcp_execute_tool_timeout: float = 60.0
31
- mcp_read_from_config: bool = True # if False, will throw if attempting to read/write from file
31
+ mcp_read_from_config: bool = False # if False, will throw if attempting to read/write from file
32
+ mcp_disable_stdio: bool = False
32
33
 
33
34
 
34
35
  class SummarizerSettings(BaseSettings):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-nightly
3
- Version: 0.8.2.dev20250606215616
3
+ Version: 0.8.3.dev20250607104236
4
4
  Summary: Create LLM agents with long-term memory and custom tools
5
5
  License: Apache License
6
6
  Author: Letta Team
@@ -1,16 +1,16 @@
1
- letta/__init__.py,sha256=-m-rsvdp1XG2DhN-UF0kiickldXMabzzmMNcjhZCV6Y,982
2
- letta/agent.py,sha256=UcF2axqMRwtoH2RTgGl7SUEldpcK941VbPeoQz5Vq8s,87774
1
+ letta/__init__.py,sha256=WWdMj9R3O70k9tdWb7I-zy4ASaOUJb8ykLarDWBNDv0,982
2
+ letta/agent.py,sha256=pN-wAv6_VrD3qVd-1OzsKTkA201epwqUAVkW8zOuEQI,88264
3
3
  letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- letta/agents/base_agent.py,sha256=2UlP0EgL4tLiSCmF4mPJYF9sCB3ddK9hpZf70MAsTYU,5548
4
+ letta/agents/base_agent.py,sha256=jNcIJDMIKdD-aJaZd951eBHxPoCoJlp65DUIVABb3aQ,5562
5
5
  letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
6
6
  letta/agents/ephemeral_summary_agent.py,sha256=E7RxBfRWKIs9R0gZKXZdj09svGKFSqOxpdLZYTSbXYM,4025
7
7
  letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
8
- letta/agents/helpers.py,sha256=tDYbRCihjxeL1v1oU_QiheL95lSfZPLEriJcwuV4MGc,7819
9
- letta/agents/letta_agent.py,sha256=spZBXhvuoIdx_gyjWCnMMVbHJzOryaclCAvo-MbywzU,46582
8
+ letta/agents/helpers.py,sha256=koKbsUOM5Nd3eCBRkcnKlTz6r9QBei_0WzuxLCoji-4,8213
9
+ letta/agents/letta_agent.py,sha256=XApiEFkkKSl6CbFIFCmANfH-jXppkBUpUYeoMG3Zec0,47698
10
10
  letta/agents/letta_agent_batch.py,sha256=DCP51EbmfWiLiejWHanh0uVd3MwRcic65bLF0bFRmKE,27727
11
11
  letta/agents/prompts/summary_system_prompt.txt,sha256=ftc-aEhfJYN6FlQF4I-I5me-BAh_T2nsTwitPZpZisE,2313
12
- letta/agents/voice_agent.py,sha256=6ySY_89jGQqF0185mAgwmicrU0bFCMSxXxCQtPtuYfI,22209
13
- letta/agents/voice_sleeptime_agent.py,sha256=llZIn_eHDqzx94FZG29fEPY0fmkcgAFQPsz_ztr0FEw,8016
12
+ letta/agents/voice_agent.py,sha256=rElu-iXphtSNbfI0a0aF7KaDwmE60-qC6SDNwZtFCpw,22223
13
+ letta/agents/voice_sleeptime_agent.py,sha256=TKrF-d7_ZWVql0LcteO6IkfGdg7QKZFfBGEcHjqamRw,8238
14
14
  letta/cli/cli.py,sha256=tKtghlX36Rp0_HbkMosvlAapL07JXhA0vKLGTNKnxSQ,1615
15
15
  letta/cli/cli_load.py,sha256=paAyDq6e-8D1ZWo8JvXIiA1N7FeKcQMSWgcr2vU_1Gs,319
16
16
  letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -49,7 +49,7 @@ letta/groups/dynamic_multi_agent.py,sha256=OLCxhICFLYyx8wjKGPr1INc6pniEuk4YGZyZh
49
49
  letta/groups/helpers.py,sha256=VABgj684cInv5TXUZ31baTX4nXLghNe0DCnPiEBdjHw,4435
50
50
  letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
51
51
  letta/groups/sleeptime_multi_agent.py,sha256=Wo9uc-ZD99SlW3bcP91EwXc3kIX5t8sCcY1JMJjuiRY,10462
52
- letta/groups/sleeptime_multi_agent_v2.py,sha256=h9iA9hGSwZvxOq3CrSCMAwuyH-SVak0QLaFxNvu0AV4,12478
52
+ letta/groups/sleeptime_multi_agent_v2.py,sha256=4pec5tgqys8fUPipxa89XvFakLOszPiDbPe4yd2dNZw,12999
53
53
  letta/groups/supervisor_multi_agent.py,sha256=ml8Gi9gyVjPuVZjAJAkpGZDjnM7GOS50NkKf5SIutvQ,4455
54
54
  letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
55
55
  letta/helpers/composio_helpers.py,sha256=MwfmLt7tgjvxAXLHpx9pa5QolxcqoCbofb-30-DVpsI,1714
@@ -77,7 +77,7 @@ letta/jobs/scheduler.py,sha256=VpRyO2vuETNrarHOIWYctAkrD4WFtV57buUSHaLE89Y,10240
77
77
  letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
78
78
  letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
79
  letta/llm_api/anthropic.py,sha256=uR_nHffOl1KWHTos_7Pz36h1xFckCyhWVC7bEJ3isDk,47286
80
- letta/llm_api/anthropic_client.py,sha256=wIvVrbM7wEA97oqn1TvATFYC8eCpf_tU8HHN-KnQ2nM,27106
80
+ letta/llm_api/anthropic_client.py,sha256=B4q0CtJGXR8nNEDAcGdgBOxT5LCOUr9lIPIDoyrSZdo,27499
81
81
  letta/llm_api/aws_bedrock.py,sha256=kAPpKPRe4ZUa6fkxFbo8xwQgq4fJf3QoZEAP1LOCfaw,4168
82
82
  letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
83
83
  letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
@@ -162,7 +162,7 @@ letta/orm/mcp_server.py,sha256=m9igzbLmfcnb0xd7Pn4yNpxgx00XER1xSoGznjvCiyk,1896
162
162
  letta/orm/message.py,sha256=N4NumnqWlBEIFV1-lcBzAB_DxrMwLSIDngBJpQt4PuU,4922
163
163
  letta/orm/mixins.py,sha256=9c79Kfr-Z1hL-SDYKeoptx_yMTbBwJJBo9nrKEzSDAc,1622
164
164
  letta/orm/organization.py,sha256=VTeoGU8RHkLKqeN2PW7ztsZSTQgQ7FwnbivQIEilI5U,4201
165
- letta/orm/passage.py,sha256=KTnEKr_Wpxlall2KyHcTn4f-InHJ7Id2ebT7zGxouQ8,3701
165
+ letta/orm/passage.py,sha256=cgk9hM17blNCDG_Ql0oWRO82Gs5LL7YQ2YDslEQ5_o0,3808
166
166
  letta/orm/provider.py,sha256=KxIyUijtFapxXsgD86tWCRt1sG0TIETEyqlHEUWB7Fg,1312
167
167
  letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
168
168
  letta/orm/sandbox_config.py,sha256=zOCvORexDBt16mc6A3U65EI6_2Xe3Roh7k2asLeFMps,4242
@@ -236,7 +236,7 @@ letta/schemas/job.py,sha256=VFpaGj2wigAx8VRUCuep9eN7Wsx8f23PHNK8M7R1das,3711
236
236
  letta/schemas/letta_base.py,sha256=DuMqiNFmYwTAsXUHYdX--EWgtFUVzph5ptLZvu7aguI,3988
237
237
  letta/schemas/letta_message.py,sha256=RGmH8WFhKejqQJVhf6QT3vcL0P2wJI9gMnDIeshUM-w,14966
238
238
  letta/schemas/letta_message_content.py,sha256=eF2UEDofQx7S_nS1jc9MZypP4EGVWj7zdiTDAwH3pig,6503
239
- letta/schemas/letta_request.py,sha256=acGJDmrv804Xe0432Vnk6_yD8aUt4LZwK9lQKm56uss,1943
239
+ letta/schemas/letta_request.py,sha256=4qfOVBC-R1cDQXImv3GwjjobzEgiqoY5hgKcFx8DhBw,2255
240
240
  letta/schemas/letta_response.py,sha256=lZ_uCwSmV7g7UCBxNyU_r-FFcXAf6_pBsFqgWJ-WkBs,7955
241
241
  letta/schemas/llm_batch_job.py,sha256=i8m58-EFF0xGD7cYfu-LRlbvYZwv5y2B14ckmuRQ_IM,2896
242
242
  letta/schemas/llm_config.py,sha256=EswzTtCXDA9xIRJd8Mu5WUe44UCT9bvY2DeDkOGvHx0,8660
@@ -250,7 +250,7 @@ letta/schemas/openai/chat_completions.py,sha256=l0e9sT9boTD5VBU5YtJ0s7qUtCfFGB2K
250
250
  letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNosmLVSuhXYa_xU,357
251
251
  letta/schemas/openai/openai.py,sha256=i6r9WqLXGy5MbEZVzckilK_V4ticGk_ePrq8I4dMwe4,7848
252
252
  letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
253
- letta/schemas/passage.py,sha256=RG0vkaewEu4a_NAZM-FVyMammHjqpPP0RDYAdu27g6A,3723
253
+ letta/schemas/passage.py,sha256=zO2azPqob_kM4XudOclcj29Ohnxd7qUbRqo75aTwWTo,3830
254
254
  letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
255
255
  letta/schemas/providers.py,sha256=1vK-kwMqP5c4UtrdZYbJ1DGxUh6wXRDcvtdeabNbjqk,64270
256
256
  letta/schemas/response_format.py,sha256=pXNsjbtpA3Tf8HsDyIa40CSmoUbVR_7n2WOfQaX4aFs,2204
@@ -289,7 +289,7 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
289
289
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
290
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
291
291
  letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
292
- letta/server/rest_api/routers/v1/agents.py,sha256=ZRk3x-S0Jq1x1c8vGh2k5junC_3IqhJ_7Mpr6tyEfoo,42648
292
+ letta/server/rest_api/routers/v1/agents.py,sha256=igI1FUCMLiJVOz0cNliauUqQrJw958aUWMWeYuXwEJc,43288
293
293
  letta/server/rest_api/routers/v1/blocks.py,sha256=bxezefb92YWkM9mTuamhqq9AQPPRwhKeCejFKJqwD9s,4817
294
294
  letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
295
295
  letta/server/rest_api/routers/v1/groups.py,sha256=mxNwO0HQF67DRmJJs8emR-FDRUtDrJD_iOZo2E1mtAQ,10802
@@ -306,13 +306,13 @@ letta/server/rest_api/routers/v1/sources.py,sha256=aeeTCS5ca0DzbI8CTUYFHLPzagMAP
306
306
  letta/server/rest_api/routers/v1/steps.py,sha256=P6pnSRI1ZJesqQdPm9x1bw-j_0UaH_pAtcHXyko8_8Q,3477
307
307
  letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
308
308
  letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
309
- letta/server/rest_api/routers/v1/tools.py,sha256=XMpKYhJBAoAwbPbXyo0xrRYWYJUYMz8XZZtXXNLsG40,22150
309
+ letta/server/rest_api/routers/v1/tools.py,sha256=LK5rlNzMla3OLbdZwo42hpLaG1xKHTIr8ParIwLRr4c,22429
310
310
  letta/server/rest_api/routers/v1/users.py,sha256=a0J3Ad8kWHxi3vUJB5r9K2GmiplSABZXwhA83o8HbpI,2367
311
311
  letta/server/rest_api/routers/v1/voice.py,sha256=NZa7ksEqXTWSqh7CqmbVMClO7wOmrqlRnSqFi6Qh-WM,1949
312
312
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
313
313
  letta/server/rest_api/streaming_response.py,sha256=yYTuZHfuZ-DYYbA1Ta6axkBn5MvC6OHuVRHSiBqRNUk,3939
314
314
  letta/server/rest_api/utils.py,sha256=GhSl-MGhIZzn-whJWNp90WqEzzbx100X8HF-fzCRQjc,17332
315
- letta/server/server.py,sha256=4M116VxaItLbC5OT4X1-1COJYD44NBcT3FjDUs7sZKI,110910
315
+ letta/server/server.py,sha256=kWXIPi9rXrsef6uBWsgJgMVeoOUdAsWtJ8t31kIYZDs,111243
316
316
  letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
317
317
  letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
318
318
  letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
@@ -326,10 +326,10 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
326
326
  letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
327
327
  letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
328
328
  letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
- letta/services/agent_manager.py,sha256=lo6FIDmLWSGWw8_b3djaPFWcl5N73o7nSsQI5HBcOCI,115215
329
+ letta/services/agent_manager.py,sha256=GuJrUiSguWz3yEbWtBbq2Nk0d2ZdHAzNRd0U0RDmK3E,115245
330
330
  letta/services/block_manager.py,sha256=L_uy7lrbBMQjFH8kvWwDJNXyFLGvAvEOWzevGjaI1pU,22740
331
331
  letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
- letta/services/context_window_calculator/context_window_calculator.py,sha256=g6FdOZJudpCdAhSX2BzTFEToVARLm-gXML8_b7MD6vU,6513
332
+ letta/services/context_window_calculator/context_window_calculator.py,sha256=H0-Ello1DHV28MnzMseWrg--jarDc6YwCcgwPlWjtZk,6527
333
333
  letta/services/context_window_calculator/token_counter.py,sha256=Ai9-aPkNvhhMTj9zlvdiQAdVqroTzIyAn0TrHpHNQZY,2954
334
334
  letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
335
  letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -337,14 +337,14 @@ letta/services/file_processor/chunker/line_chunker.py,sha256=s4VvUHbC6cDqbV0jjJz
337
337
  letta/services/file_processor/chunker/llama_index_chunker.py,sha256=_QaWzA57sfgCk6KNMzvvEyNAXEBX26IVU7n4_Usl_S0,843
338
338
  letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
339
  letta/services/file_processor/embedder/openai_embedder.py,sha256=56U-uVbcB7NdmfEg7XMIqiMb8S7DHmv7wBpjAKO_v10,3301
340
- letta/services/file_processor/file_processor.py,sha256=9YVwnuRbETLu8EcWKFXA5QDqVBz3oPuudGWqBW1ZzmM,6241
340
+ letta/services/file_processor/file_processor.py,sha256=9gREq1eGiD_OJyWJ5rXjKolxjJsdUEwBb7u5ZlWAK38,6322
341
341
  letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
342
342
  letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
343
343
  letta/services/file_processor/parser/mistral_parser.py,sha256=69IcBz0SsmgSWCZK7iEnZSzt6jOeTgxLH5CitLAjGMw,2367
344
344
  letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  letta/services/files_agents_manager.py,sha256=EJMYx6ez0JYiSebJQwPOjz13ozB_ROSPtkqW5ODMklc,10291
346
346
  letta/services/group_manager.py,sha256=X2gKKUGKTXGRMC8YjwmE6EOB1cVM4lo31eCnmog7dPQ,23368
347
- letta/services/helpers/agent_manager_helper.py,sha256=ZwK4JQR3jk4xdXPOKPwh9Gtwa6q0OsoceWegTQ7Smg0,38769
347
+ letta/services/helpers/agent_manager_helper.py,sha256=k-yu8LrF59VXOOJj3vk_yWvpc9Puk9dGVAMJ5cEVwrA,40067
348
348
  letta/services/helpers/tool_execution_helper.py,sha256=cf_XHbJYAGNn2t1iflO6QhzPfbFkr1miFJQar-NSpR0,7764
349
349
  letta/services/helpers/tool_parser_helper.py,sha256=-prOafgL7WurKi-MZKXmmvb2Bniq8tsCeGBYSKhIdug,4265
350
350
  letta/services/identity_manager.py,sha256=L8EYGYXA9sveLwPCTYZIdYZwOMnHex47TBiMYcco_y4,10575
@@ -353,12 +353,12 @@ letta/services/llm_batch_manager.py,sha256=w0gXMQw4q7jf6FKiibtIcWHyaLziJpiiL7qjZ
353
353
  letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
354
  letta/services/mcp/base_client.py,sha256=0XC9ywajuW7SsJmMR1TOlrPcC4F0d7OsazWBz0k0P6s,2643
355
355
  letta/services/mcp/sse_client.py,sha256=uTIrwhZVhBiCHLYw5nNvjT5fm2AyYRzXmAPLv4wQWgc,942
356
- letta/services/mcp/stdio_client.py,sha256=JXXARREZb2VY1Ff7GaZpx3Onk6solEIjC0zXyTQVb54,855
356
+ letta/services/mcp/stdio_client.py,sha256=NyIBVDoRx0-O9KMdXzZFsy2hZZzBaELpy3I52hiJTbY,979
357
357
  letta/services/mcp/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
358
- letta/services/mcp_manager.py,sha256=UxX3_3WXA_BuWJ5vRrw3ULicPcNB2EnofVEzd58nmQI,14171
358
+ letta/services/mcp_manager.py,sha256=VLwgpMriw0NK4kCTKm396qJThGgVYBtiCa_5Dw3fDm4,14213
359
359
  letta/services/message_manager.py,sha256=UAZ_KwolQP99ePs-HBOroIYiwSkMSe4jHVQ33NGsZ48,27168
360
360
  letta/services/organization_manager.py,sha256=5ML4OiUUSPw-Wi_OsN68N4fEEbq3jX_Ny0DHGKHjXJE,5904
361
- letta/services/passage_manager.py,sha256=akdc-XaRQlyGEfywW6t7S8_1ReCsOLUxh44BuVYNj_0,18915
361
+ letta/services/passage_manager.py,sha256=H5c47foff9qKZviYck8Tkpd4qUl4N2qcUvy5xdTJrxA,43263
362
362
  letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
363
363
  letta/services/provider_manager.py,sha256=rkxgPrBn_JYYiztyryySKM4bCEibRJq8diOGHHvJxFY,7978
364
364
  letta/services/sandbox_config_manager.py,sha256=fcJkXCaA6vmrnTusHhns-c_aRXcPlFLICPGdWDaY8XQ,26138
@@ -372,7 +372,7 @@ letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
372
372
  letta/services/tool_executor/builtin_tool_executor.py,sha256=NvxTiuW8XhMG_qSSc0AFoZ6Jy6q_2GXacJlLTlyzhHM,4586
373
373
  letta/services/tool_executor/composio_tool_executor.py,sha256=eBRNd1SItYkjo3Jg4qTzjxc9dHkSaSYzdelj-k9XQxg,2148
374
374
  letta/services/tool_executor/core_tool_executor.py,sha256=zX3SDeFVBU11yroX207TKtWyvJMQWbO_WOviAQMcnoA,20497
375
- letta/services/tool_executor/files_tool_executor.py,sha256=GY8PQJwo6PtaaH3GNL25j-xMRMcftArwd3m42sY8sQE,5547
375
+ letta/services/tool_executor/files_tool_executor.py,sha256=CHxDJVzQyiWdtsVkpKymBXqIgGp8WlKUCc2RYvmYXz4,5863
376
376
  letta/services/tool_executor/mcp_tool_executor.py,sha256=x8V8J4Xi1ZVbwfaR_IwnUGRrD9w5wgV4G54sjraVBw4,1676
377
377
  letta/services/tool_executor/multi_agent_tool_executor.py,sha256=Lfn9aEQSHVxS6JL0uOMGsIhHDHPv2agVA7qhNoVuyXw,5293
378
378
  letta/services/tool_executor/tool_execution_manager.py,sha256=oEKa-3Qsbi9LfBxjnl4VjjJ8aHIdMLrTf7SCg9IXU5w,6161
@@ -385,7 +385,7 @@ letta/services/tool_sandbox/base.py,sha256=mOIYy1lXO7yFnrgsNQLiRW8og5V66HGZL9mww
385
385
  letta/services/tool_sandbox/e2b_sandbox.py,sha256=YCcs0OEC1xNuloPT122bep00QxrFswN-g4WVnqiNyxo,8394
386
386
  letta/services/tool_sandbox/local_sandbox.py,sha256=hJq3h92Z9iq3CIMKEaJMSeW_Gmqktw18I2kVxP3y5dI,11772
387
387
  letta/services/user_manager.py,sha256=RJV-r9XNdTnOG-h2dfjZkpXPJ_V2LvoE_o9irtCEWZI,9381
388
- letta/settings.py,sha256=ZDvNkYJTSvMZkWEGy-Z6xe9SpRQs1GJbc_r9_8RiUmY,9825
388
+ letta/settings.py,sha256=thyhl0TrOFEfRqj8xE8FZMd4klhuT8AVTpqxQSyWyU8,9862
389
389
  letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
390
390
  letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
391
391
  letta/system.py,sha256=mKxmvvekuP8mdgsebRINGBoFbUdJhxLJ260crPBNVyk,8386
@@ -394,8 +394,8 @@ letta/templates/sandbox_code_file.py.j2,sha256=zgzaboDZVtM15XkxILnhiKisF7DSUoI2Y
394
394
  letta/templates/template_helper.py,sha256=uHWO1PukgMoIIvgqQdPyHq3o3CQ6mcjUjTGvx9VLGkk,409
395
395
  letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
396
396
  letta/utils.py,sha256=dh3FSXy_7qfN4vCd0dlbyDMeFMbBBxR0nolh0-vAcNU,33205
397
- letta_nightly-0.8.2.dev20250606215616.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
398
- letta_nightly-0.8.2.dev20250606215616.dist-info/METADATA,sha256=btASTDdh_ad0pzGY2MozWLOKDPW-WD5aqSznHwdf6SA,22789
399
- letta_nightly-0.8.2.dev20250606215616.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
400
- letta_nightly-0.8.2.dev20250606215616.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
401
- letta_nightly-0.8.2.dev20250606215616.dist-info/RECORD,,
397
+ letta_nightly-0.8.3.dev20250607104236.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
398
+ letta_nightly-0.8.3.dev20250607104236.dist-info/METADATA,sha256=kJ_LbQzGREVaXVCoD6DkvYzK-X0OUyQZ2eP7O61lc5E,22789
399
+ letta_nightly-0.8.3.dev20250607104236.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
400
+ letta_nightly-0.8.3.dev20250607104236.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
401
+ letta_nightly-0.8.3.dev20250607104236.dist-info/RECORD,,