letta-nightly 0.8.0.dev20250606104326__py3-none-any.whl → 0.8.2.dev20250606215616__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 (96) hide show
  1. letta/__init__.py +1 -1
  2. letta/agent.py +1 -1
  3. letta/agents/letta_agent.py +49 -29
  4. letta/agents/letta_agent_batch.py +1 -2
  5. letta/agents/voice_agent.py +19 -13
  6. letta/agents/voice_sleeptime_agent.py +11 -3
  7. letta/constants.py +18 -0
  8. letta/data_sources/__init__.py +0 -0
  9. letta/data_sources/redis_client.py +282 -0
  10. letta/errors.py +0 -4
  11. letta/functions/function_sets/files.py +58 -0
  12. letta/functions/schema_generator.py +18 -1
  13. letta/groups/sleeptime_multi_agent_v2.py +1 -1
  14. letta/helpers/datetime_helpers.py +47 -3
  15. letta/helpers/decorators.py +69 -0
  16. letta/{services/helpers/noop_helper.py → helpers/singleton.py} +5 -0
  17. letta/interfaces/anthropic_streaming_interface.py +43 -24
  18. letta/interfaces/openai_streaming_interface.py +21 -19
  19. letta/llm_api/anthropic.py +1 -1
  20. letta/llm_api/anthropic_client.py +22 -14
  21. letta/llm_api/google_vertex_client.py +1 -1
  22. letta/llm_api/helpers.py +36 -30
  23. letta/llm_api/llm_api_tools.py +1 -1
  24. letta/llm_api/llm_client_base.py +29 -1
  25. letta/llm_api/openai.py +1 -1
  26. letta/llm_api/openai_client.py +6 -8
  27. letta/local_llm/chat_completion_proxy.py +1 -1
  28. letta/memory.py +1 -1
  29. letta/orm/enums.py +1 -0
  30. letta/orm/file.py +80 -3
  31. letta/orm/files_agents.py +13 -0
  32. letta/orm/sqlalchemy_base.py +34 -11
  33. letta/otel/__init__.py +0 -0
  34. letta/otel/context.py +25 -0
  35. letta/otel/events.py +0 -0
  36. letta/otel/metric_registry.py +122 -0
  37. letta/otel/metrics.py +66 -0
  38. letta/otel/resource.py +26 -0
  39. letta/{tracing.py → otel/tracing.py} +55 -78
  40. letta/plugins/README.md +22 -0
  41. letta/plugins/__init__.py +0 -0
  42. letta/plugins/defaults.py +11 -0
  43. letta/plugins/plugins.py +72 -0
  44. letta/schemas/enums.py +8 -0
  45. letta/schemas/file.py +12 -0
  46. letta/schemas/tool.py +4 -0
  47. letta/server/db.py +7 -7
  48. letta/server/rest_api/app.py +8 -6
  49. letta/server/rest_api/routers/v1/agents.py +37 -36
  50. letta/server/rest_api/routers/v1/groups.py +3 -3
  51. letta/server/rest_api/routers/v1/sources.py +26 -3
  52. letta/server/rest_api/utils.py +9 -6
  53. letta/server/server.py +18 -12
  54. letta/services/agent_manager.py +185 -193
  55. letta/services/block_manager.py +1 -1
  56. letta/services/context_window_calculator/token_counter.py +3 -2
  57. letta/services/file_processor/chunker/line_chunker.py +34 -0
  58. letta/services/file_processor/file_processor.py +40 -11
  59. letta/services/file_processor/parser/mistral_parser.py +11 -1
  60. letta/services/files_agents_manager.py +96 -7
  61. letta/services/group_manager.py +6 -6
  62. letta/services/helpers/agent_manager_helper.py +373 -3
  63. letta/services/identity_manager.py +1 -1
  64. letta/services/job_manager.py +1 -1
  65. letta/services/llm_batch_manager.py +1 -1
  66. letta/services/message_manager.py +1 -1
  67. letta/services/organization_manager.py +1 -1
  68. letta/services/passage_manager.py +1 -1
  69. letta/services/per_agent_lock_manager.py +1 -1
  70. letta/services/provider_manager.py +1 -1
  71. letta/services/sandbox_config_manager.py +1 -1
  72. letta/services/source_manager.py +178 -19
  73. letta/services/step_manager.py +2 -2
  74. letta/services/summarizer/summarizer.py +1 -1
  75. letta/services/telemetry_manager.py +1 -1
  76. letta/services/tool_executor/builtin_tool_executor.py +117 -0
  77. letta/services/tool_executor/composio_tool_executor.py +53 -0
  78. letta/services/tool_executor/core_tool_executor.py +474 -0
  79. letta/services/tool_executor/files_tool_executor.py +131 -0
  80. letta/services/tool_executor/mcp_tool_executor.py +45 -0
  81. letta/services/tool_executor/multi_agent_tool_executor.py +123 -0
  82. letta/services/tool_executor/tool_execution_manager.py +34 -14
  83. letta/services/tool_executor/tool_execution_sandbox.py +1 -1
  84. letta/services/tool_executor/tool_executor.py +3 -802
  85. letta/services/tool_executor/tool_executor_base.py +43 -0
  86. letta/services/tool_manager.py +55 -59
  87. letta/services/tool_sandbox/e2b_sandbox.py +1 -1
  88. letta/services/tool_sandbox/local_sandbox.py +6 -3
  89. letta/services/user_manager.py +6 -3
  90. letta/settings.py +21 -1
  91. letta/utils.py +7 -2
  92. {letta_nightly-0.8.0.dev20250606104326.dist-info → letta_nightly-0.8.2.dev20250606215616.dist-info}/METADATA +4 -2
  93. {letta_nightly-0.8.0.dev20250606104326.dist-info → letta_nightly-0.8.2.dev20250606215616.dist-info}/RECORD +96 -74
  94. {letta_nightly-0.8.0.dev20250606104326.dist-info → letta_nightly-0.8.2.dev20250606215616.dist-info}/LICENSE +0 -0
  95. {letta_nightly-0.8.0.dev20250606104326.dist-info → letta_nightly-0.8.2.dev20250606215616.dist-info}/WHEEL +0 -0
  96. {letta_nightly-0.8.0.dev20250606104326.dist-info → letta_nightly-0.8.2.dev20250606215616.dist-info}/entry_points.txt +0 -0
