letta-nightly 0.7.20.dev20250521104258__py3-none-any.whl → 0.7.21.dev20250521233415__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 (66) hide show
  1. letta/__init__.py +1 -1
  2. letta/agent.py +290 -3
  3. letta/agents/base_agent.py +0 -55
  4. letta/agents/helpers.py +5 -0
  5. letta/agents/letta_agent.py +314 -64
  6. letta/agents/letta_agent_batch.py +102 -55
  7. letta/agents/voice_agent.py +5 -5
  8. letta/client/client.py +9 -18
  9. letta/constants.py +55 -1
  10. letta/functions/function_sets/builtin.py +27 -0
  11. letta/groups/sleeptime_multi_agent_v2.py +1 -1
  12. letta/interfaces/anthropic_streaming_interface.py +10 -1
  13. letta/interfaces/openai_streaming_interface.py +9 -2
  14. letta/llm_api/anthropic.py +21 -2
  15. letta/llm_api/anthropic_client.py +33 -6
  16. letta/llm_api/google_ai_client.py +136 -423
  17. letta/llm_api/google_vertex_client.py +173 -22
  18. letta/llm_api/llm_api_tools.py +27 -0
  19. letta/llm_api/llm_client.py +1 -1
  20. letta/llm_api/llm_client_base.py +32 -21
  21. letta/llm_api/openai.py +57 -0
  22. letta/llm_api/openai_client.py +7 -11
  23. letta/memory.py +0 -1
  24. letta/orm/__init__.py +1 -0
  25. letta/orm/enums.py +1 -0
  26. letta/orm/provider_trace.py +26 -0
  27. letta/orm/step.py +1 -0
  28. letta/schemas/provider_trace.py +43 -0
  29. letta/schemas/providers.py +210 -65
  30. letta/schemas/step.py +1 -0
  31. letta/schemas/tool.py +4 -0
  32. letta/server/db.py +37 -19
  33. letta/server/rest_api/routers/v1/__init__.py +2 -0
  34. letta/server/rest_api/routers/v1/agents.py +57 -34
  35. letta/server/rest_api/routers/v1/blocks.py +3 -3
  36. letta/server/rest_api/routers/v1/identities.py +24 -26
  37. letta/server/rest_api/routers/v1/jobs.py +3 -3
  38. letta/server/rest_api/routers/v1/llms.py +13 -8
  39. letta/server/rest_api/routers/v1/sandbox_configs.py +6 -6
  40. letta/server/rest_api/routers/v1/tags.py +3 -3
  41. letta/server/rest_api/routers/v1/telemetry.py +18 -0
  42. letta/server/rest_api/routers/v1/tools.py +6 -6
  43. letta/server/rest_api/streaming_response.py +105 -0
  44. letta/server/rest_api/utils.py +4 -0
  45. letta/server/server.py +140 -1
  46. letta/services/agent_manager.py +251 -18
  47. letta/services/block_manager.py +52 -37
  48. letta/services/helpers/noop_helper.py +10 -0
  49. letta/services/identity_manager.py +43 -38
  50. letta/services/job_manager.py +29 -0
  51. letta/services/message_manager.py +111 -0
  52. letta/services/sandbox_config_manager.py +36 -0
  53. letta/services/step_manager.py +146 -0
  54. letta/services/telemetry_manager.py +58 -0
  55. letta/services/tool_executor/tool_execution_manager.py +49 -5
  56. letta/services/tool_executor/tool_execution_sandbox.py +47 -0
  57. letta/services/tool_executor/tool_executor.py +236 -7
  58. letta/services/tool_manager.py +160 -1
  59. letta/services/tool_sandbox/e2b_sandbox.py +65 -3
  60. letta/settings.py +10 -2
  61. letta/tracing.py +5 -5
  62. {letta_nightly-0.7.20.dev20250521104258.dist-info → letta_nightly-0.7.21.dev20250521233415.dist-info}/METADATA +3 -2
  63. {letta_nightly-0.7.20.dev20250521104258.dist-info → letta_nightly-0.7.21.dev20250521233415.dist-info}/RECORD +66 -59
  64. {letta_nightly-0.7.20.dev20250521104258.dist-info → letta_nightly-0.7.21.dev20250521233415.dist-info}/LICENSE +0 -0
  65. {letta_nightly-0.7.20.dev20250521104258.dist-info → letta_nightly-0.7.21.dev20250521233415.dist-info}/WHEEL +0 -0
  66. {letta_nightly-0.7.20.dev20250521104258.dist-info → letta_nightly-0.7.21.dev20250521233415.dist-info}/entry_points.txt +0 -0
letta/settings.py CHANGED
@@ -15,6 +15,9 @@ class ToolSettings(BaseSettings):
15
15
  e2b_api_key: Optional[str] = None
16
16
  e2b_sandbox_template_id: Optional[str] = None # Updated manually
17
17
 
18
+ # Tavily search
19
+ tavily_api_key: Optional[str] = None
20
+
18
21
  # Local Sandbox configurations
19
22
  tool_exec_dir: Optional[str] = None
20
23
  tool_sandbox_timeout: float = 180
@@ -95,6 +98,7 @@ class ModelSettings(BaseSettings):
95
98
 
96
99
  # anthropic
97
100
  anthropic_api_key: Optional[str] = None
101
+ anthropic_max_retries: int = 3
98
102
 
99
103
  # ollama
100
104
  ollama_base_url: Optional[str] = None
@@ -175,11 +179,14 @@ class Settings(BaseSettings):
175
179
  pg_host: Optional[str] = None
176
180
  pg_port: Optional[int] = None
177
181
  pg_uri: Optional[str] = default_pg_uri # option to specify full uri
