letta-nightly 0.8.15.dev20250720104313__py3-none-any.whl → 0.8.16.dev20250721104533__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 (99) hide show
  1. letta/__init__.py +1 -1
  2. letta/agent.py +27 -11
  3. letta/agents/helpers.py +1 -1
  4. letta/agents/letta_agent.py +518 -322
  5. letta/agents/letta_agent_batch.py +1 -2
  6. letta/agents/voice_agent.py +15 -17
  7. letta/client/client.py +3 -3
  8. letta/constants.py +5 -0
  9. letta/embeddings.py +0 -2
  10. letta/errors.py +8 -0
  11. letta/functions/function_sets/base.py +3 -3
  12. letta/functions/helpers.py +2 -3
  13. letta/groups/sleeptime_multi_agent.py +0 -1
  14. letta/helpers/composio_helpers.py +2 -2
  15. letta/helpers/converters.py +1 -1
  16. letta/helpers/pinecone_utils.py +8 -0
  17. letta/helpers/tool_rule_solver.py +13 -18
  18. letta/llm_api/aws_bedrock.py +16 -2
  19. letta/llm_api/cohere.py +1 -1
  20. letta/llm_api/openai_client.py +1 -1
  21. letta/local_llm/grammars/gbnf_grammar_generator.py +1 -1
  22. letta/local_llm/llm_chat_completion_wrappers/zephyr.py +14 -14
  23. letta/local_llm/utils.py +1 -2
  24. letta/orm/agent.py +3 -3
  25. letta/orm/block.py +4 -4
  26. letta/orm/files_agents.py +0 -1
  27. letta/orm/identity.py +2 -0
  28. letta/orm/mcp_server.py +0 -2
  29. letta/orm/message.py +140 -14
  30. letta/orm/organization.py +5 -5
  31. letta/orm/passage.py +4 -4
  32. letta/orm/source.py +1 -1
  33. letta/orm/sqlalchemy_base.py +61 -39
  34. letta/orm/step.py +2 -0
  35. letta/otel/db_pool_monitoring.py +308 -0
  36. letta/otel/metric_registry.py +94 -1
  37. letta/otel/sqlalchemy_instrumentation.py +548 -0
  38. letta/otel/sqlalchemy_instrumentation_integration.py +124 -0
  39. letta/otel/tracing.py +37 -1
  40. letta/schemas/agent.py +0 -3
  41. letta/schemas/agent_file.py +283 -0
  42. letta/schemas/block.py +0 -3
  43. letta/schemas/file.py +28 -26
  44. letta/schemas/letta_message.py +15 -4
  45. letta/schemas/memory.py +1 -1
  46. letta/schemas/message.py +31 -26
  47. letta/schemas/openai/chat_completion_response.py +0 -1
  48. letta/schemas/providers.py +20 -0
  49. letta/schemas/source.py +11 -13
  50. letta/schemas/step.py +12 -0
  51. letta/schemas/tool.py +0 -4
  52. letta/serialize_schemas/marshmallow_agent.py +14 -1
  53. letta/serialize_schemas/marshmallow_block.py +23 -1
  54. letta/serialize_schemas/marshmallow_message.py +1 -3
  55. letta/serialize_schemas/marshmallow_tool.py +23 -1
  56. letta/server/db.py +110 -6
  57. letta/server/rest_api/app.py +85 -73
  58. letta/server/rest_api/routers/v1/agents.py +68 -53
  59. letta/server/rest_api/routers/v1/blocks.py +2 -2
  60. letta/server/rest_api/routers/v1/jobs.py +3 -0
  61. letta/server/rest_api/routers/v1/organizations.py +2 -2
  62. letta/server/rest_api/routers/v1/sources.py +18 -2
  63. letta/server/rest_api/routers/v1/tools.py +11 -12
  64. letta/server/rest_api/routers/v1/users.py +1 -1
  65. letta/server/rest_api/streaming_response.py +13 -5
  66. letta/server/rest_api/utils.py +8 -25
  67. letta/server/server.py +11 -4
  68. letta/server/ws_api/server.py +2 -2
  69. letta/services/agent_file_manager.py +616 -0
  70. letta/services/agent_manager.py +133 -46
  71. letta/services/block_manager.py +38 -17
  72. letta/services/file_manager.py +106 -21
  73. letta/services/file_processor/file_processor.py +93 -0
  74. letta/services/files_agents_manager.py +28 -0
  75. letta/services/group_manager.py +4 -5
  76. letta/services/helpers/agent_manager_helper.py +57 -9
  77. letta/services/identity_manager.py +22 -0
  78. letta/services/job_manager.py +210 -91
  79. letta/services/llm_batch_manager.py +9 -6
  80. letta/services/mcp/stdio_client.py +1 -2
  81. letta/services/mcp_manager.py +0 -1
  82. letta/services/message_manager.py +49 -26
  83. letta/services/passage_manager.py +0 -1
  84. letta/services/provider_manager.py +1 -1
  85. letta/services/source_manager.py +114 -5
  86. letta/services/step_manager.py +36 -4
  87. letta/services/telemetry_manager.py +9 -2
  88. letta/services/tool_executor/builtin_tool_executor.py +5 -1
  89. letta/services/tool_executor/core_tool_executor.py +3 -3
  90. letta/services/tool_manager.py +95 -20
  91. letta/services/user_manager.py +4 -12
  92. letta/settings.py +23 -6
  93. letta/system.py +1 -1
  94. letta/utils.py +26 -2
  95. {letta_nightly-0.8.15.dev20250720104313.dist-info → letta_nightly-0.8.16.dev20250721104533.dist-info}/METADATA +3 -2
  96. {letta_nightly-0.8.15.dev20250720104313.dist-info → letta_nightly-0.8.16.dev20250721104533.dist-info}/RECORD +99 -94
  97. {letta_nightly-0.8.15.dev20250720104313.dist-info → letta_nightly-0.8.16.dev20250721104533.dist-info}/LICENSE +0 -0
  98. {letta_nightly-0.8.15.dev20250720104313.dist-info → letta_nightly-0.8.16.dev20250721104533.dist-info}/WHEEL +0 -0
  99. {letta_nightly-0.8.15.dev20250720104313.dist-info → letta_nightly-0.8.16.dev20250721104533.dist-info}/entry_points.txt +0 -0
letta/utils.py CHANGED
@@ -23,6 +23,7 @@ from urllib.parse import urljoin, urlparse
23
23
  import demjson3 as demjson
24
24
  import tiktoken
25
25
  from pathvalidate import sanitize_filename as pathvalidate_sanitize_filename
26
+ from sqlalchemy import text
26
27
 
27
28
  import letta