@@ -1,16 +1,16 @@
1
- letta/__init__.py,sha256=jBl9GrVTLw6EZQYMQIn3QHlP54yS0cshCtmR8keNsvE,982
2
- letta/agent.py,sha256=2Uqhx3Iw6PmoBIWuy5jW5jWMZLk0jMVXmnsgPkUodUc,87769
1
+ letta/__init__.py,sha256=-m-rsvdp1XG2DhN-UF0kiickldXMabzzmMNcjhZCV6Y,982
2
+ letta/agent.py,sha256=UcF2axqMRwtoH2RTgGl7SUEldpcK941VbPeoQz5Vq8s,87774
3
3
  letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  letta/agents/base_agent.py,sha256=2UlP0EgL4tLiSCmF4mPJYF9sCB3ddK9hpZf70MAsTYU,5548
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
8
  letta/agents/helpers.py,sha256=tDYbRCihjxeL1v1oU_QiheL95lSfZPLEriJcwuV4MGc,7819
9
- letta/agents/letta_agent.py,sha256=GawN2J_9RCuJXrEqWaYt_loR9lpD9ACHvrA8QMrypbU,45799
10
- letta/agents/letta_agent_batch.py,sha256=EGGIL2-3wblYUZ8C87G0hxwhZnVo5SfPRt-tO7OndBk,27769
9
+ letta/agents/letta_agent.py,sha256=spZBXhvuoIdx_gyjWCnMMVbHJzOryaclCAvo-MbywzU,46582
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=gJuoI6GYgaNF7aXO3MyMhc3g4qB5mPmP5Fpp2HdNtHg,22099
13
- letta/agents/voice_sleeptime_agent.py,sha256=_3y9sRTc0Mtff8oOHballd5BcmKctTJGXBgitlf-IrY,7866
12
+ letta/agents/voice_agent.py,sha256=6ySY_89jGQqF0185mAgwmicrU0bFCMSxXxCQtPtuYfI,22209
13
+ letta/agents/voice_sleeptime_agent.py,sha256=llZIn_eHDqzx94FZG29fEPY0fmkcgAFQPsz_ztr0FEw,8016
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
@@ -18,11 +18,13 @@ letta/client/client.py,sha256=mCVob5MI5hegCHedeg88aiYwpPs8NiiLjOIoAmEFiS8,84826
18
18
  letta/client/streaming.py,sha256=UsDS_tDTsA3HgYryIDvGGmx_dWfnfQwtmEwLi4Z89Ik,4701
19
19
  letta/client/utils.py,sha256=VCGV-op5ZSmurd4yw7Vhf93XDQ0BkyBT8qsuV7EqfiU,2859
20
20
  letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
21
- letta/constants.py,sha256=DLhNxrz7tKVILOUprKO-_sc12fdKK0nzFQPb5Juq3EI,12978
21
+ letta/constants.py,sha256=4v51Zoif4uc9oMbd0uE-v72yzSZAp2WPkDuhNcwOmrA,13544
22
+ letta/data_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
23
  letta/data_sources/connectors.py,sha256=7cefbTb0bDmtRYAk2gs9JXntzfS6OIeInjZgvL_Yw6Y,7936
23
24
  letta/data_sources/connectors_helper.py,sha256=oQpVlc-BjSz9sTZ7sp4PsJSXJbBKpZPi3Dam03CURTQ,3376
25
+ letta/data_sources/redis_client.py,sha256=UvqYuBZgaF3IqkDgmpSB1f7RlyTbXDW25TlIxwUTdMg,9798
24
26
  letta/embeddings.py,sha256=KvC2bl5tARpVY9xcFmw4Cwu1vN0DoH266v2mSUZqwkY,10528
25
- letta/errors.py,sha256=FlxHjA5LaMfIAPXRKzmMDjUvqOYmh00MEO9tSPLcC6g,7063
27
+ letta/errors.py,sha256=GCgFBvluPxebfz1_wB0y-82N8rlVPhGIn-x7UfV3wVU,6961
26
28
  letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
29
  letta/functions/ast_parsers.py,sha256=lEmjIzGrTjlDJFAX-gjg0dU2CIBu6Vo4msSq-fhhup4,4969
28
30
  letta/functions/async_composio_toolset.py,sha256=J6iOOT_rFRS4cpOAaH6R3YDvutPr4fTgpTFHgeaUzu4,4633
@@ -30,6 +32,7 @@ letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2
30
32
  letta/functions/function_sets/base.py,sha256=FS-LRbvzO-duSUy0yLP_fBk2WSs4NAaaTAUuhl2ZS-I,16154
31
33
  letta/functions/function_sets/builtin.py,sha256=Cnv_McX-JLh-VDISUIePO_rAUbqRmGINdzu8-a5OiEk,899
32
34
  letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
35
+ letta/functions/function_sets/files.py,sha256=zAL0nA_hIOcjgeY7vHU8mW2kEalh21vNVKOQcAol_fg,1662
33
36
  letta/functions/function_sets/multi_agent.py,sha256=AdWAYBw6e3WuvDQubpBoS_ZZz-884evvklMgTqeuf6Q,6900
34
37
  letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
35
38
  letta/functions/functions.py,sha256=JVweekyBSlgquNt2Sa4CID7WLE_wIIB7Dl2SHK2gBtM,5940
@@ -41,19 +44,21 @@ letta/functions/mcp_client/exceptions.py,sha256=IE5SLCuMK7hK9V1QsJafPo6u0S0OwqRv
41
44
  letta/functions/mcp_client/sse_client.py,sha256=QDC29Re2mdGji77YrUk7JXfTVJeS6039oeeh3y6A_7g,2292
42
45
  letta/functions/mcp_client/stdio_client.py,sha256=-SymmkO_KNFZUP5e5mhcidpyyXBv6Xh72yUiMnv_bFw,4709
43
46
  letta/functions/mcp_client/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
44
- letta/functions/schema_generator.py,sha256=eX-l6a0oO8EYofeBtbPFB9uWxRqLyt-hV52YeduaA-I,22478
47
+ letta/functions/schema_generator.py,sha256=GD6IKO_BNFKTy5lDfICQ__xntk7Xy79Fo70jtj9FZk0,23194
45
48
  letta/groups/dynamic_multi_agent.py,sha256=OLCxhICFLYyx8wjKGPr1INc6pniEuk4YGZyZhq2vkiY,12230