178
- pg_pool_size: int = 80 # Concurrent connections
179
- pg_max_overflow: int = 30 # Overflow limit
182
+ pg_pool_size: int = 25 # Concurrent connections
183
+ pg_max_overflow: int = 10 # Overflow limit
180
184
  pg_pool_timeout: int = 30 # Seconds to wait for a connection
181
185
  pg_pool_recycle: int = 1800 # When to recycle connections
182
186
  pg_echo: bool = False # Logging
187
+ pool_pre_ping: bool = True # Pre ping to check for dead connections
188
+ pool_use_lifo: bool = True
189
+ disable_sqlalchemy_pooling: bool = False
183
190
 
184
191
  # multi agent settings
185
192
  multi_agent_send_message_max_retries: int = 3
@@ -190,6 +197,7 @@ class Settings(BaseSettings):
190
197
  verbose_telemetry_logging: bool = False
191
198
  otel_exporter_otlp_endpoint: Optional[str] = None # otel default: "http://localhost:4317"
192
199
  disable_tracing: bool = False
200
+ llm_api_logging: bool = True
193
201
 
194
202
  # uvicorn settings
195
203
  uvicorn_workers: int = 1
letta/tracing.py CHANGED
@@ -19,11 +19,11 @@ from opentelemetry.trace import Status, StatusCode
19
19
  tracer = trace.get_tracer(__name__)
20
20
  _is_tracing_initialized = False
21
21
  _excluded_v1_endpoints_regex: List[str] = [
22
- "^GET /v1/agents/(?P<agent_id>[^/]+)/messages$",
23
- "^GET /v1/agents/(?P<agent_id>[^/]+)/context$",
24
- "^GET /v1/agents/(?P<agent_id>[^/]+)/archival-memory$",
25
- "^GET /v1/agents/(?P<agent_id>[^/]+)/sources$",
26
- r"^POST /v1/voice-beta/.*/chat/completions$",
22
+ # "^GET /v1/agents/(?P<agent_id>[^/]+)/messages$",
23
+ # "^GET /v1/agents/(?P<agent_id>[^/]+)/context$",
24
+ # "^GET /v1/agents/(?P<agent_id>[^/]+)/archival-memory$",
25
+ # "^GET /v1/agents/(?P<agent_id>[^/]+)/sources$",
26
+ # r"^POST /v1/voice-beta/.*/chat/completions$",
27
27
  ]
28
28
 
29
29
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-nightly
3
- Version: 0.7.20.dev20250521104258
3
+ Version: 0.7.21.dev20250521233415
4
4
  Summary: Create LLM agents with long-term memory and custom tools
5
5
  License: Apache License
6
6
  Author: Letta Team
@@ -41,7 +41,7 @@ Requires-Dist: e2b-code-interpreter (>=1.0.3,<2.0.0) ; extra == "cloud-tool-sand
41
41
  Requires-Dist: faker (>=36.1.0,<37.0.0)
42
42
  Requires-Dist: fastapi (>=0.115.6,<0.116.0) ; extra == "server" or extra == "desktop" or extra == "all"
43
43
  Requires-Dist: firecrawl-py (>=1.15.0,<2.0.0)
44
- Requires-Dist: google-genai (>=1.1.0,<2.0.0) ; extra == "google"
44
+ Requires-Dist: google-genai (>=1.15.0,<2.0.0) ; extra == "google"
45
45
  Requires-Dist: grpcio (>=1.68.1,<2.0.0)
46
46
  Requires-Dist: grpcio-tools (>=1.68.1,<2.0.0)
47
47
  Requires-Dist: html2text (>=2020.1.16,<2021.0.0)
@@ -92,6 +92,7 @@ Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
92
92
  Requires-Dist: sqlalchemy-json (>=0.7.0,<0.8.0)
93
93
  Requires-Dist: sqlalchemy-utils (>=0.41.2,<0.42.0)
94
94
  Requires-Dist: sqlmodel (>=0.0.16,<0.0.17)
95
+ Requires-Dist: tavily-python (>=0.7.2,<0.8.0)
95
96
  Requires-Dist: tqdm (>=4.66.1,<5.0.0)
96
97
  Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
97
98
  Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server" or extra == "desktop" or extra == "all"
@@ -1,14 +1,14 @@
1
- letta/__init__.py,sha256=SIiAFrGAjtCVI5YyW5Vifp-lkonx1VtE5UdQ81u5MDM,916
1
+ letta/__init__.py,sha256=c_780KBP9tBCLrZRktRoHLFWPkjdajwKwNogZtxUtQs,916
2
2
  letta/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
3
- letta/agent.py,sha256=7f_vLO0b6pbCoXXzvgSIifViGRpg1MzeiesudknZyLk,72618
3
+ letta/agent.py,sha256=2r6xovRHeUnmWZ6WJoIP217ryse5Q3Bkco1JXiV599w,87459
4
4
  letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- letta/agents/base_agent.py,sha256=ZmuSpYF8a5I0QXs8LDgS4jaA9k-6Pu2W-hl4E8A1ELo,8276
5
+ letta/agents/base_agent.py,sha256=-crUJ8raU1fe9ptsS3jBR90g74p5ueVYFjqBaZdODMQ,5431
6
6
  letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
7
7
  letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
8
- letta/agents/helpers.py,sha256=qJUmGgwVzNYTmV28sFoUu7MTuyqwzZ4qEpNXHVmSu6s,6055
9
- letta/agents/letta_agent.py,sha256=f_DlUwOQ-Uogvb1XgSh63veBFkMotU7Fx1YTeMtyERo,21109
10
- letta/agents/letta_agent_batch.py,sha256=Z82Me5FV_jQ9PTopUvJ73F4NDFZeiDTgNPTQP5p9BIg,25292
11
- letta/agents/voice_agent.py,sha256=wCF2adlbDTEk_P3UrGPCHZy4IGvw75TUGDePW6N-sGA,21402
8
+ letta/agents/helpers.py,sha256=nwmgbtxAANwUsuwZqU4SFiQ3Kc_ULk78H76Z_K6I-ZQ,6127
9
+ letta/agents/letta_agent.py,sha256=Cbyx-UBpooooMW6wGIi1PLMc7tiw6Bpj2YGYSBFWxj8,32928
10
+ letta/agents/letta_agent_batch.py,sha256=CCfkPcdTjAoZ1dXDVtC3bXiAMp4ss2KFr5KWsUkZW-4,27166
11
+ letta/agents/voice_agent.py,sha256=bZX31bsf3290zuuElx93JnAoKHVoiLRuBiYhQh2aGSc,21462
12
12
  letta/agents/voice_sleeptime_agent.py,sha256=gB44pOeIQJer_XqdxSNt7Txv0JaQAv9pzsiEFO9GYdY,7346