28
29
  from letta.constants import (
@@ -35,8 +36,12 @@ from letta.constants import (
35
36
  TOOL_CALL_ID_MAX_LEN,
36
37
  )
37
38
  from letta.helpers.json_helpers import json_dumps, json_loads
39
+ from letta.log import get_logger
38
40
  from letta.schemas.openai.chat_completion_response import ChatCompletionResponse
39
41
 
42
+ logger = get_logger(__name__)
43
+
44
+
40
45
  DEBUG = False
41
46
  if "LOG_LEVEL" in os.environ:
42
47
  if os.environ["LOG_LEVEL"] == "DEBUG":
@@ -578,7 +583,7 @@ def annotate_message_json_list_with_tool_calls(messages: list[dict], allow_tool_
578
583
  # If we find a function call w/o a tool call ID annotation, annotate it
579
584
  if message["role"] == "assistant" and "function_call" in message:
580
585
  if "tool_call_id" in message and message["tool_call_id"] is not None:
581
- printd(f"Message already has tool_call_id")
586
+ printd("Message already has tool_call_id")
582
587
  tool_call_id = message["tool_call_id"]
583
588
  else:
584
589
  tool_call_id = str(uuid.uuid4())
@@ -620,7 +625,7 @@ def annotate_message_json_list_with_tool_calls(messages: list[dict], allow_tool_
620
625
 
621
626
  assistant_tool_call = message["tool_calls"][0]
622
627
  if "id" in assistant_tool_call and assistant_tool_call["id"] is not None:
623
- printd(f"Message already has id (tool_call_id)")
628
+ printd("Message already has id (tool_call_id)")
624
629
  tool_call_id = assistant_tool_call["id"]
625
630
  else:
626
631
  tool_call_id = str(uuid.uuid4())
@@ -1182,3 +1187,22 @@ class NullCancellationSignal(CancellationSignal):
1182
1187
 
1183
1188
  async def check_and_raise_if_cancelled(self):
1184
1189
  pass
1190
+
1191
+
1192
+ async def get_latest_alembic_revision() -> str:
1193
+ """Get the current alembic revision ID from the alembic_version table."""
1194
+ from letta.server.db import db_registry
1195
+
1196
+ try:
1197
+ async with db_registry.async_session() as session:
1198
+ result = await session.execute(text("SELECT version_num FROM alembic_version"))
1199
+ row = result.fetchone()
1200
+
1201
+ if row:
1202
+ return row[0]
1203
+ else:
1204
+ return "unknown"
1205
+
1206
+ except Exception as e:
1207
+ logger.error(f"Error getting latest alembic revision: {e}")
1208
+ return "unknown"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-nightly
3
- Version: 0.8.15.dev20250720104313
3
+ Version: 0.8.16.dev20250721104533
4
4
  Summary: Create LLM agents with long-term memory and custom tools
5
5
  License: Apache License
6
6
  Author: Letta Team
@@ -70,6 +70,7 @@ Requires-Dist: openai (>=1.60.0,<2.0.0)
70
70
  Requires-Dist: opentelemetry-api (==1.30.0)
71
71
  Requires-Dist: opentelemetry-exporter-otlp (==1.30.0)
72
72
  Requires-Dist: opentelemetry-instrumentation-requests (==0.51b0)
73
+ Requires-Dist: opentelemetry-instrumentation-sqlalchemy (==0.51b0)
73
74
  Requires-Dist: opentelemetry-sdk (==1.30.0)
74
75
  Requires-Dist: pathvalidate (>=3.2.1,<4.0.0)
75
76
  Requires-Dist: pexpect (>=4.9.0,<5.0.0) ; extra == "dev" or extra == "all"
@@ -104,7 +105,7 @@ Requires-Dist: tavily-python (>=0.7.2,<0.8.0)
104
105
  Requires-Dist: tqdm (>=4.66.1,<5.0.0)
105
106
  Requires-Dist: typer (>=0.15.2,<0.16.0)
106
107
  Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server" or extra == "desktop" or extra == "all"
107
- Requires-Dist: uvloop (>=0.21.0,<0.22.0) ; extra == "experimental" or extra == "all"
108
+ Requires-Dist: uvloop (>=0.21.0,<0.22.0) ; extra == "all"
108
109
  Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "external-tools" or extra == "tests" or extra == "desktop" or extra == "all"
109
110
  Description-Content-Type: text/markdown
110
111
 
@@ -1,41 +1,41 @@
1
- letta/__init__.py,sha256=FAnQMTDhGVFB9Yp7UA48aWdetpgmWoC5hEr9inOigaw,1222
2
- letta/agent.py,sha256=esW2W5hBzO7aPr7ghEDb_fLnUxgYqBYDq_VWtQDrB0c,89153
1
+ letta/__init__.py,sha256=zbbm-TFa-EITedroTjENuiMAMAONVC5lAA2bnsUnvoc,1222
2
+ letta/agent.py,sha256=yPcqDYIbIilf-vhV2ZiYEnmdOapOE5_zaLHFYscsgSk,89266
3
3
  letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  letta/agents/base_agent.py,sha256=35JcOjA6FUuQRIf4CiPnJSwgniCaDrjM-fVlWmIk68E,7766
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
- letta/agents/helpers.py,sha256=reSrQCEgIz8wE2FKIr-Gm6jsJeihS607BPqFVs_jaK0,10025
9
- letta/agents/letta_agent.py,sha256=5xpKc9qfbjqdkbG5kzjYJ7MdfRAOLeYfHGj0jbmWZGA,57723
10
- letta/agents/letta_agent_batch.py,sha256=cl9_nZYflIZWR23D_x_fUpmMHYITDWu0FUfPW1ivDuw,28031
11
- letta/agents/voice_agent.py,sha256=73zvqCivmKIW-5yQcRziuUqA3EDBGcfgHu3pKGzx0lc,23465
8
+ letta/agents/helpers.py,sha256=9skIeui2yF-5DH9P3bCK1pcegk4nVZAtKMVaDqdQExo,10021
9
+ letta/agents/letta_agent.py,sha256=jLiEpl6o5RFqKTIvHwIZ_PEtgeKFQwwSDMFCzkfZxNI,71872
10
+ letta/agents/letta_agent_batch.py,sha256=VziIBuV1YhYPX-bvPHgDZkZbHtu36AL6cXBUq_TbYLk,28025
11
+ letta/agents/voice_agent.py,sha256=ls9H8aaUh_2zHTPOw9CV1vIgZeGHsmJ_3Ye3rmIs6DQ,23279
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=l_yKUUzl1-qfxFkDHsOMHxSwyzOBbx-2mi0GfI3WlJE,84906
16
+ letta/client/client.py,sha256=8Zp3ZLW3luoJX7tLprhzGeWLEkVYLGnPmDWPo8RBVt8,84903
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=GYOg_IpDxNP7J-1_RkrqrZ1fJQpKSUGSYoyx9Ysq36w,14910
20
+ letta/constants.py,sha256=RQTZ6qKma-SGo0xHyeX1-3MHdzNkfwU3vEaLL75mtDU,15144
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
24
  letta/data_sources/redis_client.py,sha256=6hQLdfsJ3ejNvLuA9Md7YXisgjqBiaw-Yl89xf8ehm8,10701
25
- letta/embeddings.py,sha256=KvC2bl5tARpVY9xcFmw4Cwu1vN0DoH266v2mSUZqwkY,10528
26
- letta/errors.py,sha256=Ef10b2cHXJJ04rXBmOx4Yrr4qwqCh8bAImgoUExahEo,7063
25
+ letta/embeddings.py,sha256=zh_yQCXNhmzIKAwLCXDpACqFiCg4WC9m2HwJz1U8TN8,10526
26
+ letta/errors.py,sha256=9rnGGKN5OzgybIIEOh8y6gPj-4sUCUcuj7uKqdQq4v0,7271
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
- letta/functions/function_sets/base.py,sha256=lhuzqe-nBE9qd2U4wg6IYwvTdpPebTeq-NJGHOrUbLQ,16116
31
+ letta/functions/function_sets/base.py,sha256=jM4bsghPzPnvw2MkbPmvYRSQYsog3K5NSbo0Y0R_6sM,16113
32
32
  letta/functions/function_sets/builtin.py,sha256=tm9KWrWZKhXMoXgd7PSsp-WfS8chhFe7gIdQhT1N5E4,2027
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
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
38
- letta/functions/helpers.py,sha256=uMMq4vQ8ogTWzPpSH2iSJa80jZD3I7lZ6Cm0medwZbI,25161
38
+ letta/functions/helpers.py,sha256=-NeFjYNhKm_qAwZaxZsVr65Pi3PNvcNKwO1IykKIgtc,25155
39
39
  letta/functions/interface.py,sha256=pN1gpDnLISW44gRcic1IX6I6pDwOT9UbkST_4ICuMvQ,2936
40
40
  letta/functions/mcp_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  letta/functions/mcp_client/base_client.py,sha256=yfpJyPpKxbA9Q_LfLDNOIL1EqwHi21LPLRpXx_sZBhc,6373
@@ -49,20 +49,20 @@ letta/functions/types.py,sha256=XzUVHbS72bdKhviFcSZZXq_f9IFR5eOD-cVIcwqANaY,730
49
49
  letta/groups/dynamic_multi_agent.py,sha256=OLCxhICFLYyx8wjKGPr1INc6pniEuk4YGZyZhq2vkiY,12230
50
50
  letta/groups/helpers.py,sha256=yAr05Keoz_7vdzPG6A9x5CsWrJjtvF8A0GSQWDe29UM,4660
51
51
  letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
52
- letta/groups/sleeptime_multi_agent.py,sha256=Wo9uc-ZD99SlW3bcP91EwXc3kIX5t8sCcY1JMJjuiRY,10462
52
+ letta/groups/sleeptime_multi_agent.py,sha256=MCmgLyJubzgst_FaPOCR8BfDmss4MCGEdvnZOLXD8z8,10461
53
53
  letta/groups/sleeptime_multi_agent_v2.py,sha256=yT7MHhrjec7QZ1_9goo1L1c2V3W7mkkcz4BxpxC7i8I,13733
54
54
  letta/groups/supervisor_multi_agent.py,sha256=ml8Gi9gyVjPuVZjAJAkpGZDjnM7GOS50NkKf5SIutvQ,4455
55
55
  letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
56
- letta/helpers/composio_helpers.py,sha256=MwfmLt7tgjvxAXLHpx9pa5QolxcqoCbofb-30-DVpsI,1714
57
- letta/helpers/converters.py,sha256=_-6Ke5ZUtaKYmh8SncGj1ejTG3GyKhZ4ByVCrlcHsOI,15026
56
+ letta/helpers/composio_helpers.py,sha256=X3RaJSqa8z-oXmHJjJjAs1fJroZ5A8yu4-Yg2oDiTdA,1712
57
+ letta/helpers/converters.py,sha256=yvYOBAy2P5M2ucZtfKCMSXuyLiC8w72TVOQwF1ukI94,15026
58
58
  letta/helpers/datetime_helpers.py,sha256=8AwZInX-NX_XQiqej2arozYqfC2ysnWpCJ9ETv8RdL0,4381
59
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=KPoiCoODsU-vJdvCkrnzkxZpflYQVmpMFmZ4lU44e6g,14259
62
+ letta/helpers/pinecone_utils.py,sha256=9dKkHdNif6JNDYk9KPiil6gvbKr0Q69hpxcCg9YJyhE,14723
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
- letta/helpers/tool_rule_solver.py,sha256=avRMQzqxE2r6gRvw7oTImYmkSvuoMHlADPND0__feBw,11620
65
+ letta/helpers/tool_rule_solver.py,sha256=tibShbx0M9AeHBjwumWoR4U7JHuWxBBLbUCgHCmfsLs,11186
66
66
  letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
67
  letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
68
68
  letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
@@ -80,11 +80,11 @@ letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
80
80
  letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
81
  letta/llm_api/anthropic.py,sha256=tbMy4483TySrEmbXD3juM6TpPRrV9_M3Fgp59sDBcqE,47935
82
82
  letta/llm_api/anthropic_client.py,sha256=G4-LmZeM0uaAuPTfPaV-T19MLVii3V__SR5dSRPmGQE,29206
83
- letta/llm_api/aws_bedrock.py,sha256=Vp2lnBuDcyM9cAyvTlmlzLI5Dz0jPg5K-NBBIUteWCs,4775
83
+ letta/llm_api/aws_bedrock.py,sha256=ADZNy_e5IhJeN6wIp2GvirSX9yi8wocSwelyfucluho,5180
84
84
  letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
85
85
  letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
86
86
  letta/llm_api/bedrock_client.py,sha256=_YKrgAJiFOLU0T7dl5J6k4XtLanOkguD075wzLfPgmI,3116
87
- letta/llm_api/cohere.py,sha256=IZ6LXyOFMYjWHTeNG9lvFxCdV_NIl0hY2q9SPFYXNkQ,14849
87
+ letta/llm_api/cohere.py,sha256=uoiRdaymqxEu0-rUVKVK5geGfzV0n_fVcZTYsG7kifg,14848
88
88
  letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,12456
89
89
  letta/llm_api/google_ai_client.py,sha256=xe06nEycZJmZxu_rOvvquqVqNQvTIbDtRo1yEx73tTg,9604
90
90
  letta/llm_api/google_constants.py,sha256=4PKWUNNbBHgHi4K5u9YaHr_8UC3fokfI6Qb6Dfpt4mU,693
@@ -95,14 +95,14 @@ letta/llm_api/llm_client.py,sha256=V5MI0AlM2MnxQPp8b6UB0j-FuzGX-WjRe2jBDIPEUVs,2
95
95
  letta/llm_api/llm_client_base.py,sha256=P678pt6IFDZRJbSkn213trs63k5zdsvdzTw21_iuGlg,8528
96
96
  letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
97
97
  letta/llm_api/openai.py,sha256=4X6wgid4WhVMNTSqSGacKEDP5pnAX7joPemFkKcDG9k,27365
98
- letta/llm_api/openai_client.py,sha256=jd0ECwbyaFiR3Wxk_OHSDbB80_3cWTq6rSm5x0e225c,20436
98
+ letta/llm_api/openai_client.py,sha256=NJXXyu--mc2JgksYxtj_62Luc__nIhe_GZc9Ss6Opnw,20436
99
99
  letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
100
100
  letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
101
  letta/local_llm/chat_completion_proxy.py,sha256=6tFdoB3aIqHO345kPp_RmbrUpy0gt8cbzTODWlMsUyI,13858
102
102
  letta/local_llm/constants.py,sha256=0J9ECx-foZMamMFN3bPodLblwB9-0TXEZuz_Brw-Tx0,1344
103
103
  letta/local_llm/function_parser.py,sha256=QOCp-ipk88VnKJ17h_-oP8_AR3o5QDt4tEd5QTn2P0o,2622
104
104
  letta/local_llm/grammars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
- letta/local_llm/grammars/gbnf_grammar_generator.py,sha256=gvQcxHj7ZlJo62YvoSAe-T8iMcs6E-qxcjYL189eWc4,56347
105
+ letta/local_llm/grammars/gbnf_grammar_generator.py,sha256=jzBTg5_f7pSEnD2lCO4V7AI6oERtgr_C14Bl2J2GIfA,56346
106
106
  letta/local_llm/grammars/json.gbnf,sha256=LNnIFYaChKuE7GU9H7tLThVi8vFnZNzrFJYBU7_HVsY,667
107
107
  letta/local_llm/grammars/json_func_calls_with_inner_thoughts.gbnf,sha256=aHc_OGwEWhrb0_mAkvDI56C3wxZGep2VqvgoPIQ4Ey4,3255
108
108
  letta/local_llm/json_parser.py,sha256=QS6jZoBsodzuvhOE3SfiADNK_wjV88Sje2spXcG-gNQ,7507
@@ -118,7 +118,7 @@ letta/local_llm/llm_chat_completion_wrappers/dolphin.py,sha256=_Ljfhr8HKOEWwFjXR
118
118
  letta/local_llm/llm_chat_completion_wrappers/llama3.py,sha256=AE__YoBIE4U_il7-4EMD0ASfgkSAjmYAvwfV-PxR_lk,15798
119
119
  letta/local_llm/llm_chat_completion_wrappers/simple_summary_wrapper.py,sha256=oorTrARKGnJJY1yUKEVKHejGYyZmXQbHk5-XqP399ak,6212
120
120
  letta/local_llm/llm_chat_completion_wrappers/wrapper_base.py,sha256=DBZqajfHz-yhifkLe-H0i27TL7xv7do2IMTJIKsSBlY,408
121
- letta/local_llm/llm_chat_completion_wrappers/zephyr.py,sha256=yaws_qe0tlRC7ibDXbUHIR7ykbvjaTxl-GT-aMF6kWk,14379
121
+ letta/local_llm/llm_chat_completion_wrappers/zephyr.py,sha256=PMkmDl5l9o44Q3GxjT1XFd72qrZlZPesT0swr_9WNaw,14339
122
122
  letta/local_llm/lmstudio/api.py,sha256=GNhEx4gnFMIdMPSXALlLko8klovZSdFMrBHFftScMqk,7642
123
123
  letta/local_llm/lmstudio/settings.py,sha256=3yPzVnTT6vw3Q6zHy5aOKza9lS-cLF9563EDxTNJPS8,815
124
124
  letta/local_llm/ollama/api.py,sha256=Zm_6BXXbMs2ZcJ5T9FKCMtJ-V47QDCCVgQOYm2AECi4,3637
@@ -127,7 +127,7 @@ letta/local_llm/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
127
127
  letta/local_llm/settings/deterministic_mirostat.py,sha256=kgRikcxYHfIbPFydHW6W7IO9jmp6NeA7JNAhnI3DPsc,1221
128
128
  letta/local_llm/settings/settings.py,sha256=QBuuOLl3OFxN6koBGxFuXSllf4EryQuJCHB5_0IttFU,2962
129
129
  letta/local_llm/settings/simple.py,sha256=HAO2jBJ_hJCEsXWIJcD0sckR0tI0zs3x2CPdf6ORQLs,719
130
- letta/local_llm/utils.py,sha256=AJ65_kGNTZepEYEIC_b7X_FH0_5ANXWpQz6cG1RBBPU,13958
130
+ letta/local_llm/utils.py,sha256=xmLv-owj6goPoue2ccFFyzbe5QhXqNHowqinIPbk7Fc,13956
131
131
  letta/local_llm/vllm/api.py,sha256=2kAGZjc_GH9ILJnVRq-45yfsfKELVfbC9VEl_cIC6vg,2590
132
132
  letta/local_llm/webui/api.py,sha256=kkxncdCFq1vjgvaHOoQ__j7rcDPgC1F64KcEm94Y6Rs,2639
133
133
  letta/local_llm/webui/legacy_api.py,sha256=k3H3y4qp2Fs-XmP24iSIEyvq6wjWFWBzklY3-wRAJNI,2335
@@ -140,50 +140,53 @@ 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=E6cIU7ZXzgQJ4eyAlHSAqowDwxRLwf3Avh8Dsr8IWso,15061
143
+ letta/orm/agent.py,sha256=z4X0Hx1e05dl0bUyxZfM4r_YPOl9lCMpQnfureJ1gCs,15069
144
144
  letta/orm/agents_tags.py,sha256=IM9UxHtcispiieh0EnOIGTk--nGK9XaS6v3jl_cjcWo,1011
145
145
  letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
146
- letta/orm/block.py,sha256=BhjjYiHV5crvES6GDz60J_1MRdePZcvw_YHzTdbIzuU,5870
146
+ letta/orm/block.py,sha256=HCTJMra802Q5zdk7VzSboMhE8q1yT8ZfT5fqeKnL0bY,5875
147
147
  letta/orm/block_history.py,sha256=L8BCcJe9_eMKLPiSxTBzvHdqfHAjJTCePIqkjE0-yP8,2092
148
148
  letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,1128
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
152
  letta/orm/file.py,sha256=qEDAXsj2mUc3MR_DbP9AjUX6OiUjJ3M60OHbw1sOKNc,5338
153
- letta/orm/files_agents.py,sha256=O3t-ZG9XZ5IRzHcI89OsQO5wLv7mfzd3xaJSfG6_XgA,3934
153
+ letta/orm/files_agents.py,sha256=PExm8UsLIhQI3vjH4j933QslrXLa58FzW_0LaF4csqI,3884
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
157
157
  letta/orm/identities_agents.py,sha256=cfIQ6UsbwmjxtGVmFt1ArK2zbKr9k6VWoELuISDnLSc,502
158
158
  letta/orm/identities_blocks.py,sha256=oS0DnDXKzcWtlH2dDFREkNF1JHJ3Kyg8fN9GI8DKtcg,501
159
- letta/orm/identity.py,sha256=DQlyqQtszv8AlP0HYftBbewoHbCr-_vQllzEvNuGrxA,2867
159
+ letta/orm/identity.py,sha256=-nLA2U3wtqsaRsRr2TAFhzqWvttKjQap5ENELJylEZw,3048
160
160
  letta/orm/job.py,sha256=8gXgWiJgA2MFeYgp1XJ4Z9zEIsdZIhIL-xM5hoWur8g,2734
161
161
  letta/orm/job_messages.py,sha256=SgwaYPYwwAC3dBtl9Xye_TWUl9H_-m95S95TTcfPyOg,1245
162
162
  letta/orm/llm_batch_items.py,sha256=pG5Kmb7lUebAlHgl4Gs41fck_Ypw_mMqARmcjR_0rko,2764
163
163
  letta/orm/llm_batch_job.py,sha256=LaeOrnNf6FMm6ff2kOCEAjtbSuz4C5KYU5OmM90F1PY,2368
164
- letta/orm/mcp_server.py,sha256=RWbLfTQ2LHIh2jU9QsGKhsQpN-8npNw8vTSD_S-PwMo,2295
165
- letta/orm/message.py,sha256=N4NumnqWlBEIFV1-lcBzAB_DxrMwLSIDngBJpQt4PuU,4922
164
+ letta/orm/mcp_server.py,sha256=PT3Edqn0Er1ZDExsXdjhC--iGL4Vi3XjPPgxNfbNRDA,2155
165
+ letta/orm/message.py,sha256=HgA6Rnk3s9BPn-1uWZvImE2BDQYfNpQPYdz5Lu89vFg,8991
166
166
  letta/orm/mixins.py,sha256=9c79Kfr-Z1hL-SDYKeoptx_yMTbBwJJBo9nrKEzSDAc,1622
167
- letta/orm/organization.py,sha256=IY2sEtwW8v9JoryMjQBG1cF1KmPeV7vXAqSNGL7zI0Q,3863
168
- letta/orm/passage.py,sha256=YR-HNM1U-P2wb0VNU9zah-EoGsoHqnKBVT7OQA6V_Rk,3694
167
+ letta/orm/organization.py,sha256=zWn2S86l3QpS2wTmOpOxBSRx93jRWX39NafBY_4C2P8,3888
168
+ letta/orm/passage.py,sha256=z3IU4esAXJ9v01F36CzwAOrmylkgD-7zsYlRhTch9ug,3767
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=3gMmvTCAD_RWLFtJ2ZhVL5eEs_OaeauVE3JKA6O6DAI,1416
172
+ letta/orm/source.py,sha256=lXuV7kq3xa7YsLQmrGsD3dB7Tp6B3CiCE6YcvJgmZSE,1415
173
173
  letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
174
- letta/orm/sqlalchemy_base.py,sha256=N90RIye2ubLRklJAPEVrLkh7sV30DKLcFmAKHrCgXcY,44438
174
+ letta/orm/sqlalchemy_base.py,sha256=mw_leKRvSskRswfiUTYP3Jk9Q7Io9rQJWyVEUGWyTaw,44900
175
175
  letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
176
- letta/orm/step.py,sha256=tGoyY_TYmucBlvm79Z2cjJolKiLe3xUpbgsyvwetwK8,3689
176
+ letta/orm/step.py,sha256=7Rm0H_LIUf3kErsRj-KBFCGfXiCa8I2J2q5Io0O5lsQ,3885
177
177
  letta/orm/tool.py,sha256=oTDbvSNNW_jHjYbJqqsLLuXf9uFRTZTZh33TXAcZ898,2839
178
178
  letta/orm/tools_agents.py,sha256=r6t-V21w2_mG8n38zuUb5jOi_3hRxsjgezsLA4sg0m4,626
179
179
  letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
180
180
  letta/otel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
181
  letta/otel/context.py,sha256=GUTxFpWMdCmib1Qy80TpAs0Qb5fNH_m5sCYZ1LN3HmM,789
182
+ letta/otel/db_pool_monitoring.py,sha256=WUqHac7wViY_BBqWOuwwV4Vkq3JIHh5nTWj1p-cRf1E,13649
182
183
  letta/otel/events.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- letta/otel/metric_registry.py,sha256=DDsN0edcbs-BgVo_FPvcx8Sdpz10N0u6YaIFuHI2PpU,6039
184
+ letta/otel/metric_registry.py,sha256=TdRBJrwDuyZV2Uretnq0lYIoYKA2JUqWkENGqLhOCBc,9344
184
185
  letta/otel/metrics.py,sha256=GlIt8XLkP-igTXptah8UBonpHF7nEtSqTONSkAEERAs,4740
185
186
  letta/otel/resource.py,sha256=3T8dcmHMxsgSi-kKIGFW1T56EkZbdbbWPkICH0kba7I,719
186
- letta/otel/tracing.py,sha256=EoSA5WxWpcHrDZhM1h7mplu3RyHuxfbb4Atw5LzR7yI,8840
187
+ letta/otel/sqlalchemy_instrumentation.py,sha256=dkgQTDVSdre27r0EQzfTsV4d49btglLU-CdozHwEFHc,18767
188
+ letta/otel/sqlalchemy_instrumentation_integration.py,sha256=CwGPd5mb4PasBDnSlulSqfaupN-kB8Wz6EBHWBDNuuo,3902
189
+ letta/otel/tracing.py,sha256=kyLsl00Zka3z3uEnOZqgantHya_bsmpvulABYHvsUo8,10422
187
190
  letta/personas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
191
  letta/personas/examples/anna_pa.txt,sha256=zgiNdSNhy1HQy58cF_6RFPzcg2i37F9v38YuL1CW40A,1849
189
192
  letta/personas/examples/google_search_persona.txt,sha256=RyObU80MIk2oeJJDWOK1aX5pHOtbHSSjIrbUpxov240,1194
@@ -228,19 +231,20 @@ letta/prompts/system/voice_chat.txt,sha256=Q_vd2Q08z6qTIVeMML0z9706NG8aAq-scxvi-
228
231
  letta/prompts/system/voice_sleeptime.txt,sha256=LPh-XjAthvsdEkXoZ4NTzTUuMbMsMkoDl9ofCUJC7Us,3696
229
232
  letta/prompts/system/workflow.txt,sha256=pLOaUDsNFAzLs4xb9JgGtd1w-lrq0Q1E7SpFBttXYCI,834
230
233
  letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
- letta/schemas/agent.py,sha256=vu3-sPanrFmXueh2FgS2h-BlllXr4tB-KNzrucZLdf4,25231
232
- letta/schemas/block.py,sha256=awxCQKxmv4I4k9Au5h-a2RCeSVF54EfWyBQPtHRwuNQ,5585
234
+ letta/schemas/agent.py,sha256=EZbVz_Yus2yQs1b-EcUPDZNg2lDnxF9VaKMjAzp7G10,25096
235
+ letta/schemas/agent_file.py,sha256=JJHMXUA-xy2QGjjUypn4mGcMWOZWI-x0OodTtz6VdPw,11755
236
+ letta/schemas/block.py,sha256=fbqLdi0ucl8GgX_i8RXrYXfoKBpdzvDhXwUAcIUKZ_w,5423
233
237
  letta/schemas/embedding_config.py,sha256=huMcqUbSUDwAbd7IkjzxDSmOxGCJG_0eMqPqLj6B8JE,3886
234
238
  letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
235
239
  letta/schemas/enums.py,sha256=QU6WneYqWtPqL9Z8o8wEw55uheS8df8dRPc7W7-naXI,3606
236
240
  letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
237
- letta/schemas/file.py,sha256=V4VNgPmujkXGlaG9Uixe3tOCNrK2IrRt-kGnXGBu1WI,4711
241
+ letta/schemas/file.py,sha256=6p6pvEN99suxQUrNNFtrhEYFpGMFhsj3BXgPBnLcniA,4702
238
242
  letta/schemas/group.py,sha256=0qFbCvE5gbdSAk1oXXT8xWQ02R4mS_jttJm0ASh8eCQ,6415
239
243
  letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
240
244
  letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
241
245
  letta/schemas/job.py,sha256=68fSqIsVfjW65SLVV9wrp1q_4e5pRxE7R6ifvogJptU,4083
242
246
  letta/schemas/letta_base.py,sha256=LhVKaSAUr7HzrvuEJE_1ZKJMe-nJKoYR-ZgLe1IUTpY,4020
243
- letta/schemas/letta_message.py,sha256=PJsJQaJXtYIRCQi76P-FPeiJTtJxfd2XavXYJOJ-Kag,15078
247
+ letta/schemas/letta_message.py,sha256=OHdbP2m--GxqWq7nek96SV-n9bXpN6pIr5JgvYYrk70,15641
244
248
  letta/schemas/letta_message_content.py,sha256=XsokQDvKCf_PcZKH6G5-B4NELaHVtrhDVjbOMc_osLs,8983
245
249
  letta/schemas/letta_request.py,sha256=IVLFwa8rUw1yR0LTPVIkUhDW99FVB58wCzYHmkTil34,2594
246
250
  letta/schemas/letta_response.py,sha256=e6FcAhRX3heB0FoWAAozB3RJboMwi_JpelTdc5JupVA,8188
@@ -249,10 +253,10 @@ letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQ
249
253
  letta/schemas/llm_config.py,sha256=DUrBPJTucQld9o636qM9etGkaC6y0urgsQgZr7HmcVA,8979
250
254
  letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
251
255
  letta/schemas/mcp.py,sha256=h0Dp-oTe4AOj-SHw7ok_RyQlC62E6OW8NCGr9RH2h-0,6446
252
- letta/schemas/memory.py,sha256=-KTsY5iCkGdPY8GHTN28FeOPX2ekIejLeRpX3ZgJTs0,11795
253
- letta/schemas/message.py,sha256=v7LqaMhUuWQqDHMqYIW4tRx3ltm_qAPq7FrXGdFge6w,54131
256
+ letta/schemas/memory.py,sha256=Con5TG_9-Ta6og8PemfBKEhK4Lm-BzziD1A0HGocQsU,11794
257
+ letta/schemas/message.py,sha256=8wSHTl9FNWatS-ZRKG2pFmtZPA7eX2pcAbO3LuTaSTY,54247
254
258
  letta/schemas/openai/chat_completion_request.py,sha256=QKIqH_B1A2logYvVBBkEVhhKe73khv6mZTxCHbGmfvA,4233
255
- letta/schemas/openai/chat_completion_response.py,sha256=yGQ-qrMgefbZSjUtGe_oK5JnF4cw8upC3Bh6dQSAAeo,7066
259
+ letta/schemas/openai/chat_completion_response.py,sha256=Hes8D-tl8_I_LClONUNw3NZ_vkvas6d4QfE-7ge1eac,7065
256
260
  letta/schemas/openai/chat_completions.py,sha256=l0e9sT9boTD5VBU5YtJ0s7qUtCfFGB2K-gQLeEZ2LHU,3599
257
261
  letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNosmLVSuhXYa_xU,357
258
262
  letta/schemas/openai/openai.py,sha256=i6r9WqLXGy5MbEZVzckilK_V4ticGk_ePrq8I4dMwe4,7848
@@ -260,34 +264,34 @@ letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA
260
264
  letta/schemas/passage.py,sha256=zO2azPqob_kM4XudOclcj29Ohnxd7qUbRqo75aTwWTo,3830
261
265
  letta/schemas/pip_requirement.py,sha256=OgcEPFjXyByTkhW30mQCM-CoU3C0V23opXmdcBV0rrw,488
262
266
  letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
263
- letta/schemas/providers.py,sha256=IXds0PFOUjnXCM7Gfu9p1xzRuaHTfXL0XwTyDOmeoWo,68461
267
+ letta/schemas/providers.py,sha256=FjxKTT2-DFCgJxOsdtkklvHQ78V7atgdTxosxjNrpYc,69394
264
268
  letta/schemas/response_format.py,sha256=pXNsjbtpA3Tf8HsDyIa40CSmoUbVR_7n2WOfQaX4aFs,2204
265
269
  letta/schemas/run.py,sha256=1lVOWlHVbk9MYIOiIrE1gCoQvBhErKo7UMSeWyMExbw,2089
266
270
  letta/schemas/sandbox_config.py,sha256=thI4p7R4nnW1W-F_PBNkpmyHXpSH_lorlQX8YxDXSe0,5252
267
- letta/schemas/source.py,sha256=ZDeTjkNp1rKamG7xZzoUHeCptjpW9WNLzAcJ9QQRxlM,3444
271
+ letta/schemas/source.py,sha256=6f_f9fnFs78JR5cZqFniCeTT1DYGuMP9QSBBCiC8e4s,3281
268
272
  letta/schemas/source_metadata.py,sha256=_dGjuXhGcVMlc53ja9yuk16Uj64ggEzilRDgmkqYfNs,1334
269
- letta/schemas/step.py,sha256=QudHSpLMcNVC-oI26Uy48lsp3FOrcd3JYAp5ubDEIHY,2651
270
- letta/schemas/tool.py,sha256=DO0kPVQWR5_A6YHQ4VJbsyWwwjEgvYyT4yBHaZX4uxE,14397
273
+ letta/schemas/step.py,sha256=q2wEU_GTNPqhsLe1frLu7WDA4SA5GPVE-9PRIJRFjw4,3039
274
+ letta/schemas/tool.py,sha256=AOOxTK8-ckdJvlSeY8rzezzKGgoERJQlkT6LIjQkwt0,14117
271
275
  letta/schemas/tool_execution_result.py,sha256=4P77llsUsZBnRd0PtPiC4VzGjx7i_-fUNgXQfCpMS9U,896
272
276
  letta/schemas/tool_rule.py,sha256=dJ-qNDy0LneTt_DhKXsRyC9NAJxZ_aWY3IRpzGuH_sY,10910
273
277
  letta/schemas/usage.py,sha256=9SSTH5kUliwiVF14b-yKbDcmxQBOLg4YH5xhXDbW9UU,1281
274
278
  letta/schemas/user.py,sha256=GanbgD80N33FBjWKkv-MvUO01C0GHzrYmJ-o80wgLLI,1481
275
279
  letta/serialize_schemas/__init__.py,sha256=cosMjvWz7cubC1azbUofzYrcDBTuSgjJImUdsrSs3p0,77
276
- letta/serialize_schemas/marshmallow_agent.py,sha256=SKQaxCv0mKJ2buev_Ffj1rXX0jPyQcUM-sKEKsm9iD4,5422
280
+ letta/serialize_schemas/marshmallow_agent.py,sha256=89FN6iTAbnMxmuPj3SuUhtDtOE-Yg8rNzy3GjprciwI,5798
277
281
  letta/serialize_schemas/marshmallow_agent_environment_variable.py,sha256=9RYJkaNH2UiRoIFzrNklVAGl3uMmu3n6NwzFdviPPVA,653
278
282
  letta/serialize_schemas/marshmallow_base.py,sha256=GP0ImCRfJ-BqNKe-T44Feal18pmFQG-p8JllOsSSNRk,1379
279
- letta/serialize_schemas/marshmallow_block.py,sha256=8u4y1APVgaSdrOu12O-m5rRl9xEKAnUNlcs1Iik9BCo,459
283
+ letta/serialize_schemas/marshmallow_block.py,sha256=qV17pbztsb9MD-632aC66aBJ5m-HK780ifOO9YnoKoo,1043
280
284
  letta/serialize_schemas/marshmallow_custom_fields.py,sha256=_rXV4eGY4wKqzZQPyk3ohHq4rt_oXa4r9QoHfoE-DbM,2500
281
- letta/serialize_schemas/marshmallow_message.py,sha256=EovRJkvDgsuLgjLQAxYN2vmM0mUJqle4oopatD667oU,1327
285
+ letta/serialize_schemas/marshmallow_message.py,sha256=U8xjxl95DDBowYM9OWzl2pB3iWJgUnyW_dtOvaoAvxs,1248
282
286
  letta/serialize_schemas/marshmallow_tag.py,sha256=ssNGdD-z9UafhoTTOcvWRXju__NSx1bPijae_vljMr4,682
283
- letta/serialize_schemas/marshmallow_tool.py,sha256=jwU69BDCakPlYPSk-ta21kuvsURKO3snU28802EgqXA,422
287
+ letta/serialize_schemas/marshmallow_tool.py,sha256=Cq4JQeLBrHdeoi8YhT84rXMXBCtiAET68Oowa8wivj8,995
284
288
  letta/serialize_schemas/pydantic_agent_schema.py,sha256=CqGqSFzArYE2CzFsIU8LXVmH1A1jYFQpFy7Sj62n_4A,3171
285
289
  letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
290
  letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
287
- letta/server/db.py,sha256=q5wCpTxpcbutk2HuF2ZpyhlPGCdUuLpRFZ0QE5VkZ38,11751
291
+ letta/server/db.py,sha256=xujtMKddEEn7pdVEyC6OJQN7fQpQAPARD_KqNbHdKuY,16408
288
292
  letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
289
293
  letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
- letta/server/rest_api/app.py,sha256=zzK9W4ZcosJvNtWjvWr8aHPKA-v3u1G2wQlEnX_sdWQ,18165
294
+ letta/server/rest_api/app.py,sha256=sJTrgJdvTAXw66gKElRD0MIDdbunIVhizozwa1whpQg,19175
291
295
  letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
296
  letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
293
297
  letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
@@ -298,30 +302,30 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
298
302
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
303
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
300
304
  letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
301
- letta/server/rest_api/routers/v1/agents.py,sha256=LC_kQ2oCq6GGLM6EP2Z2CP5Lx0cwg9tUpmC_jP9Z7ac,55552
302
- letta/server/rest_api/routers/v1/blocks.py,sha256=MArBBnC7k9bc-Z1xMf46aH4ij6qhKAQAOoK9KjiXatU,5257
305
+ letta/server/rest_api/routers/v1/agents.py,sha256=gJHGrnvA8rTZmIpxfTd4lKvAwNBleHGW-mzcf5xfsa4,56363
306
+ letta/server/rest_api/routers/v1/blocks.py,sha256=AcUpNbaUNMCOuK9OxUmw9Mf1a7L15JyR-fVAuMME2hc,5228
303
307
  letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
304
308
  letta/server/rest_api/routers/v1/groups.py,sha256=kR_oAuwPd9q-DaeK4Q6Xqu1XlXTXkwEvf2hH7tOiVuw,10978
305
309
  letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
306
310
  letta/server/rest_api/routers/v1/identities.py,sha256=KUfw6avQIVHNw2lWz4pXOyTOPVy1g19CJGG-zayORl8,7858
307
- letta/server/rest_api/routers/v1/jobs.py,sha256=WoTWKGcIauHtwBjgw2ZVzRXzwQK4W162aCWm0cbtUzU,4774
311
+ letta/server/rest_api/routers/v1/jobs.py,sha256=ZcP_cqxgixCEYNtKVMqN1FwErNY-945h7XZhQV4vcEE,4933
308
312
  letta/server/rest_api/routers/v1/llms.py,sha256=0VJuuGW9_ta0cBnSDtXd3Ngw7GjsqEN2NBf5U3b6M3I,1920
309
313
  letta/server/rest_api/routers/v1/messages.py,sha256=EBCxkt44r9uhw9GIkN5v6Rc1R_xGVMpcStkLnY2t0n0,7807
310
- letta/server/rest_api/routers/v1/organizations.py,sha256=5NEjTOdGKWrfN584jfPpJhAcbTl168RrrDvqjO1_5fM,2927
314
+ letta/server/rest_api/routers/v1/organizations.py,sha256=OnG2vMDZEmN4eEvj24CPwiV76ImHQuHi2ojrgwJnw7I,2925
311
315
  letta/server/rest_api/routers/v1/providers.py,sha256=8SJ_RsSk7L4nh1f_uFE31JOxefmGhOfN-fMJ0Sp6SJo,4353
312
316
  letta/server/rest_api/routers/v1/runs.py,sha256=vieUp7uTvRTdAte0Nw1bqX2APMATZhKTr2R1HVNJT74,8879
313
317
  letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=pKuy88GD3atrBkKa7VVfKTjg8Y07e1vVtdw4TtxkQBk,8910
314
- letta/server/rest_api/routers/v1/sources.py,sha256=oQiO21MstzjM7BVzNA7kxXV1X7W3dC6csUC-N7x4uNs,20773
318
+ letta/server/rest_api/routers/v1/sources.py,sha256=K55VQM9HpscJnfI8ISwCrhq0ZnIMVHlio9iAlfUioZQ,21497
315
319
  letta/server/rest_api/routers/v1/steps.py,sha256=N863b0Oyzz64rKHqpyQnXEQBw0SCQ8kAxWaZ7huV1Rk,4925
316
320
  letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
317
321
  letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
318
- letta/server/rest_api/routers/v1/tools.py,sha256=BVM-1V5wKrkkujhP8Bfv2z6Plt1vU2QPbxYXpnlA23I,28907
319
- letta/server/rest_api/routers/v1/users.py,sha256=a0J3Ad8kWHxi3vUJB5r9K2GmiplSABZXwhA83o8HbpI,2367
322
+ letta/server/rest_api/routers/v1/tools.py,sha256=rGiWwRLvfnot6cUvX9b1WbsEUgJ9TabdT-DvsII6ftU,29079
323
+ letta/server/rest_api/routers/v1/users.py,sha256=J1vaTbS1UrBMgnPya7GdZ2wr3L9XHmkm6qdGY6pWaOI,2366
320
324
  letta/server/rest_api/routers/v1/voice.py,sha256=ghMBp5Uovbf0-3nN6d9P5kpl1hHACLRMhIDGQp96G9Q,1986
321
325
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
322
- letta/server/rest_api/streaming_response.py,sha256=IOOg0ezuFUCJxTABs_Pta_AHkvpSz6atGNvB-exbP4I,7719
323
- letta/server/rest_api/utils.py,sha256=6Ar4r3eohMRr5_p4e07x54ILZC5X4A9XZnupzQRasQA,17808
324
- letta/server/server.py,sha256=n-Amuete_KdaOdTwFFMl6Fd0NZISSOJ1N7nPMin4j3M,113747
326
+ letta/server/rest_api/streaming_response.py,sha256=A8RQ2DwlDgZ9NDG-S0tYRvcd6sUp1MUB1SqxIhYbToI,8193
327
+ letta/server/rest_api/utils.py,sha256=TwGzOq95MT_6m_dmemIIYTE0ShG49TTqdChXd1_j8i0,17202
328
+ letta/server/server.py,sha256=MyeixoOHd0S3dC0yzWzEQePXnZkh5WqUqHc1yYEed0I,114193
325
329
  letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
326
330
  letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
327
331
  letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
@@ -333,14 +337,15 @@ letta/server/ws_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
333
337
  letta/server/ws_api/example_client.py,sha256=95AA5UFgTlNJ0FUQkLxli8dKNx48MNm3eWGlSgKaWEk,4064
334
338
  letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRoMa4,4120
335
339
  letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
336
- letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
340
+ letta/server/ws_api/server.py,sha256=_16TQafm509rqRztZYqo0HKKZoe8ccBrNftd_kbIJTE,5833
337
341
  letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- letta/services/agent_manager.py,sha256=Zg20jbrT5EvHk2KWiw4UO0_lrnS4UdhaxzVBzp7Hd7M,125343
339
- letta/services/block_manager.py,sha256=NF4L6mYvAtdIKOQiqpyfNVKn7EUJNLRf05_-08zhuxU,22905
342
+ letta/services/agent_file_manager.py,sha256=WujVqEQeDkY6T3tkNCOXIJrxertOarmhSu3lCXrlxog,27403
343
+ letta/services/agent_manager.py,sha256=q5128Jx6gZJlYYzYAaEtMzzli9YEiys5KAMqtPsPmXI,129406
344
+ letta/services/block_manager.py,sha256=hG2iCJSUSY5yS7LpLiDe6q2phockshEt5hiitOHWjJE,23917
340
345
  letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
346
  letta/services/context_window_calculator/context_window_calculator.py,sha256=_VluA3OU_E-GuYdPGF6dLSRRCVataStoYNA_BEm72iY,6567
342
347
  letta/services/context_window_calculator/token_counter.py,sha256=QHNeLciQmBDV0pdCawkNaltbTYp2Ju7ZwKpE5y46LDg,4731
343
- letta/services/file_manager.py,sha256=KncSkNCZJSC6hlR_jvPpM6WXy42IoFqnKfbgXpFo7UE,17817
348
+ letta/services/file_manager.py,sha256=mVqv9vbfoqHV2ZggjBcxJdqcf88MWDK_kHYu7HoVOPo,21256
344
349
  letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
350
  letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
351
  letta/services/file_processor/chunker/line_chunker.py,sha256=l3QlaJVRpXMU8kX4MmlXRewJDJh9q-D6fqL65o2WUgg,7569
@@ -349,43 +354,43 @@ letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
349
354
  letta/services/file_processor/embedder/base_embedder.py,sha256=cuHF2kAlBFL9Hr63Q5vJQYYrfyDNtm31vYvW5boUQ58,518
350
355
  letta/services/file_processor/embedder/openai_embedder.py,sha256=HPFQ0igTCP4T0eF2sxHNTDDNsdj86fuB8GtlkiezbSE,7565
351
356
  letta/services/file_processor/embedder/pinecone_embedder.py,sha256=O33NGvDyOG07Iz-tEhZDu_PKq7NfWIaBzjJuLi8hDiU,2841
352
- letta/services/file_processor/file_processor.py,sha256=vjl_pcwqDIMOhDDGbJQuL4oUXRVHm_o_mgy7kXQUanQ,10277
357
+ letta/services/file_processor/file_processor.py,sha256=nOiYoKOnJNiFLsX0j4jUc3avVSi_jYLYtMrYNWAeEYE,14251
353
358
  letta/services/file_processor/file_types.py,sha256=9k3Lt_bquQjJ7T6L12fPS9IS5wldhJ2puSkH6rhfCaE,13128
354
359
  letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
360
  letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
356
361
  letta/services/file_processor/parser/mistral_parser.py,sha256=NmCdVdpAB5f-VjILJp85pz2rSjlghKEg7qKTFzZLhP8,2384
357
362
  letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- letta/services/files_agents_manager.py,sha256=SHuLFqacYUJoi1zvWHKBpNEaXX41BrCiWereN5zcwa0,23403
359
- letta/services/group_manager.py,sha256=J0LUYIgGZa17O9vcQm-QDPm_k6mSylLeE7OOfXbnLMI,23368
360
- letta/services/helpers/agent_manager_helper.py,sha256=8of5EgKA9-Y-s0ovD0NwTnOiaW-z8kBlKleZqnrwy5g,44034
363
+ letta/services/files_agents_manager.py,sha256=PdHu-lXAXLCwiCz7c8Pv-bIg4rlv3GLQtbVhIi1-OX0,24452
364
+ letta/services/group_manager.py,sha256=XzPY7ARmMHHWRdusb_1lrZgB1j58sR8Vd9to3TPCXy8,23354
365
+ letta/services/helpers/agent_manager_helper.py,sha256=VFfptTX4ZpNQpGCTQPzfai4fqJAynaPN257T6YdVa4U,46230
361
366
  letta/services/helpers/tool_execution_helper.py,sha256=45L7woJ98jK5MQAnhE_4NZdCeyOOzC4328FTQPM7iTA,9159
362
367
  letta/services/helpers/tool_parser_helper.py,sha256=_3oAVRVfRaicGpO6qRKAlCAujZw2uBGUclei4FUC6Do,4349
363
- letta/services/identity_manager.py,sha256=L8EYGYXA9sveLwPCTYZIdYZwOMnHex47TBiMYcco_y4,10575
364
- letta/services/job_manager.py,sha256=TQZLxPtoF9BzSpLaMgA1xD7PZ_qjONTjM48bID88W30,28803
365
- letta/services/llm_batch_manager.py,sha256=SJXzlhg9yu8EIal8WiZFRez-CMhqUVxEW42cQPxG1OQ,20824
368
+ letta/services/identity_manager.py,sha256=tI7K1VupongrJRDfFo4F86qcgCGhLmMiIAwTFwt3Syk,11847
369
+ letta/services/job_manager.py,sha256=Lcl8Uj5sxew7TG9okhagqiTQdBKG_UFCMxALXIJyncQ,34712
370
+ letta/services/llm_batch_manager.py,sha256=9jszUj-hqvBf4OQQUNANC0b1xeULWjUXMFVso-eCc9o,20998
366
371
  letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
372
  letta/services/mcp/base_client.py,sha256=8PtauZGtXU2pks5Beggz4BOoE_Bas3LDeBXv1xNLfJ0,4461
368
373
  letta/services/mcp/sse_client.py,sha256=cY_L7eJkiFz19Ecr9Ok9Y9lefeDlxzkQI4Z4RtSccAU,1242
369
- letta/services/mcp/stdio_client.py,sha256=NyIBVDoRx0-O9KMdXzZFsy2hZZzBaELpy3I52hiJTbY,979
374
+ letta/services/mcp/stdio_client.py,sha256=Z8HEQOGiY1jZFlW_pWbuOn1paYB6XhEH-ANmX55q9FI,1001
370
375
  letta/services/mcp/streamable_http_client.py,sha256=Cm95eK-4mYmcQC1rcIqik8DiUHU49gY7Lsiqy3DRMX4,2953
371
376
  letta/services/mcp/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
372
- letta/services/mcp_manager.py,sha256=CTrjSefmXF1p2GaWdpKwzZs3sdtoTgS8i2m9BetmA7Q,16975
373
- letta/services/message_manager.py,sha256=cNUTGJ2CuQkPhd1Ldfi4aj6wRVYdRKkGZzp767_7VE4,30080
377
+ letta/services/mcp_manager.py,sha256=6pqmzi7MpSw6j-iu9JaVtqS_zo5TB6iZDxOvvHBkHCw,16974
378
+ letta/services/message_manager.py,sha256=_kwN9ZRRbZXX3yAiTSty9Eiybl10cQNqrt-7284_PPo,31721
374
379
  letta/services/organization_manager.py,sha256=PngZXPuzcCWB1CW7vAST9CsQZLysrpEdwHwhFN4_fhs,5838
375
- letta/services/passage_manager.py,sha256=nmrrWE3UFojw73Q1qrG5dvrLDotP4xD5ZQARaEO8nec,43349
380
+ letta/services/passage_manager.py,sha256=ZOE6MxNJcODdDow6NV-LOwK0cv39j1nXGpdo8TkW7lc,43348
376
381
  letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
377
- letta/services/provider_manager.py,sha256=mEtiBF7kJgSzDwwyqSmWLT6kgvWPk-FERZ9Zw8QKpHw,9557
382
+ letta/services/provider_manager.py,sha256=ypfbSnkXoanxs3FFUl4s97TTi7E25D8sDS99dp2mL48,9610
378
383
  letta/services/sandbox_config_manager.py,sha256=fcJkXCaA6vmrnTusHhns-c_aRXcPlFLICPGdWDaY8XQ,26138
379
- letta/services/source_manager.py,sha256=8xxEfl-oPebd-vgFSfUKew1liVWt8fE14-T5xgXsYaE,6701
380
- letta/services/step_manager.py,sha256=yK0Z6mzvQ0y3YjCRRcy7Qs2GXiJyvHX1o6rt-QFq0cw,10972
384
+ letta/services/source_manager.py,sha256=zEQHyyE1PCeWONzFCsCRan6lJUuz6XTBMM9oT7O3CIw,10647
385
+ letta/services/step_manager.py,sha256=Ts-4vnLJnQ9DPVUgMPEoeNpm_NgckT2Tw_fnOj5gfF4,12169
381
386
  letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
382
387
  letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZVV2r0,279
383
388
  letta/services/summarizer/summarizer.py,sha256=n15G0h7VQrBu-E41YV6riClk5zk7PrCSn2zE9TBODOA,18589
384
- letta/services/telemetry_manager.py,sha256=1qvXeYltOf7m7oondtr4PeogVYqWekNO39zaDOJMeig,3109
389
+ letta/services/telemetry_manager.py,sha256=Ur_VPgawiLIwDuxP9NHuz-hq_-S1vKIYThlB-doKZPY,3338
385
390
  letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
- letta/services/tool_executor/builtin_tool_executor.py,sha256=4hVeFnExExxuZHPIOD3LK9fPlFUt0s-b_TpKuvyxLwk,17384
391
+ letta/services/tool_executor/builtin_tool_executor.py,sha256=R3my-DZPOc5FzT04KFCbg8Uo_KIAuJcPRp4gkjJ8nJQ,17643
387
392
  letta/services/tool_executor/composio_tool_executor.py,sha256=ia2AA_WDOseR8Ylam-HEayR7OiyfNSb1sSUrjwqlmFM,2308
388
- letta/services/tool_executor/core_tool_executor.py,sha256=fVB2VlWaQI11xOU0KxmytIu0QZnNwLsutLsGrkCp6A0,20465
393
+ letta/services/tool_executor/core_tool_executor.py,sha256=rzglWNjJ5RiQMZLHbjW6dzVrfm_1mzBTgId9cXisWtA,20462
389
394
  letta/services/tool_executor/files_tool_executor.py,sha256=Mp-6rh7g-q9o-UAdzuteK4Taf-AYaKtKpj7YtPqsmBE,29152
390
395
  letta/services/tool_executor/mcp_tool_executor.py,sha256=x8V8J4Xi1ZVbwfaR_IwnUGRrD9w5wgV4G54sjraVBw4,1676
391
396
  letta/services/tool_executor/multi_agent_tool_executor.py,sha256=dfaZeldEnzJDg2jGHlGy3YXKjsJpokJW1tvVeoCCDrk,5496
@@ -393,25 +398,25 @@ letta/services/tool_executor/tool_execution_manager.py,sha256=flCbTmtxZvYNcTGNC2
393
398
  letta/services/tool_executor/tool_execution_sandbox.py,sha256=UYVbL3aZ5dEjgc807uTYLX9RulsW_yx_KJ2py0A2qBA,25542
394
399
  letta/services/tool_executor/tool_executor.py,sha256=knD0FKwdlkH11ShRrtwkkyi089FbnbrZtxlrof1O3Ro,4553
395
400
  letta/services/tool_executor/tool_executor_base.py,sha256=4b1GU0LZc8iwbM3TisqBVOxsE2H6BiFZ3-r11IrtZ1U,1566
396
- letta/services/tool_manager.py,sha256=6VI3mjXa6-vrPA74Aar_-ti9Rn3EEBq5TIiayyzoVAk,23007
401
+ letta/services/tool_manager.py,sha256=9sAorgWcF89oCzYCO5_uQWNkJcIF_xqgcTrxEiLIS6o,26424
397
402
  letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
403
  letta/services/tool_sandbox/base.py,sha256=Vt4CnxuY5otUD6Kv8PpJNrAtl9eI8tjfcwkOdtUFwKg,7917
399
404
  letta/services/tool_sandbox/e2b_sandbox.py,sha256=TrWWav56H1AsnaKgNZuq0RI-FeWHOZvOubtUywPH72s,11125
400
405
  letta/services/tool_sandbox/local_sandbox.py,sha256=P6FH-2zNq3MQSuHZe790-G982c7rq2gwOUee-U5hlgk,12022
401
- letta/services/user_manager.py,sha256=Neik-mxXgf9jc9jBiiBIlK38UukJonUy9NRS2soFR98,10405
402
- letta/settings.py,sha256=lWaLL1t06s9pp4VK5ojQvTiI7D85VcJPjaVKak5LFxs,11304
406
+ letta/services/user_manager.py,sha256=0OHwODW24VSDwl-TiVMqpAmT7I-Y88CNOn9pUWDfkqc,9979
407
+ letta/settings.py,sha256=jK-3cmtXhimUYtnsvPyiyPrK2MSQCKjgEKRykFnZgf4,12216
403
408
  letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
404
409
  letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
405
- letta/system.py,sha256=-cfh9Xpl2Ef_H7N3oZQtNuJqb1EEskdDXNa-VwKsF0A,8977
410
+ letta/system.py,sha256=ZUIt3Kld8vdbAMIYQ5EeEXXnXfeJg1Z6xUdjGfB7BLo,8976
406
411
  letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
412
  letta/templates/sandbox_code_file.py.j2,sha256=-tLXbRjWaXGhj82oVKbRRMOakTRcuy5bwBTa_ak1GjU,2260
408
413
  letta/templates/sandbox_code_file_async.py.j2,sha256=TmhqHHm83jNVPm2azkhxCygEJzMEczzPlDjqrkP5HAs,2742
409
414
  letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUIXjgXKiizuc,842
410
415
  letta/templates/template_helper.py,sha256=uHWO1PukgMoIIvgqQdPyHq3o3CQ6mcjUjTGvx9VLGkk,409
411
416
  letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
412
- letta/utils.py,sha256=4segcFYPNsPrzMpiouYoV6Qzj4TIHuqtCyzVwAMildM,36172
413
- letta_nightly-0.8.15.dev20250720104313.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
414
- letta_nightly-0.8.15.dev20250720104313.dist-info/METADATA,sha256=CZtqSrbqoV4Qg3eWP23zW9B7cmechhqoYUt03yWJftc,22913
415
- letta_nightly-0.8.15.dev20250720104313.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
416
- letta_nightly-0.8.15.dev20250720104313.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
417
- letta_nightly-0.8.15.dev20250720104313.dist-info/RECORD,,
417
+ letta/utils.py,sha256=TNbg9kIf5P8fwOs1y3xFTIvy95rF_b4jbAIaQ4TGnH4,36855
418
+ letta_nightly-0.8.16.dev20250721104533.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
419
+ letta_nightly-0.8.16.dev20250721104533.dist-info/METADATA,sha256=hk-MpHA_d7A5wPB2-8QYX-61Gp246_mypBpWxR7dygw,22953
420
+ letta_nightly-0.8.16.dev20250721104533.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
421
+ letta_nightly-0.8.16.dev20250721104533.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
422
+ letta_nightly-0.8.16.dev20250721104533.dist-info/RECORD,,