46
49
  letta/groups/helpers.py,sha256=VABgj684cInv5TXUZ31baTX4nXLghNe0DCnPiEBdjHw,4435
47
50
  letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
48
51
  letta/groups/sleeptime_multi_agent.py,sha256=Wo9uc-ZD99SlW3bcP91EwXc3kIX5t8sCcY1JMJjuiRY,10462
49
- letta/groups/sleeptime_multi_agent_v2.py,sha256=v7NyI9eZ4MCvWfQKeWVjWmM7PtpczLJl-dgQWEekjVs,12473
52
+ letta/groups/sleeptime_multi_agent_v2.py,sha256=h9iA9hGSwZvxOq3CrSCMAwuyH-SVak0QLaFxNvu0AV4,12478
50
53
  letta/groups/supervisor_multi_agent.py,sha256=ml8Gi9gyVjPuVZjAJAkpGZDjnM7GOS50NkKf5SIutvQ,4455
51
54
  letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
52
55
  letta/helpers/composio_helpers.py,sha256=MwfmLt7tgjvxAXLHpx9pa5QolxcqoCbofb-30-DVpsI,1714
53
56
  letta/helpers/converters.py,sha256=_55-LaUZQ7efzwaxTQ-wrLMQa6_KOKxc8Vi4DVHlJHk,14442
54
- letta/helpers/datetime_helpers.py,sha256=PCIvy4PNYKfG6q1PFfRLI2z4bqkIwJ2p5AY5sl8jefw,3060
57
+ letta/helpers/datetime_helpers.py,sha256=WXwji1il83Ivvf2feSQSATJylRxohuP7liqIgkqYu2U,4413
58
+ letta/helpers/decorators.py,sha256=ift-ZsTG70uPVWY6e8aij6bwlR9bM67EFU0Oqm7Dto8,2469
55
59
  letta/helpers/json_helpers.py,sha256=PWZ5HhSqGXO4e563dM_8M72q7ScirjXQ4Rv1ckohaV8,396
56
60
  letta/helpers/message_helper.py,sha256=uiGVLyknI5ODZmNdeO_SoWRgnYpkPY8Q3wHwa8u8HFc,2421
61
+ letta/helpers/singleton.py,sha256=Y4dG_ZBCcrogvl9iZ69bSLq-QltrdP8wHqKkhef8OBI,370
57
62
  letta/helpers/tool_execution_helper.py,sha256=BgBgVLZzbc-JTdOGwyU9miV_-zM3A30jkMpwH1otxaU,7599
58
63
  letta/helpers/tool_rule_solver.py,sha256=f-5rwGoY7v0fGs0qlJbk3puwA6xbi2RHqxD77jSy9ME,7487
59
64
  letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -61,9 +66,9 @@ letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6
61
66
  letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
62
67
  letta/interface.py,sha256=6GKasvJMASu-kcZch6Hffz1vnHuPA_ryI6cLH2bMArc,13023
63
68
  letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- letta/interfaces/anthropic_streaming_interface.py,sha256=b_kh81ip5abfW_atiGvmQRnJFNxeRVtmrpgeb-AwsAQ,22278
69
+ letta/interfaces/anthropic_streaming_interface.py,sha256=9c9d3fsNnFSu0e9ZYJy1fqXg9O0DY7MaF4jWIdjkZGA,23481
65
70
  letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=S3k4zqPHE0Fzy6hgnAGExE4RdI3Tna35QU4fcS6NkKM,4956
66
- letta/interfaces/openai_streaming_interface.py,sha256=qhFkpz8sfiVnhRWymWzV3wOsXd1DZsDVPARjaO06--M,20971
71
+ letta/interfaces/openai_streaming_interface.py,sha256=kIzfpCOsCw9n52Sh29JC5fEZKi7uDfp1XRSwQtbAFlg,21080
67
72
  letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
68
73
  letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
74
  letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
@@ -71,8 +76,8 @@ letta/jobs/llm_batch_job_polling.py,sha256=r_6D5RcqEJQgrdh-rnN7vdLD0GAQl-GGmIfCn
71
76
  letta/jobs/scheduler.py,sha256=VpRyO2vuETNrarHOIWYctAkrD4WFtV57buUSHaLE89Y,10240
72
77
  letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
73
78
  letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- letta/llm_api/anthropic.py,sha256=Lvk2_d3UD32Q-PjWpATOjMp2Qf1SUPmXJUCn28UgB-Y,47281
75
- letta/llm_api/anthropic_client.py,sha256=3Umj4b_Hrd3pJIjwzW410CxsET1Z_C43FNMNkgwuDjE,26891
79
+ letta/llm_api/anthropic.py,sha256=uR_nHffOl1KWHTos_7Pz36h1xFckCyhWVC7bEJ3isDk,47286
80
+ letta/llm_api/anthropic_client.py,sha256=wIvVrbM7wEA97oqn1TvATFYC8eCpf_tU8HHN-KnQ2nM,27106
76
81
  letta/llm_api/aws_bedrock.py,sha256=kAPpKPRe4ZUa6fkxFbo8xwQgq4fJf3QoZEAP1LOCfaw,4168
77
82
  letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
78
83
  letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
@@ -80,17 +85,17 @@ letta/llm_api/cohere.py,sha256=IZ6LXyOFMYjWHTeNG9lvFxCdV_NIl0hY2q9SPFYXNkQ,14849
80
85
  letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,12456
81
86
  letta/llm_api/google_ai_client.py,sha256=yIP4lJ1sJoryS_76FjSyzOTCOEnXZoyoo-MarR9YzU8,9401
82
87
  letta/llm_api/google_constants.py,sha256=4PKWUNNbBHgHi4K5u9YaHr_8UC3fokfI6Qb6Dfpt4mU,693
83
- letta/llm_api/google_vertex_client.py,sha256=WIf_NO1p1F1vffDRNAo-EYsDqZlfEvLC5qQOJbK-Vy4,22912
84
- letta/llm_api/helpers.py,sha256=rpZInutKVKgoywreclisNSi2zVxwFinAzJIuxF6ll4I,17041
85
- letta/llm_api/llm_api_tools.py,sha256=gMYoEvs5vSyvjos2eYJN6_BpQ2aNpt3zvyF7D2phbqY,30044
88
+ letta/llm_api/google_vertex_client.py,sha256=IWvDO8OAE2J9fts7VOmc1Ln8-PyMgC9Mnb6N30bsjCc,22917
89
+ letta/llm_api/helpers.py,sha256=wQ6dDGm2HxNZD3_PMwaTjba_xR2nyDg6KBXVelc8Bic,17579
90
+ letta/llm_api/llm_api_tools.py,sha256=j6psCoxENOaM7XoHwCM9XYxjxqLvUnODPJPQL7CAOWQ,30049
86
91
  letta/llm_api/llm_client.py,sha256=sO9MwiSOJ_ycOFnYrQP0_g6cFkMSnrZqFDz1sUeBHD8,2098