13
13
  letta/benchmark/benchmark.py,sha256=ebvnwfp3yezaXOQyGXkYCDYpsmre-b9hvNtnyx4xkG0,3701
14
14
  letta/benchmark/constants.py,sha256=aXc5gdpMGJT327VuxsT5FngbCK2J41PQYeICBO7g_RE,536
@@ -16,11 +16,11 @@ letta/cli/cli.py,sha256=Y3UC0mCvGR283sdegnqgq-6Fcwie59baXy3P0Cf0V-k,16569
16
16
  letta/cli/cli_config.py,sha256=MNMhIAAjXiAy2gX_gAtqiY0Ya6VNbzXJWjIcRVEZa-k,8597
17
17
  letta/cli/cli_load.py,sha256=vER0PwpHnsCZtCHcR2YjEXM-VVuO9jhfQibdo3gI3S0,2703
18
18
  letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- letta/client/client.py,sha256=SrvaqB9zzpIHjpJiqFS7JIFiRXD2PjOSTKvYUvwRFAk,139155
19
+ letta/client/client.py,sha256=2QZPZ1KZf5QFa6GG_mkZeTIOyiYjfAe8ZQBMlKMLyRg,138380
20
20
  letta/client/streaming.py,sha256=UsDS_tDTsA3HgYryIDvGGmx_dWfnfQwtmEwLi4Z89Ik,4701
21
21
  letta/client/utils.py,sha256=VCGV-op5ZSmurd4yw7Vhf93XDQ0BkyBT8qsuV7EqfiU,2859
22
22
  letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
23
- letta/constants.py,sha256=MlKFHxz4Au10hszE4APwgwGMfBtzYeTmIahyBlJq9Lk,9371
23
+ letta/constants.py,sha256=c7EsZ3p3ki-MYH8ILFugpL71NeESeH-F4lTiGT3tZvE,11287
24
24
  letta/data_sources/connectors.py,sha256=m4ALtjlaZpSlJnlq2VMNzx0onowNpjvoa4ZjAB5SMQw,7243
25
25
  letta/data_sources/connectors_helper.py,sha256=oQpVlc-BjSz9sTZ7sp4PsJSXJbBKpZPi3Dam03CURTQ,3376
26
26
  letta/embeddings.py,sha256=KvC2bl5tARpVY9xcFmw4Cwu1vN0DoH266v2mSUZqwkY,10528
@@ -30,6 +30,7 @@ letta/functions/ast_parsers.py,sha256=CQI0rUoIXcLKAev_GYrXcldRIGN5ZQtk5u4FLoHe5s
30
30
  letta/functions/async_composio_toolset.py,sha256=J6iOOT_rFRS4cpOAaH6R3YDvutPr4fTgpTFHgeaUzu4,4633
31
31
  letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2i8XP_8,3593
32
32
  letta/functions/function_sets/base.py,sha256=GqInIQ7hMPiuPlrHF_u7A3Gds7G1Za-mu9ML8A5Rg6k,16096
33
+ letta/functions/function_sets/builtin.py,sha256=Cnv_McX-JLh-VDISUIePO_rAUbqRmGINdzu8-a5OiEk,899
33
34
  letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
34
35
  letta/functions/function_sets/multi_agent.py,sha256=AdWAYBw6e3WuvDQubpBoS_ZZz-884evvklMgTqeuf6Q,6900
35
36
  letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
@@ -47,7 +48,7 @@ letta/groups/dynamic_multi_agent.py,sha256=OLCxhICFLYyx8wjKGPr1INc6pniEuk4YGZyZh
47
48
  letta/groups/helpers.py,sha256=AcrguRkshtXEV31eWKRfGYEVub8plHsU2kg3QpezbZw,4500
48
49
  letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
49
50
  letta/groups/sleeptime_multi_agent.py,sha256=umA62MpAuML-vhfkcY0nmqj2O4KAZsnEgyaNhYlPrDo,10483
50
- letta/groups/sleeptime_multi_agent_v2.py,sha256=czgV8g5SZdA3WnXSZm20SEvxddeCCFQOVsQLnz1cCjQ,10106
51
+ letta/groups/sleeptime_multi_agent_v2.py,sha256=GlIAUK1v0k-wnz7Sirm7E-FnF76xFeRyhxt0qkriros,10118
51
52
  letta/groups/supervisor_multi_agent.py,sha256=ml8Gi9gyVjPuVZjAJAkpGZDjnM7GOS50NkKf5SIutvQ,4455
52
53
  letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
53
54
  letta/helpers/composio_helpers.py,sha256=5SznD1Y0Y1rV4_wu-uCaZdDU2tNedk-RIX0M9-0r6yo,947
@@ -62,9 +63,9 @@ letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6
62
63
  letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
63
64
  letta/interface.py,sha256=6GKasvJMASu-kcZch6Hffz1vnHuPA_ryI6cLH2bMArc,13023
64
65
  letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- letta/interfaces/anthropic_streaming_interface.py,sha256=w2-adcgT18g_IZgOhjdxIALIHLD_lJrKGG_mx3VWn1c,21118