87
- letta/llm_api/llm_client_base.py,sha256=45Cjal-qcii04-tKoKp_UeW8yM0mcoFprFh78gumXjk,7073
92
+ letta/llm_api/llm_client_base.py,sha256=P678pt6IFDZRJbSkn213trs63k5zdsvdzTw21_iuGlg,8528
88
93
  letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
89
- letta/llm_api/openai.py,sha256=OCNeiGRPoZnJRGFdztLnccQZHtx1RPZA304_lsGKBFw,27360
90
- letta/llm_api/openai_client.py,sha256=i-0dhFPzR0UK41hTGmyUhHYhpsMNBQBN7vd2MHNW2cI,17949
94
+ letta/llm_api/openai.py,sha256=4X6wgid4WhVMNTSqSGacKEDP5pnAX7joPemFkKcDG9k,27365
95
+ letta/llm_api/openai_client.py,sha256=XrFlYKfwVWd9Ii3W2RxNKo-HMGYEhtI6VsycHNS1I2k,17950
91
96
  letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
92
97
  letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
- letta/local_llm/chat_completion_proxy.py,sha256=gc5gaKoHP8QaWRulDeEYPk7Onl8KdCBmpF2l9znXKeQ,13853
98
+ letta/local_llm/chat_completion_proxy.py,sha256=6tFdoB3aIqHO345kPp_RmbrUpy0gt8cbzTODWlMsUyI,13858
94
99
  letta/local_llm/constants.py,sha256=0J9ECx-foZMamMFN3bPodLblwB9-0TXEZuz_Brw-Tx0,1344
95
100
  letta/local_llm/function_parser.py,sha256=QOCp-ipk88VnKJ17h_-oP8_AR3o5QDt4tEd5QTn2P0o,2622
96
101
  letta/local_llm/grammars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -127,7 +132,7 @@ letta/local_llm/webui/legacy_settings.py,sha256=BLmd3TSx5StnY3ibjwaxYATPt_Lvq-o1
127
132
  letta/local_llm/webui/settings.py,sha256=gmLHfiOl1u4JmlAZU2d2O8YKF9lafdakyjwR_ftVPh8,552
128
133
  letta/log.py,sha256=FbFwU9KEX7k0FBYhPl7fJ6uQ3NO3-ZbsnM2OpcTFXjo,2217
129
134
  letta/main.py,sha256=wj4cawl4HP2ok-CqKVvqzSiOMahHC4t8FWxvuKKTWUA,317
130
- letta/memory.py,sha256=HzAQxMLCKEUhb9q6fb4ZMeoAA8s4Tu7QLBXANv8OnXY,4273
135
+ letta/memory.py,sha256=l5iNhLAR_xzgTb0GBlQx4SVgH8kuZh8siJdC_CFPKEs,4278
131
136
  letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
137
  letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
133
138
  letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
@@ -139,10 +144,10 @@ letta/orm/block.py,sha256=BhjjYiHV5crvES6GDz60J_1MRdePZcvw_YHzTdbIzuU,5870
139
144
  letta/orm/block_history.py,sha256=6-k9e5weTWKqWZgZUH2lF42vWrLhXNUJZQVJDHQEfgY,2088
140
145
  letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,1128
141
146
  letta/orm/custom_columns.py,sha256=gVq4opV0sIuThphX7z3QdyF8RKbcxUO6IHX2J4al27U,5585
142
- letta/orm/enums.py,sha256=GnR2H1aMpY4oRjjeuoxK5rOjggF-er93zHAHHZmFWNE,974
147
+ letta/orm/enums.py,sha256=OLvLw53tpxHgJu5OZCZ1pUhYG3N7aNNwwNIq4nD55cE,1016
143
148
  letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
144
- letta/orm/file.py,sha256=iNlVFv9cSt8hlWzFkhPz3QE3A7yTHR4XvSkKdrCaO4E,1927
145
- letta/orm/files_agents.py,sha256=7IbEQF9frzgZtRDOKujJSZ3_oPgGJI9Ihs4lahRUVF0,2833
149
+ letta/orm/file.py,sha256=RPUSjW6PFCUYq9HwQdT_XWUti1SeNwx8XkghzMCzmeg,5400
150
+ letta/orm/files_agents.py,sha256=NFuRNh_1v97cz_ebNJbQbzmd_sFmudTqDl25y2HRLJU,3686
146
151
  letta/orm/group.py,sha256=tygd3nWOmTIQ8TRzJeUA8rd9dfMDzw2XH8BfaQ4aEwI,2100
147
152
  letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,483
148
153
  letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
@@ -163,12 +168,19 @@ letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1
163
168
  letta/orm/sandbox_config.py,sha256=zOCvORexDBt16mc6A3U65EI6_2Xe3Roh7k2asLeFMps,4242
164
169
  letta/orm/source.py,sha256=rtehzez80rRrJigXeRBgTlfTZEUy6cVqDizWEN2tvuY,2224
165
170
  letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
166
- letta/orm/sqlalchemy_base.py,sha256=UYCrOglUxmFQNsKYSjZlTFSxAcYsMzcpYUyMKdVxAG0,42725
171
+ letta/orm/sqlalchemy_base.py,sha256=U0FkbquWCV4bBlqmiHMVf4P1j3QAA0x1wUY1-Bfb1Mo,43647
167
172
  letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
168
173
  letta/orm/step.py,sha256=ZIMxDba_5Ca6aUH0GFr35qcVA86PMCzCIfCwd-HD3Do,3354
169
174
  letta/orm/tool.py,sha256=ft3BDA7Pt-zsXLyPvS_Z_Ibis6H6vY20F7Li7p6nPu8,2652
170
175
  letta/orm/tools_agents.py,sha256=r6t-V21w2_mG8n38zuUb5jOi_3hRxsjgezsLA4sg0m4,626
171
176
  letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
177
+ letta/otel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ letta/otel/context.py,sha256=GUTxFpWMdCmib1Qy80TpAs0Qb5fNH_m5sCYZ1LN3HmM,789
179
+ letta/otel/events.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
+ letta/otel/metric_registry.py,sha256=EYJg-NmutJ9ayOFlE97BHXxZLT8p58bIPJ-KcGJnZAY,4224
181
+ letta/otel/metrics.py,sha256=TUICvne9H-1LmDncAzUbpc3Yoi5uHVh7PlkA_BBViQI,2235
182
+ letta/otel/resource.py,sha256=3T8dcmHMxsgSi-kKIGFW1T56EkZbdbbWPkICH0kba7I,719
183
+ letta/otel/tracing.py,sha256=EoSA5WxWpcHrDZhM1h7mplu3RyHuxfbb4Atw5LzR7yI,8840
172
184
  letta/personas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
185
  letta/personas/examples/anna_pa.txt,sha256=zgiNdSNhy1HQy58cF_6RFPzcg2i37F9v38YuL1CW40A,1849
174
186
  letta/personas/examples/google_search_persona.txt,sha256=RyObU80MIk2oeJJDWOK1aX5pHOtbHSSjIrbUpxov240,1194
@@ -182,6 +194,10 @@ letta/personas/examples/sleeptime_doc_persona.txt,sha256=vVlo5bifdpIc2phV0vgdKCW
182
194
  letta/personas/examples/sleeptime_memory_persona.txt,sha256=ueMQ7ki7IEs-YUvuOH_F0dQoHJChw1w09B9kMBIM4dU,294
183
195
  letta/personas/examples/sqldb/test.db,sha256=MU5Di7exdYdtQH62Q8dfkM6YpckkcwHDiO1fed98XBY,8192
184
196
  letta/personas/examples/voice_memory_persona.txt,sha256=Dq8mprWLyrGDDYS3wIrBicyMnAf4K7Vlu83ZJ4JX9Dc,340
197
+ letta/plugins/README.md,sha256=vjwxbC_PZHAIhoNm5CQpE1TyteltHaoW_M3K4rxZ2GA,608
198
+ letta/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
+ letta/plugins/defaults.py,sha256=xWCxHF-EfqkhWVfCHqrQ5_GmvlX5Ugybd8oPcp58W0U,376
200
+ letta/plugins/plugins.py,sha256=MGOy5tFDPMOkMbE16cFnzYWvANHhhDrsmwcEf-YLcjg,2079
185
201
  letta/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
202
  letta/prompts/gpt_summarize.py,sha256=sOUKcVrTRbX00yLOZVVhwKgduRRVCY64l80ptOY4Ghg,1125
187
203
  letta/prompts/gpt_system.py,sha256=qH_aR5BSwd8ctvbo_Xynietvtudpf7zLsMWsKUw9V1w,1015
@@ -210,9 +226,9 @@ letta/schemas/agent.py,sha256=i0hg-SOX9NRN_1m9mLTZr_O9Rhczrn6SmZs3CkU-394,21037
210
226
  letta/schemas/block.py,sha256=awxCQKxmv4I4k9Au5h-a2RCeSVF54EfWyBQPtHRwuNQ,5585
211
227
  letta/schemas/embedding_config.py,sha256=ufboqW9ctSBJdhwzJRbrGtTzOTwSKfT0LY0mowpr6fs,3398
212
228
  letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
213
- letta/schemas/enums.py,sha256=0xDvvc6wJq2637hjg_DvkSYAgk6hrD8RxCalDoCvROM,1804
229
+ letta/schemas/enums.py,sha256=WdmC2QoBu7tSQlDXnyPelmSMqi7Eb83RmXztPzi7zeA,1969
214
230
  letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
215
- letta/schemas/file.py,sha256=99arX7Q6CbjW0xijXOVK-GyjocEiek33lUP-Tag0w2U,3311
231
+ letta/schemas/file.py,sha256=kX6n5o2veoWnQJISdftHUTC5tdLeOymrZkKI0z7cCJw,4021
216
232
  letta/schemas/group.py,sha256=0qFbCvE5gbdSAk1oXXT8xWQ02R4mS_jttJm0ASh8eCQ,6415
217
233
  letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
218
234
  letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
@@ -242,7 +258,7 @@ letta/schemas/run.py,sha256=SRqPRziINIiPunjOhE_NlbnQYgxTvqmbauni_yfBQRA,2085
242
258
  letta/schemas/sandbox_config.py,sha256=Qfkzw422HCQUsE3GKry94oecQGziAzGXIyd6ke8W06M,5985
243
259
  letta/schemas/source.py,sha256=ZDeTjkNp1rKamG7xZzoUHeCptjpW9WNLzAcJ9QQRxlM,3444
244
260
  letta/schemas/step.py,sha256=uw-n55jSc3O_NaqX7p4Xp73NxndAn1Kgs4nkHi9ALDw,2339
245
- letta/schemas/tool.py,sha256=6TLlf7ChPrzblOrgFOwrxRXv0JDd2zuQoBArp02pgp8,13294
261
+ letta/schemas/tool.py,sha256=KS3g8eh6sEMgqQeNwyfJsP2xVMPPv6wGdANP1fQMM3c,13598
246
262
  letta/schemas/tool_execution_result.py,sha256=4P77llsUsZBnRd0PtPiC4VzGjx7i_-fUNgXQfCpMS9U,896
247
263
  letta/schemas/tool_rule.py,sha256=Il0BLY-CHRuTNeH9CayZTHpg0N_Ii8viYV2isZ_HrPU,6327
248
264
  letta/schemas/usage.py,sha256=9SSTH5kUliwiVF14b-yKbDcmxQBOLg4YH5xhXDbW9UU,1281
@@ -259,10 +275,10 @@ letta/serialize_schemas/marshmallow_tool.py,sha256=jwU69BDCakPlYPSk-ta21kuvsURKO
259
275
  letta/serialize_schemas/pydantic_agent_schema.py,sha256=NKq70niUVMI3_lxMKc3u3rOBUhm77bIFaPRj9aidMUQ,3006
260
276
  letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
277
  letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
262
- letta/server/db.py,sha256=NQx1vGu1Gtuzj_wfKBqg_NY4guWz86IH5tZ_ds9iMp8,10722
278
+ letta/server/db.py,sha256=WYuTpqzJxi98WownUX5VZFPzsc99Pp91xPSNYiU5_KU,10631
263
279
  letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