66
+ letta/interfaces/anthropic_streaming_interface.py,sha256=qjZaj6uY8NAr6HPhHkgk_6VBbpOu4OvUWT9V4R9Rg0E,21545
66
67
  letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=LANdVBA8UNWscBvsFbWTT8cxNg5fHA_woWU2jkTf6TQ,4911
67
- letta/interfaces/openai_streaming_interface.py,sha256=_N_vSs6sSwzzSSjCA8lKdinDlcvcWZDloQa4uFRstvQ,19978
68
+ letta/interfaces/openai_streaming_interface.py,sha256=XEfjm8lvjDiP5aHr9W1PsV69TjMb2caaUENrSEkZa50,20177
68
69
  letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
69
70
  letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
71
  letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
@@ -72,23 +73,23 @@ letta/jobs/llm_batch_job_polling.py,sha256=i_riKv3FXk6s8IM8xzBXIcc45TT-xUjk6peug
72
73
  letta/jobs/scheduler.py,sha256=VpRyO2vuETNrarHOIWYctAkrD4WFtV57buUSHaLE89Y,10240
73
74
  letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
74
75
  letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- letta/llm_api/anthropic.py,sha256=lfAmDDBnojs34pvGu6wuY8KtgWMzmjzoHZrb-wP1bfM,46330
76
- letta/llm_api/anthropic_client.py,sha256=Bk7_MjNpfDVPRBiU3xHsuRVkmGQhQYdhgsavuTjGI4M,24715
76
+ letta/llm_api/anthropic.py,sha256=_FIeOSpvynzYf9vWG1VAB7h1xOJgOAMMSeCdD3CfBRA,47009
77
+ letta/llm_api/anthropic_client.py,sha256=vKwHO3A0FdFf2YeJQaaHXzDgsPK95mVBN6X_Je9wJ3Q,25834
77
78
  letta/llm_api/aws_bedrock.py,sha256=kAPpKPRe4ZUa6fkxFbo8xwQgq4fJf3QoZEAP1LOCfaw,4168
78
79
  letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
79
80
  letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
80
81
  letta/llm_api/cohere.py,sha256=IZ6LXyOFMYjWHTeNG9lvFxCdV_NIl0hY2q9SPFYXNkQ,14849
81
82
  letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,12456
82
- letta/llm_api/google_ai_client.py,sha256=9sKAuu3qGYt7IVGTb7krEUcVeSsPEE6x0V-jRacSgCg,24471
83
+ letta/llm_api/google_ai_client.py,sha256=yIP4lJ1sJoryS_76FjSyzOTCOEnXZoyoo-MarR9YzU8,9401
83
84
  letta/llm_api/google_constants.py,sha256=4PKWUNNbBHgHi4K5u9YaHr_8UC3fokfI6Qb6Dfpt4mU,693
84
- letta/llm_api/google_vertex_client.py,sha256=dPgiSggxWNRJf-HSlwrX_WvACY0mfluTrl4U8fXr-U8,16234
85
+ letta/llm_api/google_vertex_client.py,sha256=v_UsJncxqdGQJAyMKRaT0oVR0fXa4rkRhirENeaqcHM,22703
85
86
  letta/llm_api/helpers.py,sha256=rpZInutKVKgoywreclisNSi2zVxwFinAzJIuxF6ll4I,17041
86
- letta/llm_api/llm_api_tools.py,sha256=YbslnPRFiJwaxRMhZ4T8K8SgByw73Ck61k3KNLScPr0,28995
87
- letta/llm_api/llm_client.py,sha256=qJ92biZVCXyRESzZX3ODeMd-kcgkYtJGdp6oVjV7PBc,2074
88
- letta/llm_api/llm_client_base.py,sha256=eID0J0l4VITZDL5765xEDvV8WLL4WzwQAzFEsC7ea6I,6067
87
+ letta/llm_api/llm_api_tools.py,sha256=gMYoEvs5vSyvjos2eYJN6_BpQ2aNpt3zvyF7D2phbqY,30044
88
+ letta/llm_api/llm_client.py,sha256=sO9MwiSOJ_ycOFnYrQP0_g6cFkMSnrZqFDz1sUeBHD8,2098
89
+ letta/llm_api/llm_client_base.py,sha256=nbW70WZmk9bwLPzjgJ9ATeKjm3xzfZs7vk5lQE0QJ3U,6494
89
90
  letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
90
- letta/llm_api/openai.py,sha256=cogO-BTGE4GgM9emz2NFsjodZ-btNmZpEESKKjnYHqo,25426
91
- letta/llm_api/openai_client.py,sha256=NACYguMG_4nb5LqqdnR6XiD9RLqNLpn5TeHUzRL9VMc,15294
91
+ letta/llm_api/openai.py,sha256=428s_NFgzah6ccEZFOfI5WS0uGafYKgOgE7KN_c0KfQ,27353
92
+ letta/llm_api/openai_client.py,sha256=sb77nYJZRq3L-bV9YMaHqk-rfqqg0DPo8CAzzRkIPV8,15099
92
93
  letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
93
94
  letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
95
  letta/local_llm/chat_completion_proxy.py,sha256=gc5gaKoHP8QaWRulDeEYPk7Onl8KdCBmpF2l9znXKeQ,13853
@@ -128,11 +129,11 @@ letta/local_llm/webui/legacy_settings.py,sha256=BLmd3TSx5StnY3ibjwaxYATPt_Lvq-o1
128
129
  letta/local_llm/webui/settings.py,sha256=gmLHfiOl1u4JmlAZU2d2O8YKF9lafdakyjwR_ftVPh8,552
129
130
  letta/log.py,sha256=FbFwU9KEX7k0FBYhPl7fJ6uQ3NO3-ZbsnM2OpcTFXjo,2217
130
131
  letta/main.py,sha256=_agyaYPJq70OL0goNwO34zENL2KupnTgqlg-HVcNaTY,15379
131
- letta/memory.py,sha256=Qy2m-B6-HDjoDQWTMrnI7XGyteD_zP2iT8CHAvEgJA4,4299
132
+ letta/memory.py,sha256=HzAQxMLCKEUhb9q6fb4ZMeoAA8s4Tu7QLBXANv8OnXY,4273
132
133
  letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
134
  letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
134
135
  letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
135
- letta/orm/__init__.py,sha256=sLJwaOdpm0Ts2EnE00v_zV39m_q7N4sLXvdmTw1KQic,1276
136
+ letta/orm/__init__.py,sha256=ajknaBBEy2z7eCXT53p34Symp0ece7CwnMn-sBlZKC8,1327
136
137
  letta/orm/agent.py,sha256=8RaKoiVD0y4XNXmjwBvmTJoKOwVLUfFXsBk7nFpFEhw,13549
137
138
  letta/orm/agents_tags.py,sha256=IM9UxHtcispiieh0EnOIGTk--nGK9XaS6v3jl_cjcWo,1011
138
139
  letta/orm/base.py,sha256=PNAsqGngx8X4pcH8xndD6GFx9pyFwwaywjRCQXd12EI,3090
@@ -140,7 +141,7 @@ letta/orm/block.py,sha256=ZLVw_vFoTt1bckWmJnSycrd9CXYrzuAQOZWzX0LP33Y,5741
140
141
  letta/orm/block_history.py,sha256=6-k9e5weTWKqWZgZUH2lF42vWrLhXNUJZQVJDHQEfgY,2088
141
142
  letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,1128
142
143
  letta/orm/custom_columns.py,sha256=0Azc-OIObBlnlYHUOcSV0s5SzS7lGHDB62NVnhq_ERo,5228
143
- letta/orm/enums.py,sha256=qRv6m6SJWBTusS8X0Ipqo1xvsXU2RVlizn7nxWspKl4,868
144
+ letta/orm/enums.py,sha256=BPuoCRHjYw88HbLN3hjLyJ3Y5HQXMQoqoe6Udao5OaM,904
144
145
  letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
145
146
  letta/orm/file.py,sha256=7_p7LxityP3NQZVURQYG0kgcZhEkVuMN0Fj4h9YOe1w,1780
146
147
  letta/orm/group.py,sha256=tygd3nWOmTIQ8TRzJeUA8rd9dfMDzw2XH8BfaQ4aEwI,2100
@@ -158,12 +159,13 @@ letta/orm/mixins.py,sha256=9c79Kfr-Z1hL-SDYKeoptx_yMTbBwJJBo9nrKEzSDAc,1622
158
159
  letta/orm/organization.py,sha256=STQ5x5zXoPhfagiRQX6j2lWgOqwznPp-K019MPjbY0s,3599
159
160
  letta/orm/passage.py,sha256=luoQMBAm2DwWpcGtQziMDjDP5JZZNv1pnEmx-InNHFo,3090
160
161
  letta/orm/provider.py,sha256=KxIyUijtFapxXsgD86tWCRt1sG0TIETEyqlHEUWB7Fg,1312
162
+ letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
161
163
  letta/orm/sandbox_config.py,sha256=DyOy_1_zCMlp13elCqPcuuA6OwUove6mrjhcpROTg50,4150
162
164
  letta/orm/source.py,sha256=rtehzez80rRrJigXeRBgTlfTZEUy6cVqDizWEN2tvuY,2224
163
165
  letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
164
166
  letta/orm/sqlalchemy_base.py,sha256=pwf721jhi21E-WGMFKtOpEIbeMWU1c73sYcnVI_aOqo,42017
165
167
  letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
166
- letta/orm/step.py,sha256=fjm7fLtYLCtFM6Mj6e2boP6P7dHSFG24Nem85VfVqHg,3216
168
+ letta/orm/step.py,sha256=ZIMxDba_5Ca6aUH0GFr35qcVA86PMCzCIfCwd-HD3Do,3354
167
169
  letta/orm/tool.py,sha256=ft3BDA7Pt-zsXLyPvS_Z_Ibis6H6vY20F7Li7p6nPu8,2652
168
170
  letta/orm/tools_agents.py,sha256=r6t-V21w2_mG8n38zuUb5jOi_3hRxsjgezsLA4sg0m4,626
169
171
  letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
@@ -230,13 +232,14 @@ letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNo
230
232
  letta/schemas/openai/openai.py,sha256=Hilo5BiLAGabzxCwnwfzK5QrWqwYD8epaEKFa4Pwndk,7970
231
233
  letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
232
234
  letta/schemas/passage.py,sha256=RG0vkaewEu4a_NAZM-FVyMammHjqpPP0RDYAdu27g6A,3723
233
- letta/schemas/providers.py,sha256=8lso7jhcnnqyzYspp1C3NZSqqJ9YF51qGsRKoetWJYQ,56895
235
+ letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
236
+ letta/schemas/providers.py,sha256=EfCT6NN41EP1IJwkqauHy2rD2_RyxWeE0HJMmWdPkkE,63037
234
237
  letta/schemas/response_format.py,sha256=pXNsjbtpA3Tf8HsDyIa40CSmoUbVR_7n2WOfQaX4aFs,2204
235
238
  letta/schemas/run.py,sha256=SRqPRziINIiPunjOhE_NlbnQYgxTvqmbauni_yfBQRA,2085
236
239
  letta/schemas/sandbox_config.py,sha256=Qfkzw422HCQUsE3GKry94oecQGziAzGXIyd6ke8W06M,5985
237
240
  letta/schemas/source.py,sha256=ZDeTjkNp1rKamG7xZzoUHeCptjpW9WNLzAcJ9QQRxlM,3444