264
280
  letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
- letta/server/rest_api/app.py,sha256=GNUrIuhaftR7t3K35YklXQOxIaEp6wt3gNQsS6u1X08,15555
281
+ letta/server/rest_api/app.py,sha256=bovvFyBU5epDK8CzLM24NeE4I4IopPZQ3gEj9CFVVzg,15886
266
282
  letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
283
  letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
268
284
  letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
@@ -273,10 +289,10 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
273
289
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
290
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
275
291
  letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
276
- letta/server/rest_api/routers/v1/agents.py,sha256=ZgSq0NzOVmpBcBNRnBWy8ixPMoRaQ-C7I1LdyqIdCTw,43236
292
+ letta/server/rest_api/routers/v1/agents.py,sha256=ZRk3x-S0Jq1x1c8vGh2k5junC_3IqhJ_7Mpr6tyEfoo,42648
277
293
  letta/server/rest_api/routers/v1/blocks.py,sha256=bxezefb92YWkM9mTuamhqq9AQPPRwhKeCejFKJqwD9s,4817
278
294
  letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
279
- letta/server/rest_api/routers/v1/groups.py,sha256=hGo-moYPnhHt2MHtt5pTC5bp06OM-VvLrHH02fLHqLI,10770
295
+ letta/server/rest_api/routers/v1/groups.py,sha256=mxNwO0HQF67DRmJJs8emR-FDRUtDrJD_iOZo2E1mtAQ,10802
280
296
  letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
281
297
  letta/server/rest_api/routers/v1/identities.py,sha256=bPPjQd_UPMJ-IbBbaVmgwNFfbnBwF8zPGA-j3x2XeeU,7676
282
298
  letta/server/rest_api/routers/v1/jobs.py,sha256=Ue-SQ1FrBSsZHbweBNrCNM2RwSnTvyMNNZAxbBmBbwA,2808
@@ -286,7 +302,7 @@ letta/server/rest_api/routers/v1/organizations.py,sha256=5NEjTOdGKWrfN584jfPpJhA
286
302
  letta/server/rest_api/routers/v1/providers.py,sha256=hnwgLJntM6lEVCEsCZSuWA5XIC0wjIT-JXWsBCiZREE,4446
287
303
  letta/server/rest_api/routers/v1/runs.py,sha256=2-eLb3IPW8KzXlaec53IaVo7Bzw8yhAKce3vuzkRPD8,8907
288
304
  letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=pKuy88GD3atrBkKa7VVfKTjg8Y07e1vVtdw4TtxkQBk,8910
289
- letta/server/rest_api/routers/v1/sources.py,sha256=FFxlwwaLLlD2SMm4TkB25PgOPDEuAtYkzkC8yMCV4OA,14631
305
+ letta/server/rest_api/routers/v1/sources.py,sha256=aeeTCS5ca0DzbI8CTUYFHLPzagMAPkUWUxWwU090rrk,15221
290
306
  letta/server/rest_api/routers/v1/steps.py,sha256=P6pnSRI1ZJesqQdPm9x1bw-j_0UaH_pAtcHXyko8_8Q,3477
291
307
  letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
292
308
  letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
@@ -295,8 +311,8 @@ letta/server/rest_api/routers/v1/users.py,sha256=a0J3Ad8kWHxi3vUJB5r9K2GmiplSABZ
295
311
  letta/server/rest_api/routers/v1/voice.py,sha256=NZa7ksEqXTWSqh7CqmbVMClO7wOmrqlRnSqFi6Qh-WM,1949
296
312
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
297
313
  letta/server/rest_api/streaming_response.py,sha256=yYTuZHfuZ-DYYbA1Ta6axkBn5MvC6OHuVRHSiBqRNUk,3939
298
- letta/server/rest_api/utils.py,sha256=K2L61_5iXQf4hktRLeFxyb8VUE_umAKBT5-ux7bNtkc,17105
299
- letta/server/server.py,sha256=FgcRl0P9DpHyaCKcHzOK0UZ_Lp3YPFYx4EeipLRIV5A,110866
314
+ letta/server/rest_api/utils.py,sha256=GhSl-MGhIZzn-whJWNp90WqEzzbx100X8HF-fzCRQjc,17332
315
+ letta/server/server.py,sha256=4M116VxaItLbC5OT4X1-1COJYD44NBcT3FjDUs7sZKI,110910
300
316
  letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
301
317
  letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
302
318
  letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
@@ -310,70 +326,76 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
310
326
  letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
311
327
  letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
312
328
  letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
- letta/services/agent_manager.py,sha256=v8dHIf2UNraZyIVGG1rodpVBgfoTWWLIfRohrTEooQ8,117149
314
- letta/services/block_manager.py,sha256=9aGCPnq-DtgOrMg5ghZIRcJRgGOmksCNPVEmiHusV8Y,22735
329
+ letta/services/agent_manager.py,sha256=lo6FIDmLWSGWw8_b3djaPFWcl5N73o7nSsQI5HBcOCI,115215
330
+ letta/services/block_manager.py,sha256=L_uy7lrbBMQjFH8kvWwDJNXyFLGvAvEOWzevGjaI1pU,22740
315
331
  letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
332
  letta/services/context_window_calculator/context_window_calculator.py,sha256=g6FdOZJudpCdAhSX2BzTFEToVARLm-gXML8_b7MD6vU,6513
317
- letta/services/context_window_calculator/token_counter.py,sha256=m7k4eKdEBLJuIuI_ssebdlNuixmZqa5_JzsNTr7x47o,2864
333
+ letta/services/context_window_calculator/token_counter.py,sha256=Ai9-aPkNvhhMTj9zlvdiQAdVqroTzIyAn0TrHpHNQZY,2954
318
334
  letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
335
  letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ letta/services/file_processor/chunker/line_chunker.py,sha256=s4VvUHbC6cDqbV0jjJz-X-6MAkmTtP6zlrQvsIB8yoQ,1051
320
337
  letta/services/file_processor/chunker/llama_index_chunker.py,sha256=_QaWzA57sfgCk6KNMzvvEyNAXEBX26IVU7n4_Usl_S0,843
321
338
  letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
339
  letta/services/file_processor/embedder/openai_embedder.py,sha256=56U-uVbcB7NdmfEg7XMIqiMb8S7DHmv7wBpjAKO_v10,3301
323
- letta/services/file_processor/file_processor.py,sha256=3KhZeGGOJ2QojnM0XHFBmXgjrJd_atOHtZNeg_BeFCc,4858
340
+ letta/services/file_processor/file_processor.py,sha256=9YVwnuRbETLu8EcWKFXA5QDqVBz3oPuudGWqBW1ZzmM,6241
324
341
  letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
325
342
  letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
326
- letta/services/file_processor/parser/mistral_parser.py,sha256=nUWezKBZwbbiL_qiWHE_ySA7FdF3eCxSIvMtdcvuB4c,2151
343
+ letta/services/file_processor/parser/mistral_parser.py,sha256=69IcBz0SsmgSWCZK7iEnZSzt6jOeTgxLH5CitLAjGMw,2367
327
344
  letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
- letta/services/files_agents_manager.py,sha256=CP_0cHpKpwB8kk5_Ej9KPfyXxjbQ6sa99f3kANGrNmo,6948
329
- letta/services/group_manager.py,sha256=urqXPrOrI6ojJTrqnZyxI9vgxMNSVE0ysjdzXttMxUc,23303
330
- letta/services/helpers/agent_manager_helper.py,sha256=eey8apsTpQr4zV9bkXv9YNtcJ4sHG2DcIW-ZX9ubmNg,23181
331
- letta/services/helpers/noop_helper.py,sha256=OZ6wZLsdNEAg9Q2t5oFTOMK6jp-YUMBPdoyiR8M3T1c,272
345
+ letta/services/files_agents_manager.py,sha256=EJMYx6ez0JYiSebJQwPOjz13ozB_ROSPtkqW5ODMklc,10291
346
+ letta/services/group_manager.py,sha256=X2gKKUGKTXGRMC8YjwmE6EOB1cVM4lo31eCnmog7dPQ,23368
347
+ letta/services/helpers/agent_manager_helper.py,sha256=ZwK4JQR3jk4xdXPOKPwh9Gtwa6q0OsoceWegTQ7Smg0,38769
332
348
  letta/services/helpers/tool_execution_helper.py,sha256=cf_XHbJYAGNn2t1iflO6QhzPfbFkr1miFJQar-NSpR0,7764
333
349
  letta/services/helpers/tool_parser_helper.py,sha256=-prOafgL7WurKi-MZKXmmvb2Bniq8tsCeGBYSKhIdug,4265
334
- letta/services/identity_manager.py,sha256=m_0nnPd4xCul9ldNVNukextpuMwoHovptUnJoxxdaXg,10570
335
- letta/services/job_manager.py,sha256=4KBjwdOTJXEGy8RsIdtYfNmvhTJFbBdO1J2qeFzNgcI,23272
336
- letta/services/llm_batch_manager.py,sha256=tb1VtMQIwiXU7vsCy8vRKWShUwnHICvcajmubEr6IiM,20811
350
+ letta/services/identity_manager.py,sha256=L8EYGYXA9sveLwPCTYZIdYZwOMnHex47TBiMYcco_y4,10575
351
+ letta/services/job_manager.py,sha256=GPvlBLDaAlXKuZpF1qyP3Mebmxtd2K-hO4gmCuzvbLM,23277
352
+ letta/services/llm_batch_manager.py,sha256=w0gXMQw4q7jf6FKiibtIcWHyaLziJpiiL7qjZQe3ogs,20816
337
353
  letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
354
  letta/services/mcp/base_client.py,sha256=0XC9ywajuW7SsJmMR1TOlrPcC4F0d7OsazWBz0k0P6s,2643
339
355
  letta/services/mcp/sse_client.py,sha256=uTIrwhZVhBiCHLYw5nNvjT5fm2AyYRzXmAPLv4wQWgc,942
340
356
  letta/services/mcp/stdio_client.py,sha256=JXXARREZb2VY1Ff7GaZpx3Onk6solEIjC0zXyTQVb54,855
341
357
  letta/services/mcp/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
342
358
  letta/services/mcp_manager.py,sha256=UxX3_3WXA_BuWJ5vRrw3ULicPcNB2EnofVEzd58nmQI,14171
343
- letta/services/message_manager.py,sha256=uk_JYUQ16T_2URDWP2NeqBqhvmum9zpAMqGUNKOmDdw,27163
344
- letta/services/organization_manager.py,sha256=S-W0O9G1gn4No6LBjCOusbyL9T_MKEGaxlqzrAWKp-A,5899
345
- letta/services/passage_manager.py,sha256=yX7W4s5BpZnyrs_vNoQBk2OprCg1s232eChRS5j3lqA,18910
346
- letta/services/per_agent_lock_manager.py,sha256=9CVr8PeRm4qaPs61mfHhQYe0rtbXINoFXmWeNeN3jaQ,622
347
- letta/services/provider_manager.py,sha256=Yvp0so9_L9vdhHRk6EP3AvSqawfjtl9wH0FXTbRHzbw,7973
348
- letta/services/sandbox_config_manager.py,sha256=l--kN05MLBQfJdntvxkW6DhRPpSiRqadZ4JSQwMkPnU,26133
349
- letta/services/source_manager.py,sha256=0WqiAnPJaj_hf9LFQrDQJ4xe3-0pHVNcE4fFuXs7gL4,8648
350
- letta/services/step_manager.py,sha256=V-QszqpRdDwa7atA0M0FxkHvzSsbje3YOAtYBitFoLA,10729
359
+ letta/services/message_manager.py,sha256=UAZ_KwolQP99ePs-HBOroIYiwSkMSe4jHVQ33NGsZ48,27168
360
+ letta/services/organization_manager.py,sha256=5ML4OiUUSPw-Wi_OsN68N4fEEbq3jX_Ny0DHGKHjXJE,5904
361
+ letta/services/passage_manager.py,sha256=akdc-XaRQlyGEfywW6t7S8_1ReCsOLUxh44BuVYNj_0,18915
362
+ letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
363
+ letta/services/provider_manager.py,sha256=rkxgPrBn_JYYiztyryySKM4bCEibRJq8diOGHHvJxFY,7978
364
+ letta/services/sandbox_config_manager.py,sha256=fcJkXCaA6vmrnTusHhns-c_aRXcPlFLICPGdWDaY8XQ,26138
365
+ letta/services/source_manager.py,sha256=Hun0HYNoGLCWKfNvpWS9NcllRrJ1kkMzqRTItaUML_w,14411
366
+ letta/services/step_manager.py,sha256=G6Vxkq_MePK5xCH_r7YXM42C9Sm65tl-nL0VWPr31gI,10723
351
367
  letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