238
- letta/schemas/step.py,sha256=WkcVnruUUOWLKwiWPn2Gfal4EQZPNLqlsd9859xhgsw,2224
239
- letta/schemas/tool.py,sha256=k8dmXfYA_gcipAjBAwBYWsmhlkGvPnOBqrPG336QpBM,13111
241
+ letta/schemas/step.py,sha256=uw-n55jSc3O_NaqX7p4Xp73NxndAn1Kgs4nkHi9ALDw,2339
242
+ letta/schemas/tool.py,sha256=VtDmsOg1WP-ATfj92fXvOHb8oTgTM-ozPVrpmHh2MuQ,13416
240
243
  letta/schemas/tool_execution_result.py,sha256=O65Z-gwNuB2hrX0Vklw_A9uURu0sz67gxTDr1tNwvJM,804
241
244
  letta/schemas/tool_rule.py,sha256=Il0BLY-CHRuTNeH9CayZTHpg0N_Ii8viYV2isZ_HrPU,6327
242
245
  letta/schemas/usage.py,sha256=9SSTH5kUliwiVF14b-yKbDcmxQBOLg4YH5xhXDbW9UU,1281
@@ -253,7 +256,7 @@ letta/serialize_schemas/marshmallow_tool.py,sha256=jwU69BDCakPlYPSk-ta21kuvsURKO
253
256
  letta/serialize_schemas/pydantic_agent_schema.py,sha256=NKq70niUVMI3_lxMKc3u3rOBUhm77bIFaPRj9aidMUQ,3006
254
257
  letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
258
  letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
256
- letta/server/db.py,sha256=atTS-QOBrY7LNbap9cUdM7LCDnK6KWxZyO6f0757-t4,9380
259
+ letta/server/db.py,sha256=OMXevH9MRPn9rqKU6POai-i3oLqRGUwPlhOo_kzCpPM,9879
257
260
  letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
258
261
  letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
262
  letta/server/rest_api/app.py,sha256=8Y5R_t_s4IAG7wRfdbmCeF5YT9pfGG4h6_kpUAaUwoQ,14771
@@ -266,29 +269,31 @@ letta/server/rest_api/json_parser.py,sha256=IKG2xFAz_wkLfd3Z-18SKykSzCtUDjdYgTKS
266
269
  letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
270
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
271
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
269
- letta/server/rest_api/routers/v1/__init__.py,sha256=_skmAcDOK9ovHKfywRaBgigo3IvPmnUSQSR2hGVCOhY,1664
270
- letta/server/rest_api/routers/v1/agents.py,sha256=EM0bpwJ2Dt3cGIux89N1v5PKxJbooFkLO0IbSmR7FOI,35716
271
- letta/server/rest_api/routers/v1/blocks.py,sha256=Q0ZWhKiW1lOZmLLXy0IrJpTQ-Hp03psOWdfjJR2uoxI,4645
272
+ letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
273
+ letta/server/rest_api/routers/v1/agents.py,sha256=lEu6ApiFH2p8e1YMUneaUS0G_P1UZ1gFtLi5xy4Rm6Y,37176
274
+ letta/server/rest_api/routers/v1/blocks.py,sha256=am8VeLcpWtZ1V6c9hl0q141uogijGWPbI3rlEoVzBPA,4677
272
275
  letta/server/rest_api/routers/v1/embeddings.py,sha256=P-Dvt_HNKoTyjRwkScAMg1hlB3cNxMeAQwV7bSatsKI,957
273
276
  letta/server/rest_api/routers/v1/groups.py,sha256=DT2tc4wwiq_gzmxefltEIrFSoqOntzhvmgqQy23varA,10738
274
277
  letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
275
- letta/server/rest_api/routers/v1/identities.py,sha256=fvp-0cwvb4iX1fUGPkL--9nq8YD3tIE47kYRxUgOlp4,7462
276
- letta/server/rest_api/routers/v1/jobs.py,sha256=4oeJfI2odNGubU_g7WSORJhn_usFsbRaD-qm86rve1E,2746
277
- letta/server/rest_api/routers/v1/llms.py,sha256=PZWNHq7QuKj71HzOIzNwLWgATqDQo54K26zzg9dLom0,1683
278
+ letta/server/rest_api/routers/v1/identities.py,sha256=bPPjQd_UPMJ-IbBbaVmgwNFfbnBwF8zPGA-j3x2XeeU,7676
279
+ letta/server/rest_api/routers/v1/jobs.py,sha256=kQzn6CrH7y2lP0LR4x7e3FsERxJ_ZstlFXqE3kek1hQ,2778
280
+ letta/server/rest_api/routers/v1/llms.py,sha256=Bhs2pjXFtTXMG44X8vXUWJed3KwWjZF0dMmnX7P1eXg,1892
278
281
  letta/server/rest_api/routers/v1/messages.py,sha256=JvszNvPIe9mArExNInmJkcX33WInMbS5Vlds1eLqkjc,7850
279
282
  letta/server/rest_api/routers/v1/organizations.py,sha256=r7rj-cA3shgAgM0b2JCMqjYsDIFv3ruZjU7SYbPGGqg,2831
280
283
  letta/server/rest_api/routers/v1/providers.py,sha256=qp6XT20tcZac64XDGF2QUyLhselnShrRcTDQBHExEbQ,4322
281
284
  letta/server/rest_api/routers/v1/runs.py,sha256=rq-k5kYN0On7VBNSzoPJxZcBf13hZFaDx0IUJJ04_K8,8875
282
- letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=9hqnnMwJ3wCwO-Bezu3Xl8i3TDSIuInw3gSeHaKUXfE,8526
285
+ letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=r8w-XC5u3ve0-3oaC6IRiUSM0EMso9xYXqviulKIT_4,8590
283
286
  letta/server/rest_api/routers/v1/sources.py,sha256=cNDIckY1zqKUeB9xKg6jIoi-cePzyIew-OHMGeQvyqE,11222