368
  letta/services/summarizer/enums.py,sha256=szzPX2OBRRJEZsBTGYQThrNz02ELFqhuLwvOR7ozi7A,208
353
- letta/services/summarizer/summarizer.py,sha256=sDioPf_STAG0a3-CcteZbsGpbGNT9u5Jv3IpaRld1Xk,9270
354
- letta/services/telemetry_manager.py,sha256=i8CM33Q5R2gKTrWMW6eTHmgOZGU7PBkq49x2sou6ShM,3120
369
+ letta/services/summarizer/summarizer.py,sha256=9UHxZ1YPIIUWMK5_kz4_Kf5Qj9eHOo2zeEcmbzfUi_o,9275
370
+ letta/services/telemetry_manager.py,sha256=1qvXeYltOf7m7oondtr4PeogVYqWekNO39zaDOJMeig,3109
355
371
  letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
- letta/services/tool_executor/tool_execution_manager.py,sha256=O06MkQvBW4U87To6N9r4BpeD8SFnjjOuJChnmZn3Z2w,4708
357
- letta/services/tool_executor/tool_execution_sandbox.py,sha256=W5032SH66jYpAJX_7GM3VKlf1zMS8q_M4ntHaeWmK9Q,25537
358
- letta/services/tool_executor/tool_executor.py,sha256=EKlxkrVO7EttRYxLwll-w9Tl4g_yALmQt4iynrCDeNk,37519
359
- letta/services/tool_manager.py,sha256=5DqNmbI7Wa0uXBg18h4Sz4zHz8cUi98TO3-Rtz_j7IE,22318
372
+ letta/services/tool_executor/builtin_tool_executor.py,sha256=NvxTiuW8XhMG_qSSc0AFoZ6Jy6q_2GXacJlLTlyzhHM,4586
373
+ letta/services/tool_executor/composio_tool_executor.py,sha256=eBRNd1SItYkjo3Jg4qTzjxc9dHkSaSYzdelj-k9XQxg,2148
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
376
+ letta/services/tool_executor/mcp_tool_executor.py,sha256=x8V8J4Xi1ZVbwfaR_IwnUGRrD9w5wgV4G54sjraVBw4,1676
377
+ letta/services/tool_executor/multi_agent_tool_executor.py,sha256=Lfn9aEQSHVxS6JL0uOMGsIhHDHPv2agVA7qhNoVuyXw,5293
378
+ letta/services/tool_executor/tool_execution_manager.py,sha256=oEKa-3Qsbi9LfBxjnl4VjjJ8aHIdMLrTf7SCg9IXU5w,6161
379
+ letta/services/tool_executor/tool_execution_sandbox.py,sha256=UYVbL3aZ5dEjgc807uTYLX9RulsW_yx_KJ2py0A2qBA,25542
380
+ letta/services/tool_executor/tool_executor.py,sha256=knD0FKwdlkH11ShRrtwkkyi089FbnbrZtxlrof1O3Ro,4553
381
+ letta/services/tool_executor/tool_executor_base.py,sha256=qkAvgGUsC1OyS25-cxcLSAlRaRZlTEhhk6RcvcRgdEs,1444
382
+ letta/services/tool_manager.py,sha256=p7chns_SCD7hBznj9v_MeV4gWJLcqIRCAgZYN-FDRwY,21806
360
383
  letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
384
  letta/services/tool_sandbox/base.py,sha256=mOIYy1lXO7yFnrgsNQLiRW8og5V66HGZL9mwwRkWiwk,6228
362
- letta/services/tool_sandbox/e2b_sandbox.py,sha256=YO2GXFHIpryA0L6K3KGF3_Xq_liNMdyKJUg3qxhPy4E,8389
363
- letta/services/tool_sandbox/local_sandbox.py,sha256=LDsGysMni0YQJz6gDi9O11aAWLbWOneeMv_qKcTBlTE,11662
364
- letta/services/user_manager.py,sha256=Q-DTuhxcjrY-mAGXOkt1iwMnxfFKv8v8ZAAtZNj0UQE,9230
365
- letta/settings.py,sha256=a9WXxHKtxyr-4JphzQK2hl9iR2B2jBggx2fwGCgn3UI,9228
385
+ letta/services/tool_sandbox/e2b_sandbox.py,sha256=YCcs0OEC1xNuloPT122bep00QxrFswN-g4WVnqiNyxo,8394
386
+ letta/services/tool_sandbox/local_sandbox.py,sha256=hJq3h92Z9iq3CIMKEaJMSeW_Gmqktw18I2kVxP3y5dI,11772
387
+ letta/services/user_manager.py,sha256=RJV-r9XNdTnOG-h2dfjZkpXPJ_V2LvoE_o9irtCEWZI,9381
388
+ letta/settings.py,sha256=ZDvNkYJTSvMZkWEGy-Z6xe9SpRQs1GJbc_r9_8RiUmY,9825
366
389
  letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
367
390
  letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
368
391
  letta/system.py,sha256=mKxmvvekuP8mdgsebRINGBoFbUdJhxLJ260crPBNVyk,8386
369
392
  letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
393
  letta/templates/sandbox_code_file.py.j2,sha256=zgzaboDZVtM15XkxILnhiKisF7DSUoI2YpfK2xF2WB0,1379
371
394
  letta/templates/template_helper.py,sha256=uHWO1PukgMoIIvgqQdPyHq3o3CQ6mcjUjTGvx9VLGkk,409
372
- letta/tracing.py,sha256=IHgGiwUDZPbFxWLZs0bNKS4Xoc6_YJvB6AeuzGfMMbA,9439
373
395
  letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
374
- letta/utils.py,sha256=_QpvNXyH641Ic2dY9VDFYyJCUKNdPt724_mCd0lu-eU,33075
375
- letta_nightly-0.8.0.dev20250606104326.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
376
- letta_nightly-0.8.0.dev20250606104326.dist-info/METADATA,sha256=92H9ObXBAU-yTaHEcrKoieSdAE1gEt7ariF-VyH9Qm8,22692
377
- letta_nightly-0.8.0.dev20250606104326.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
378
- letta_nightly-0.8.0.dev20250606104326.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
379
- letta_nightly-0.8.0.dev20250606104326.dist-info/RECORD,,
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,,