284
287
  letta/server/rest_api/routers/v1/steps.py,sha256=ra7ttm7HDs3N52M6s80XdpwiSMTLyf776_SmEILWDvo,3276
285
- letta/server/rest_api/routers/v1/tags.py,sha256=coydgvL6-9cuG2Hy5Ea7QY3inhTHlsf69w0tcZenBus,880
286
- letta/server/rest_api/routers/v1/tools.py,sha256=IyGvDTRDY6UyadcmszqsprtwXKkAnA1C4fJyWCtRlfs,19588
288
+ letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
289
+ letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
290
+ letta/server/rest_api/routers/v1/tools.py,sha256=wkIZg7PYa3aVxhyOuGDJbpfzPTB8vwLmh0QKLqYyIpM,19652
287
291
  letta/server/rest_api/routers/v1/users.py,sha256=a0J3Ad8kWHxi3vUJB5r9K2GmiplSABZXwhA83o8HbpI,2367
288
292
  letta/server/rest_api/routers/v1/voice.py,sha256=NZa7ksEqXTWSqh7CqmbVMClO7wOmrqlRnSqFi6Qh-WM,1949
289
293
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
290
- letta/server/rest_api/utils.py,sha256=n5ZwtCtF3Oa4b9NFQ8l9f13v4eOI4mWdWNQqFp5d3A0,16516
291
- letta/server/server.py,sha256=ZsQpzD-ouqw0LZYwGjPCJNFjOqOWWCkRVQUeZeVpZis,89868
294
+ letta/server/rest_api/streaming_response.py,sha256=yYTuZHfuZ-DYYbA1Ta6axkBn5MvC6OHuVRHSiBqRNUk,3939
295
+ letta/server/rest_api/utils.py,sha256=UVWlJI026oBB3uWxjhnA9DRlUiYtCoqBzmekI2JhvOQ,16612
296
+ letta/server/server.py,sha256=x_B_V00ktUIxXuNhKnhrEwoRgmvFnZYcyk6IFMCwQuM,94962
292
297
  letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
293
298
  letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
294
299
  letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
@@ -302,49 +307,51 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
302
307
  letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
303
308
  letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
304
309
  letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- letta/services/agent_manager.py,sha256=bcQRrWjECZCoIUD67LLh3XO7AY-9tRDfOY5d8OgmVNg,91590
306
- letta/services/block_manager.py,sha256=VxiDoshWbM27HQH9AqGQc4x1tsgjz8Csm-TBYiLy3IE,20779
310
+ letta/services/agent_manager.py,sha256=UmoDaGw6Z4JTP-4CxRQVx7cDPBuTraTLh4soO4DKtrI,101412
311
+ letta/services/block_manager.py,sha256=78OuEBvNqjZWrtRoE_u_eQuS8aTD9af_eBU0kbwXXz8,21290
307
312
  letta/services/group_manager.py,sha256=X5Z-0j9h95H5p3kKo8m5FZbl0HFN1slxFvcph7fTdvc,15833
308
313
  letta/services/helpers/agent_manager_helper.py,sha256=q7GfVgKI-e8k0BZS-V_PuUCjK-PYciZDoig_sYHi_Go,21334
314
+ letta/services/helpers/noop_helper.py,sha256=OZ6wZLsdNEAg9Q2t5oFTOMK6jp-YUMBPdoyiR8M3T1c,272
309
315
  letta/services/helpers/tool_execution_helper.py,sha256=JdH6VTWFrXfwPWsWNSZFKuRFhhXp8qiDYWjbPc8PLLI,7649
310
- letta/services/identity_manager.py,sha256=qe_MgemGVmxEs5MPX8FLBph1e1Pj5DDGU0RUsh4feS8,9618
311
- letta/services/job_manager.py,sha256=jkp1_-0RcUN6AzI3EmRTywaJNa0TFASiJ4lsu6wYOlg,21175
316
+ letta/services/identity_manager.py,sha256=BS4BWAfu69b2bmcfoZGkQhkjYpV5CfoGP9kuHm-5ZoM,10148
317
+ letta/services/job_manager.py,sha256=KUFBDzhM0SQW6X8UVdXANdeez4jpX1L8y8x6oP5UbfM,22167
312
318
  letta/services/llm_batch_manager.py,sha256=txk2hbBXbhs7M0VdElSiG-3Vbam1UY1cCg4IBJObDz4,19370
313
319
  letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
320
  letta/services/mcp/base_client.py,sha256=YoRb9eKKTGaLxaMVtuH5UcC74iXyWlcyYbC5xOeGr4k,2571
315
321
  letta/services/mcp/sse_client.py,sha256=Vj0AgaadgMnpFQOWkSoPfeOI00ZvURMf3TIU7fv_DN8,1012
316
322
  letta/services/mcp/stdio_client.py,sha256=wdPzTqSRkibjt9pXhwi0Nul_z_cTAPim-OHjLc__yBE,925
317
323
  letta/services/mcp/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
318
- letta/services/message_manager.py,sha256=JENrzGpPIGX9STMnqktmbGX9C8ttI9MthQWlea3JphM,21274
324
+ letta/services/message_manager.py,sha256=eSQCEje76PVa5rwvinTsh7Z37VhmbjXh_5CwSYTpyvs,26783
319
325
  letta/services/organization_manager.py,sha256=Z87kY22pWm6yOmPJCsMUVQmu0kaxyK8WGKkyYaRM2sU,3760
320
326
  letta/services/passage_manager.py,sha256=6-mVw6C1TWFJuaoE1CE8xaaiCPJLptfTb3k9XbhxGPQ,10419
321
327
  letta/services/per_agent_lock_manager.py,sha256=porM0cKKANQ1FvcGXOO_qM7ARk5Fgi1HVEAhXsAg9-4,546
322
328
  letta/services/provider_manager.py,sha256=l5gfCLMQ5imSoS1xT-6uFqNWEHBqXEriy6VRNkuJZ80,4758
323
- letta/services/sandbox_config_manager.py,sha256=tN6TYyOSNOZ3daX2QdbJcyGtUvczQc3-YZ-7dn5yLyE,13300
329
+ letta/services/sandbox_config_manager.py,sha256=5lNMhcJhfFrhla8otRZ2JDMCPICafcfwqATPEcp2Jjg,14740
324
330
  letta/services/source_manager.py,sha256=wrIMp83Q2wVxC3U0Z5y6wiJe_vkOoCZs0zJuF-Majvw,7900
325
- letta/services/step_manager.py,sha256=8uMg991nxatKs0xyUfNZJqnMmgu3s7d5WgpqSujjymM,5266
331
+ letta/services/step_manager.py,sha256=ut01OeEJTzILRMWPDWd87rKpRZNFqXgumIFqotPX56M,10390
326
332
  letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
333
  letta/services/summarizer/enums.py,sha256=szzPX2OBRRJEZsBTGYQThrNz02ELFqhuLwvOR7ozi7A,208
328
334
  letta/services/summarizer/summarizer.py,sha256=LVFZ8NLtS1lz4Pdr7M_cixFYBYsllt2vXNzTOT3Wkxc,7658
335
+ letta/services/telemetry_manager.py,sha256=62CFBYjz_U0FNTAFhJ_m1ZNwz1tCc8BzSoY3y7TLSDk,2698
329
336
  letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
- letta/services/tool_executor/tool_execution_manager.py,sha256=NLkHLxxMYp0XKgu8j6YgqBVkhlG1cOioNRTd4muKJyU,4537
331
- letta/services/tool_executor/tool_execution_sandbox.py,sha256=9gcERJ15Y6u_6AGAVH3KGJP-85fpr2HLCV8SatQAG0w,24891
332
- letta/services/tool_executor/tool_executor.py,sha256=XZTjxLgj6hpXDoGALUGoe2SlEyX9Y6MQBJDt_4PQTHc,28098
333
- letta/services/tool_manager.py,sha256=SrCFAeg-_yrnhmAlF45BQl69CJUxUh-yWpGk5A_jCjA,12340
337
+ letta/services/tool_executor/tool_execution_manager.py,sha256=4LEuULGkk0OACbtqcDT7qZ8J11FZyPFkilJCEUxp9vQ,6222
338
+ letta/services/tool_executor/tool_execution_sandbox.py,sha256=U67qpZN_phLbAU-y1g_a5jb3pRnHgbcO9hl8HElzNKQ,26410
339
+ letta/services/tool_executor/tool_executor.py,sha256=NcmDpDrJE78RtjD-qlOVC_VmeZpIigK5BZxYrKGye5k,36950
340
+ letta/services/tool_manager.py,sha256=JHvaHAtwlkPQi5VFONc2UDsn1s3rOKL8Z-Ia668aSbo,20036
334
341
  letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
342
  letta/services/tool_sandbox/base.py,sha256=pUnPFkEg9I5ktMuT4AOOxbTnTmZTGcTA2phLe1H1EdY,8306
336
- letta/services/tool_sandbox/e2b_sandbox.py,sha256=umsXfolzM_j67izswECDdVfnlcm03wLpMoZtS6SZ0sc,6147
343
+ letta/services/tool_sandbox/e2b_sandbox.py,sha256=Leg33ECkMjXkmOEdCtr9NgSP9iHWsesWiLmuHw_Okg4,8160
337
344
  letta/services/tool_sandbox/local_sandbox.py,sha256=ksbraC-zcMWt3vS7kSi98uWI9L73I0h73rMayhuTWsw,10474
338
345
  letta/services/user_manager.py,sha256=fDtPq8q2_LrIPHyn4zyx0orrCqKlpZRoqPU_IIaiBBc,7549
339
- letta/settings.py,sha256=h0d3tN3W3dEri5xlBthGwDUQBwaz_oZopy2vwRiILXA,8770
346
+ letta/settings.py,sha256=HQq5JAJiPRB1jplsOY5-VKlX0zuJglFnykiZ94vGwdU,9049
340
347
  letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
341
348
  letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
342
349
  letta/system.py,sha256=mKxmvvekuP8mdgsebRINGBoFbUdJhxLJ260crPBNVyk,8386
343
- letta/tracing.py,sha256=j9uyBbx02erQZ307XmZmZSNyzQt-d7ZDB7vhFhjDlsU,8448
350
+ letta/tracing.py,sha256=YMb9KgoBVz7nwCPwnErk2EJEKMiQ_ohctW1nOwhHd1Y,8458
344
351
  letta/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
352
  letta/utils.py,sha256=W8J1FfhRADFqoyx3J8-Z1_aWyG433PBoEh_b5wdOZIg,32262
346
- letta_nightly-0.7.20.dev20250521104258.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
347
- letta_nightly-0.7.20.dev20250521104258.dist-info/METADATA,sha256=qyhLFEnXdJhFVsY2wxG_rq3Vnr1AUoxrNWi0qs7Ieeo,22274
348
- letta_nightly-0.7.20.dev20250521104258.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
349
- letta_nightly-0.7.20.dev20250521104258.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
350
- letta_nightly-0.7.20.dev20250521104258.dist-info/RECORD,,
353
+ letta_nightly-0.7.21.dev20250521233415.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
354
+ letta_nightly-0.7.21.dev20250521233415.dist-info/METADATA,sha256=mXWQURzbwCTBvHeHA4higCLK1kyXcVFcinb4CiNzbyk,22321
355
+ letta_nightly-0.7.21.dev20250521233415.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
356
+ letta_nightly-0.7.21.dev20250521233415.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
357
+ letta_nightly-0.7.21.dev20250521233415.dist-info/RECORD,,