letta-nightly 0.11.3.dev20250820104219__py3-none-any.whl → 0.11.4.dev20250821104215__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.
- letta/__init__.py +1 -1
- letta/agents/helpers.py +4 -0
- letta/agents/letta_agent.py +142 -5
- letta/constants.py +10 -7
- letta/data_sources/connectors.py +70 -53
- letta/embeddings.py +3 -240
- letta/errors.py +28 -0
- letta/functions/function_sets/base.py +4 -4
- letta/functions/functions.py +287 -32
- letta/functions/mcp_client/types.py +11 -0
- letta/functions/schema_validator.py +187 -0
- letta/functions/typescript_parser.py +196 -0
- letta/helpers/datetime_helpers.py +8 -4
- letta/helpers/tool_execution_helper.py +25 -2
- letta/llm_api/anthropic_client.py +23 -18
- letta/llm_api/azure_client.py +73 -0
- letta/llm_api/bedrock_client.py +8 -4
- letta/llm_api/google_vertex_client.py +14 -5
- letta/llm_api/llm_api_tools.py +2 -217
- letta/llm_api/llm_client.py +15 -1
- letta/llm_api/llm_client_base.py +32 -1
- letta/llm_api/openai.py +1 -0
- letta/llm_api/openai_client.py +18 -28
- letta/llm_api/together_client.py +55 -0
- letta/orm/provider.py +1 -0
- letta/orm/step_metrics.py +40 -1
- letta/otel/db_pool_monitoring.py +1 -1
- letta/schemas/agent.py +3 -4
- letta/schemas/agent_file.py +2 -0
- letta/schemas/block.py +11 -5
- letta/schemas/embedding_config.py +4 -5
- letta/schemas/enums.py +1 -1
- letta/schemas/job.py +2 -3
- letta/schemas/llm_config.py +79 -7
- letta/schemas/mcp.py +0 -24
- letta/schemas/message.py +0 -108
- letta/schemas/openai/chat_completion_request.py +1 -0
- letta/schemas/providers/__init__.py +0 -2
- letta/schemas/providers/anthropic.py +106 -8
- letta/schemas/providers/azure.py +102 -8
- letta/schemas/providers/base.py +10 -3
- letta/schemas/providers/bedrock.py +28 -16
- letta/schemas/providers/letta.py +3 -3
- letta/schemas/providers/ollama.py +2 -12
- letta/schemas/providers/openai.py +4 -4
- letta/schemas/providers/together.py +14 -2
- letta/schemas/sandbox_config.py +2 -1
- letta/schemas/tool.py +46 -22
- letta/server/rest_api/routers/v1/agents.py +179 -38
- letta/server/rest_api/routers/v1/folders.py +13 -8
- letta/server/rest_api/routers/v1/providers.py +10 -3
- letta/server/rest_api/routers/v1/sources.py +14 -8
- letta/server/rest_api/routers/v1/steps.py +17 -1
- letta/server/rest_api/routers/v1/tools.py +96 -5
- letta/server/rest_api/streaming_response.py +91 -45
- letta/server/server.py +27 -38
- letta/services/agent_manager.py +92 -20
- letta/services/agent_serialization_manager.py +11 -7
- letta/services/context_window_calculator/context_window_calculator.py +40 -2
- letta/services/helpers/agent_manager_helper.py +73 -12
- letta/services/mcp_manager.py +109 -15
- letta/services/passage_manager.py +28 -109
- letta/services/provider_manager.py +24 -0
- letta/services/step_manager.py +68 -0
- letta/services/summarizer/summarizer.py +1 -4
- letta/services/tool_executor/core_tool_executor.py +1 -1
- letta/services/tool_executor/sandbox_tool_executor.py +26 -9
- letta/services/tool_manager.py +82 -5
- letta/services/tool_sandbox/base.py +3 -11
- letta/services/tool_sandbox/modal_constants.py +17 -0
- letta/services/tool_sandbox/modal_deployment_manager.py +242 -0
- letta/services/tool_sandbox/modal_sandbox.py +218 -3
- letta/services/tool_sandbox/modal_sandbox_v2.py +429 -0
- letta/services/tool_sandbox/modal_version_manager.py +273 -0
- letta/services/tool_sandbox/safe_pickle.py +193 -0
- letta/settings.py +5 -3
- letta/templates/sandbox_code_file.py.j2 +2 -4
- letta/templates/sandbox_code_file_async.py.j2 +2 -4
- letta/utils.py +1 -1
- {letta_nightly-0.11.3.dev20250820104219.dist-info → letta_nightly-0.11.4.dev20250821104215.dist-info}/METADATA +2 -2
- {letta_nightly-0.11.3.dev20250820104219.dist-info → letta_nightly-0.11.4.dev20250821104215.dist-info}/RECORD +84 -81
- letta/llm_api/anthropic.py +0 -1206
- letta/llm_api/aws_bedrock.py +0 -104
- letta/llm_api/azure_openai.py +0 -118
- letta/llm_api/azure_openai_constants.py +0 -11
- letta/llm_api/cohere.py +0 -391
- letta/schemas/providers/cohere.py +0 -18
- {letta_nightly-0.11.3.dev20250820104219.dist-info → letta_nightly-0.11.4.dev20250821104215.dist-info}/LICENSE +0 -0
- {letta_nightly-0.11.3.dev20250820104219.dist-info → letta_nightly-0.11.4.dev20250821104215.dist-info}/WHEEL +0 -0
- {letta_nightly-0.11.3.dev20250820104219.dist-info → letta_nightly-0.11.4.dev20250821104215.dist-info}/entry_points.txt +0 -0
@@ -1,12 +1,12 @@
|
|
1
|
-
letta/__init__.py,sha256=
|
1
|
+
letta/__init__.py,sha256=MXzx_Gzr4L72pCulg9GLsbnnFTcekzFvZgZhq5jPRMs,1321
|
2
2
|
letta/agent.py,sha256=o591CrbxIepAfmVdZv7OVBCQsfAvKqv_HTd89LYPgu8,89462
|
3
3
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
letta/agents/base_agent.py,sha256=-hrG_4iNba2e68LF8nzfPKeCviBdoWZ6jODd798ryt0,7796
|
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=
|
9
|
-
letta/agents/letta_agent.py,sha256=
|
8
|
+
letta/agents/helpers.py,sha256=PLT4tG5rJIYm732qLyKB-J34Brh1yLE0l9qpcGip30w,10181
|
9
|
+
letta/agents/letta_agent.py,sha256=TLgr6GLp4ONnS0FFhjRc6MYuJqe1volPPHHM8q3Ssfw,84337
|
10
10
|
letta/agents/letta_agent_batch.py,sha256=17RpYVXpGh9dlKxdMOLMCOHWFsi6N5S9FJHxooxkJCI,27998
|
11
11
|
letta/agents/voice_agent.py,sha256=rgrayoGRS344oSNg3jD-awHzEC67hYbecPPhfkKu27k,23325
|
12
12
|
letta/agents/voice_sleeptime_agent.py,sha256=_JzCbWBOKrmo1cTaqZFTrQudpJEapwAyrXYtAHUILGo,8675
|
@@ -16,24 +16,24 @@ letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
letta/client/streaming.py,sha256=UsDS_tDTsA3HgYryIDvGGmx_dWfnfQwtmEwLi4Z89Ik,4701
|
17
17
|
letta/client/utils.py,sha256=VCGV-op5ZSmurd4yw7Vhf93XDQ0BkyBT8qsuV7EqfiU,2859
|
18
18
|
letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
|
19
|
-
letta/constants.py,sha256=
|
19
|
+
letta/constants.py,sha256=f-FtpVSbjQGG8Bf_7WhIdNEn4P4-bLMxD3JLjH_N1XM,15880
|
20
20
|
letta/data_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
-
letta/data_sources/connectors.py,sha256=
|
21
|
+
letta/data_sources/connectors.py,sha256=7GzjMNKn_xfQzOAObV2h5y3Pjja3B6Tkl4szAqDIf0s,8841
|
22
22
|
letta/data_sources/connectors_helper.py,sha256=oQpVlc-BjSz9sTZ7sp4PsJSXJbBKpZPi3Dam03CURTQ,3376
|
23
23
|
letta/data_sources/redis_client.py,sha256=Lz9hjJL9S7yd_qsvbuwqrGL3GwZe-qOc0uZm9FqNm4M,10688
|
24
|
-
letta/embeddings.py,sha256=
|
25
|
-
letta/errors.py,sha256=
|
24
|
+
letta/embeddings.py,sha256=d2o1nOVTaofBk6j-WwsE0_ugvxa1nIOcceqGuJ4w_pc,2045
|
25
|
+
letta/errors.py,sha256=tebKwqik1A8xdVC9Ue452zIiEKDEUNJiod_b2WINwF8,8692
|
26
26
|
letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
27
|
letta/functions/ast_parsers.py,sha256=0dXAN4qx3pWL_Y0aoEkaBpMKwI-kpoLEJftjW3v2I4E,5031
|
28
28
|
letta/functions/async_composio_toolset.py,sha256=IuhZTVghPDXRsehOOZsEEiJGYyjWjDTQc2xrjTg0yBo,4786
|
29
29
|
letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2i8XP_8,3593
|
30
|
-
letta/functions/function_sets/base.py,sha256=
|
30
|
+
letta/functions/function_sets/base.py,sha256=6ZHHbZDuRybZnhWztG59I4TtumqH0-Zy5vaT2f42i_I,16110
|
31
31
|
letta/functions/function_sets/builtin.py,sha256=UR54nwIXZl4NkF9c_IMpTxf2e9yPO_LGZ-joIeeI9TI,2009
|
32
32
|
letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
|
33
33
|
letta/functions/function_sets/files.py,sha256=I2TAOVo_6-G-pbjFve8ocF2zn3b0aJ_ismK4ZPop3v8,4450
|
34
34
|
letta/functions/function_sets/multi_agent.py,sha256=Vze76mj0YGZQYmWEzknnf3vEf-O7gcCUPQead7HH3FQ,7045
|
35
35
|
letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
|
36
|
-
letta/functions/functions.py,sha256=
|
36
|
+
letta/functions/functions.py,sha256=bSYEcUPzbKXx6IztZkE1o7O7zuhFgbLzKSG5SuP8JVk,16009
|
37
37
|
letta/functions/helpers.py,sha256=-NeFjYNhKm_qAwZaxZsVr65Pi3PNvcNKwO1IykKIgtc,25155
|
38
38
|
letta/functions/interface.py,sha256=pN1gpDnLISW44gRcic1IX6I6pDwOT9UbkST_4ICuMvQ,2936
|
39
39
|
letta/functions/mcp_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -41,10 +41,12 @@ letta/functions/mcp_client/base_client.py,sha256=yfpJyPpKxbA9Q_LfLDNOIL1EqwHi21L
|
|
41
41
|
letta/functions/mcp_client/exceptions.py,sha256=IE5SLCuMK7hK9V1QsJafPo6u0S0OwqRvMx2NcsE3g3c,313
|
42
42
|
letta/functions/mcp_client/sse_client.py,sha256=QDC29Re2mdGji77YrUk7JXfTVJeS6039oeeh3y6A_7g,2292
|
43
43
|
letta/functions/mcp_client/stdio_client.py,sha256=-SymmkO_KNFZUP5e5mhcidpyyXBv6Xh72yUiMnv_bFw,4709
|
44
|
-
letta/functions/mcp_client/types.py,sha256=
|
44
|
+
letta/functions/mcp_client/types.py,sha256=45pajlUuazzbEqJl67ihuahscPAvpgvYrGf50DUwiww,11014
|
45
45
|
letta/functions/prompts.py,sha256=jNl83xjNpoSs8KzGtuc6jzN8jp_T4BC_5f4FMJ88_K0,1145
|
46
46
|
letta/functions/schema_generator.py,sha256=PMk3xO478wLqZiP7ZYLcrsBeQAF38RJ6dZhN7gwAQYo,28215
|
47
|
+
letta/functions/schema_validator.py,sha256=KsBlpwCBz2NVfYtQoRmdnvSWhG5iAkpaeEZXvTZSPeI,7364
|
47
48
|
letta/functions/types.py,sha256=XzUVHbS72bdKhviFcSZZXq_f9IFR5eOD-cVIcwqANaY,730
|
49
|
+
letta/functions/typescript_parser.py,sha256=N-eSaUm8dCc53NwcK8KJOBqGnqSROl3JfTfHLovCut8,6571
|
48
50
|
letta/groups/dynamic_multi_agent.py,sha256=-IugnQJTxe4FOTKd0UX3lbSKVcD-S0noZDjwoVuWyX8,12326
|
49
51
|
letta/groups/helpers.py,sha256=yAr05Keoz_7vdzPG6A9x5CsWrJjtvF8A0GSQWDe29UM,4660
|
50
52
|
letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
|
@@ -54,14 +56,14 @@ letta/groups/supervisor_multi_agent.py,sha256=IWe5sNg6JoTaXwsN_8T9aiGHnFpJc7UVnl
|
|
54
56
|
letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
|
55
57
|
letta/helpers/composio_helpers.py,sha256=X3RaJSqa8z-oXmHJjJjAs1fJroZ5A8yu4-Yg2oDiTdA,1712
|
56
58
|
letta/helpers/converters.py,sha256=cXqWUdsiv00ymBN7feol3QbDzwwOe0GtnztCHepVDXo,16241
|
57
|
-
letta/helpers/datetime_helpers.py,sha256=
|
59
|
+
letta/helpers/datetime_helpers.py,sha256=jek8oOhWb_URciQO7rKY4wRI1jbMxTL_sVkzpXI0C5U,4472
|
58
60
|
letta/helpers/decorators.py,sha256=KbYLW0RdTnBaXlXFq-Dw3G-PNTGKywfFLMcEOYHLcPA,5889
|
59
61
|
letta/helpers/json_helpers.py,sha256=aaNQey5rPv8Loyg1Bv36RJL5GL5ttZve3Mjsc8QkYSI,730
|
60
62
|
letta/helpers/message_helper.py,sha256=Xzf_VCMAXT0Ys8LVUh1ySVtgJwabSQYksOdPr7P4EJU,3549
|
61
63
|
letta/helpers/pinecone_utils.py,sha256=9dKkHdNif6JNDYk9KPiil6gvbKr0Q69hpxcCg9YJyhE,14723
|
62
64
|
letta/helpers/reasoning_helper.py,sha256=8P5AJo-UFsYhZC3yNx4N-pIkVUsjfz7ZPmydsVKPLN4,1931
|
63
65
|
letta/helpers/singleton.py,sha256=Y4dG_ZBCcrogvl9iZ69bSLq-QltrdP8wHqKkhef8OBI,370
|
64
|
-
letta/helpers/tool_execution_helper.py,sha256=
|
66
|
+
letta/helpers/tool_execution_helper.py,sha256=JFNyk20b69wExD7bRDfJCRPgoG30k56a7HF6cgLGiMQ,5151
|
65
67
|
letta/helpers/tool_rule_solver.py,sha256=kNv0jKvTabWYq3hbqwsvBTr_j31ZpnVnZE0yvDdid5o,9003
|
66
68
|
letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
69
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
@@ -78,27 +80,24 @@ letta/jobs/llm_batch_job_polling.py,sha256=HUCTa1lTOiLAB_8m95RUfeNJa4lxlF8paGdCV
|
|
78
80
|
letta/jobs/scheduler.py,sha256=Ub5VTCA8P5C9Y-0mPK2YIPJSEzKbSd2l5Sp0sOWctD8,8697
|
79
81
|
letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
|
80
82
|
letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
|
-
letta/llm_api/
|
82
|
-
letta/llm_api/
|
83
|
-
letta/llm_api/
|
84
|
-
letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
|
85
|
-
letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
|
86
|
-
letta/llm_api/bedrock_client.py,sha256=_YKrgAJiFOLU0T7dl5J6k4XtLanOkguD075wzLfPgmI,3116
|
87
|
-
letta/llm_api/cohere.py,sha256=uoiRdaymqxEu0-rUVKVK5geGfzV0n_fVcZTYsG7kifg,14848
|
83
|
+
letta/llm_api/anthropic_client.py,sha256=3aEh9YzRqOxG0V7NDUEI-tHmYDUnVFMfPd5nB4T4jvU,29519
|
84
|
+
letta/llm_api/azure_client.py,sha256=xfSKO1_zj4KkqupirpGZTBWPagKZ0wZH7GcCZpFnRlI,3747
|
85
|
+
letta/llm_api/bedrock_client.py,sha256=jTMcNBQh2ze1GNCmI096SYOCjfIrq1lyXFvO3zsU6ME,3436
|
88
86
|
letta/llm_api/deepseek.py,sha256=pLd2WMKjks1QulnSqy7V5JDk67TTN9dIRaYl5kWamV8,12455
|
89
87
|
letta/llm_api/google_ai_client.py,sha256=JweTUHZXvK6kcZBGXA7XEU53KP4vM7_zdD7AorCtsdI,8166
|
90
88
|
letta/llm_api/google_constants.py,sha256=eOjOv-FImyJ4b4QGIaod-mEROMtrBFz0yhuYHqOEkwY,797
|
91
|
-
letta/llm_api/google_vertex_client.py,sha256=
|
89
|
+
letta/llm_api/google_vertex_client.py,sha256=zovZ1nrJ-OIsU6A2zDENsdz9lQciO20aSDPU_pRPza4,25141
|
92
90
|
letta/llm_api/helpers.py,sha256=MmNAvqfVyI5IpVRbx4p-TkzXTaz-EFkY6oDf62D2Syo,17578
|
93
|
-
letta/llm_api/llm_api_tools.py,sha256=
|
94
|
-
letta/llm_api/llm_client.py,sha256=
|
95
|
-
letta/llm_api/llm_client_base.py,sha256=
|
91
|
+
letta/llm_api/llm_api_tools.py,sha256=EHUNo5Ki5WTmGUlgBFJtGcsifesiR3UZiGY45EX-75A,19979
|
92
|
+
letta/llm_api/llm_client.py,sha256=1LvLXWjSoX3oumLFnhVNqLyo8t4NZJNLvVSOw5r5GKc,2905
|
93
|
+
letta/llm_api/llm_client_base.py,sha256=G_z1_dcH-t13nD3JeED-60ZLY21k28GfhLyUwheOZqg,9912
|
96
94
|
letta/llm_api/mistral.py,sha256=lNVYLNdULpqjMLX-5Cnw61dXVdh9T5H3Zg4UPhx9zQU,663
|
97
|
-
letta/llm_api/openai.py,sha256=
|
98
|
-
letta/llm_api/openai_client.py,sha256=
|
95
|
+
letta/llm_api/openai.py,sha256=5YuGmzmFaErLUrWzag0eYVCh4iO0GYaUKRfAbd1A1Fo,27482
|
96
|
+
letta/llm_api/openai_client.py,sha256=uOh5k7OFSTaIjI6Y6aMdi3-LekC48LGtfwIXdD2lwjc,20188
|
99
97
|
letta/llm_api/sample_response_jsons/aws_bedrock.json,sha256=RS3VqyxPB9hQQCPm42hWoga0bisKv_0e8ZF-c3Ag1FA,930
|
100
98
|
letta/llm_api/sample_response_jsons/lmstudio_embedding_list.json,sha256=qHLtRuO1u7jFcaO0xaIMpRgCe74sSrya67IVPqS66fg,344
|
101
99
|
letta/llm_api/sample_response_jsons/lmstudio_model_list.json,sha256=hrW4RifD5nty3Wx22NZ7GJB74HW4C75fIEaKrVFhwYM,448
|
100
|
+
letta/llm_api/together_client.py,sha256=dRC6WsNPh_wvDV6KTvhvrgWIVHVA_oNJo6yD18rT20Q,2285
|
102
101
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
103
102
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
103
|
letta/local_llm/chat_completion_proxy.py,sha256=6tFdoB3aIqHO345kPp_RmbrUpy0gt8cbzTODWlMsUyI,13858
|
@@ -171,7 +170,7 @@ letta/orm/mixins.py,sha256=pDfTbvwXAIfO0m2p4H3IMZbkAgDnpbZsd_6Uy1c_ln8,2037
|
|
171
170
|
letta/orm/organization.py,sha256=h3iTcPlhhodYwh2HgYqEYLEKSEwKgxBsSu71lJdvjO0,3874
|
172
171
|
letta/orm/passage.py,sha256=PtVY_EM1n5kWX6mw5di3ZN3YlI1jx--q1oaWXnwlo60,3944
|
173
172
|
letta/orm/prompt.py,sha256=NpFPTm3jD8Aewxhlnq8s4eIzANJ3bAEtbq6UmFqyc3U,489
|
174
|
-
letta/orm/provider.py,sha256=
|
173
|
+
letta/orm/provider.py,sha256=DYh-rvK0Bwl540hS902zK02mTiK5YJNmxD2GgBhgbpc,1656
|
175
174
|
letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
|
176
175
|
letta/orm/sandbox_config.py,sha256=8_9OLOT5BaOnLg5VVhXQvGJgGMJAXPkg8Q9MGVw1uqY,4233
|
177
176
|
letta/orm/source.py,sha256=lXuV7kq3xa7YsLQmrGsD3dB7Tp6B3CiCE6YcvJgmZSE,1415
|
@@ -179,13 +178,13 @@ letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,4
|
|
179
178
|
letta/orm/sqlalchemy_base.py,sha256=mw_leKRvSskRswfiUTYP3Jk9Q7Io9rQJWyVEUGWyTaw,44900
|
180
179
|
letta/orm/sqlite_functions.py,sha256=tbwePL5XciJIttoehyt1H17zdUXWAdjFqH0t-XaFJfk,7256
|
181
180
|
letta/orm/step.py,sha256=p5VZacTCLKtVWPndFE0aTtv_xaRvB9i6_TVu7MejH14,4565
|
182
|
-
letta/orm/step_metrics.py,sha256=
|
181
|
+
letta/orm/step_metrics.py,sha256=Xyd1Y0KMgKtdBzglQ5i77bQgn7xISk6Vv3L5SUG9Ank,4025
|
183
182
|
letta/orm/tool.py,sha256=VEHoZI5hB5u8g1xgvNF0Xm6iC85m5VnME0Bxg1VsgYw,2937
|
184
183
|
letta/orm/tools_agents.py,sha256=r6t-V21w2_mG8n38zuUb5jOi_3hRxsjgezsLA4sg0m4,626
|
185
184
|
letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
|
186
185
|
letta/otel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
186
|
letta/otel/context.py,sha256=GUTxFpWMdCmib1Qy80TpAs0Qb5fNH_m5sCYZ1LN3HmM,789
|
188
|
-
letta/otel/db_pool_monitoring.py,sha256=
|
187
|
+
letta/otel/db_pool_monitoring.py,sha256=hEpmdGFpFrRQMQi_4EmYZXeW_zIdgLN_BEcBUmAxNes,13793
|
189
188
|
letta/otel/events.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
189
|
letta/otel/metric_registry.py,sha256=TdRBJrwDuyZV2Uretnq0lYIoYKA2JUqWkENGqLhOCBc,9344
|
191
190
|
letta/otel/metrics.py,sha256=GlIt8XLkP-igTXptah8UBonpHF7nEtSqTONSkAEERAs,4740
|
@@ -238,20 +237,20 @@ letta/prompts/system/voice_chat.txt,sha256=Q_vd2Q08z6qTIVeMML0z9706NG8aAq-scxvi-
|
|
238
237
|
letta/prompts/system/voice_sleeptime.txt,sha256=LPh-XjAthvsdEkXoZ4NTzTUuMbMsMkoDl9ofCUJC7Us,3696
|
239
238
|
letta/prompts/system/workflow.txt,sha256=pLOaUDsNFAzLs4xb9JgGtd1w-lrq0Q1E7SpFBttXYCI,834
|
240
239
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
241
|
-
letta/schemas/agent.py,sha256=
|
242
|
-
letta/schemas/agent_file.py,sha256=
|
240
|
+
letta/schemas/agent.py,sha256=bnz5ypynXzo765sJQqrni6SYLD7lySruBKYJaJu13g4,28977
|
241
|
+
letta/schemas/agent_file.py,sha256=xBFoHfV845fCx32DsFhj1ZFeZM8WwIPLQ8ApmgJ3Cto,13890
|
243
242
|
letta/schemas/archive.py,sha256=4jGat0hYHV6HhNgnOhixzEOaeUrnlxDGdouZXCCGn_g,1661
|
244
|
-
letta/schemas/block.py,sha256=
|
245
|
-
letta/schemas/embedding_config.py,sha256=
|
243
|
+
letta/schemas/block.py,sha256=mPN0Zx0r_0lscLpZWQFWgoXahjMkjK-vTnQxBdRYCoc,6536
|
244
|
+
letta/schemas/embedding_config.py,sha256=MrhBjL4oaxtXHgcHofWOZsOB9VXyVA8Qkm5NGygIX9U,3741
|
246
245
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
247
|
-
letta/schemas/enums.py,sha256=
|
246
|
+
letta/schemas/enums.py,sha256=HZyA3lrnTu2wtzwJAigoJcYT9RpTbl6JN2uzrRVfKKY,4304
|
248
247
|
letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
|
249
248
|
letta/schemas/file.py,sha256=kjv_xEuuo8Z5i7dOzugIdlAK_k2xHHLhugDgBq0-8Os,4763
|
250
249
|
letta/schemas/folder.py,sha256=OpTj9idfGx6CEKDySeDEu3ZNDYjl8jJ02CH96RWPAVk,3309
|
251
250
|
letta/schemas/group.py,sha256=VkKoRgakswY_DA4WrClyPGQZ5VONeDrbV7oK5ICyaOg,7825
|
252
251
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
253
252
|
letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
|
254
|
-
letta/schemas/job.py,sha256=
|
253
|
+
letta/schemas/job.py,sha256=58i9f_mp_4tWnPBA7BoRopuFE3DDrr7rUfOz2GGFar8,4346
|
255
254
|
letta/schemas/letta_base.py,sha256=LhVKaSAUr7HzrvuEJE_1ZKJMe-nJKoYR-ZgLe1IUTpY,4020
|
256
255
|
letta/schemas/letta_message.py,sha256=2FC968X8sZEgX5rbBpRjMzrcafR_aRs_Nl6mowHjXYI,15647
|
257
256
|
letta/schemas/letta_message_content.py,sha256=XsokQDvKCf_PcZKH6G5-B4NELaHVtrhDVjbOMc_osLs,8983
|
@@ -260,13 +259,13 @@ letta/schemas/letta_request.py,sha256=GF7tSVjoAXukl1SXN2FBi8ZMaWOVRvuJuXPgEwbV7H
|
|
260
259
|
letta/schemas/letta_response.py,sha256=e6FcAhRX3heB0FoWAAozB3RJboMwi_JpelTdc5JupVA,8188
|
261
260
|
letta/schemas/letta_stop_reason.py,sha256=4t39UKMMsLuNM-9a0BG7Mi-zZ7YhYLFSEpTWc8_OyrQ,2035
|
262
261
|
letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQI,3136
|
263
|
-
letta/schemas/llm_config.py,sha256=
|
262
|
+
letta/schemas/llm_config.py,sha256=Y-kCBjue0Kg_XbpWAfs4QvMq8blYQC8MggrzEziCqQE,12710
|
264
263
|
letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
|
265
|
-
letta/schemas/mcp.py,sha256=
|
264
|
+
letta/schemas/mcp.py,sha256=ko-zVVgzhMxcY76OjHhzo91iUNksz4Fzs2NXOyZbOro,8856
|
266
265
|
letta/schemas/memory.py,sha256=45j0akHGSrShd8v8wW-7lJhFRNWi9rWEvFp8w6f1PUk,14142
|
267
|
-
letta/schemas/message.py,sha256=
|
266
|
+
letta/schemas/message.py,sha256=XtlLGm6ETxdWi1ClrEant36lwQac2yS4oQ3os0zipi8,49769
|
268
267
|
letta/schemas/npm_requirement.py,sha256=HkvBF7KjHUH-MG-RAEYJHO2MLRS2rxFUcmbpbZVznLk,457
|
269
|
-
letta/schemas/openai/chat_completion_request.py,sha256=
|
268
|
+
letta/schemas/openai/chat_completion_request.py,sha256=cHAuJGMQhe5vs1LuRfn806wPMm3k5XxB9sQ7PCRvUZI,4339
|
270
269
|
letta/schemas/openai/chat_completion_response.py,sha256=Hes8D-tl8_I_LClONUNw3NZ_vkvas6d4QfE-7ge1eac,7065
|
271
270
|
letta/schemas/openai/chat_completions.py,sha256=l0e9sT9boTD5VBU5YtJ0s7qUtCfFGB2K-gQLeEZ2LHU,3599
|
272
271
|
letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNosmLVSuhXYa_xU,357
|
@@ -276,34 +275,33 @@ letta/schemas/passage.py,sha256=WBCDdUAJRRSR3jf-TcAQ0ijBhKe385D4hLXM6CzF_OA,3846
|
|
276
275
|
letta/schemas/pip_requirement.py,sha256=OgcEPFjXyByTkhW30mQCM-CoU3C0V23opXmdcBV0rrw,488
|
277
276
|
letta/schemas/prompt.py,sha256=BRTY-JiKSKdFVPa6rrDHDe7v4sg1qeF-k3w3JKRMTxU,363
|
278
277
|
letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
|
279
|
-
letta/schemas/providers/__init__.py,sha256=
|
280
|
-
letta/schemas/providers/anthropic.py,sha256=
|
281
|
-
letta/schemas/providers/azure.py,sha256=
|
282
|
-
letta/schemas/providers/base.py,sha256=
|
283
|
-
letta/schemas/providers/bedrock.py,sha256=
|
278
|
+
letta/schemas/providers/__init__.py,sha256=hmjEzUaWBmvJUSwBb6shMVt-iycE3jcnA_xa95z3w1g,1336
|
279
|
+
letta/schemas/providers/anthropic.py,sha256=SyPfruKqqwoZcF7i5WSZdlpJuGlYguSngRAcDXArgmA,6275
|
280
|
+
letta/schemas/providers/azure.py,sha256=c0aSfKdVwS_4wWnqng4fe_jmXGmvICRES-8nmqzoEpg,7692
|
281
|
+
letta/schemas/providers/base.py,sha256=xGIsj7py0p8xp4LXvarDxhTxU93LF88HhCpvenBB0eo,10074
|
282
|
+
letta/schemas/providers/bedrock.py,sha256=jOP3GYIlCBeIxV-wk8Th52o-FEPF28ICgobr7nOl2TY,3552
|
284
283
|
letta/schemas/providers/cerebras.py,sha256=tFPN_LTJL_rzRE0DvXHb5Ckyaw4534X2kmibhWjHlA8,3208
|
285
|
-
letta/schemas/providers/cohere.py,sha256=rh-etCfgqyC3f2QSr5_GviR8Vj7bn6nTLdx2ay58LSk,752
|
286
284
|
letta/schemas/providers/deepseek.py,sha256=FXu8qPedeQC2Cn_L-k-1sQjj4feB8mbmW9XMJYx5hjE,2623
|
287
285
|
letta/schemas/providers/google_gemini.py,sha256=VnC0rrjnUdUK08VLGhI290p7yDsUnOwDjLKKJqvFoPw,4589
|
288
286
|
letta/schemas/providers/google_vertex.py,sha256=ooKgRXum1NOMGb4cJsOLPlFVw-TwAde9l-20ngEd9h4,2674
|
289
287
|
letta/schemas/providers/groq.py,sha256=AquJQH-Y5-s75Nj2_X7xavuWUu5F2bSvHjAZ1GfpeyQ,1455
|
290
|
-
letta/schemas/providers/letta.py,sha256=
|
288
|
+
letta/schemas/providers/letta.py,sha256=tsVg4dE7r33TDkK6BCbC9lvnjk35uf32mecmuY3589E,1580
|
291
289
|
letta/schemas/providers/lmstudio.py,sha256=Hi8Nir96B5FCQ8cVT-mWl7nLX0Z2-RIxUANAqRGG-zo,4323
|
292
290
|
letta/schemas/providers/mistral.py,sha256=EjFF6YcfN5jBjCfnZw3ECv_3qYuG0HVb7B0VoYk-jKU,1866
|
293
|
-
letta/schemas/providers/ollama.py,sha256=
|
294
|
-
letta/schemas/providers/openai.py,sha256=
|
295
|
-
letta/schemas/providers/together.py,sha256=
|
291
|
+
letta/schemas/providers/ollama.py,sha256=uKZqFMU6SIg5QqtN7Kw98EqtUkbXyBU5aamumn9y23M,5491
|
292
|
+
letta/schemas/providers/openai.py,sha256=EWAP7pN760JpXXBCCOkMOGB_EjR2BWjPi3W9pbN8RrM,11149
|
293
|
+
letta/schemas/providers/together.py,sha256=jsaziBEfVKg_70c3-m0FdYYBnbYpYkCEPVDKBZsvMWs,3852
|
296
294
|
letta/schemas/providers/vllm.py,sha256=CwM260cxWLkviVzY4wwkw4NmDAK69fv531AofRGa9JA,2480
|
297
295
|
letta/schemas/providers/xai.py,sha256=KCYqE75msyhxTwy_ZxRU3t46UWCWATE4pSCJmBbf4Vo,2494
|
298
296
|
letta/schemas/providers.py,sha256=FjxKTT2-DFCgJxOsdtkklvHQ78V7atgdTxosxjNrpYc,69394
|
299
297
|
letta/schemas/response_format.py,sha256=rRM4pGbVM1PWWscvyZ2cXDEzXtLl7jP62mrvyLzPraI,2131
|
300
298
|
letta/schemas/run.py,sha256=1lVOWlHVbk9MYIOiIrE1gCoQvBhErKo7UMSeWyMExbw,2089
|
301
|
-
letta/schemas/sandbox_config.py,sha256=
|
299
|
+
letta/schemas/sandbox_config.py,sha256=iw3-QS7PNy649tdynTJUxBbaruprykYAuGO6q28w-gU,5974
|
302
300
|
letta/schemas/source.py,sha256=6f_f9fnFs78JR5cZqFniCeTT1DYGuMP9QSBBCiC8e4s,3281
|
303
301
|
letta/schemas/source_metadata.py,sha256=_dGjuXhGcVMlc53ja9yuk16Uj64ggEzilRDgmkqYfNs,1334
|
304
302
|
letta/schemas/step.py,sha256=SKJfcaaqdaGZtaqsfzwAx_O_maDzsxYJYUtSBUZxSfE,3456
|
305
303
|
letta/schemas/step_metrics.py,sha256=TZQ02ZTGaQ9s4w4wfvDiiSw0S72baXqoAjjCKVNIkk0,1358
|
306
|
-
letta/schemas/tool.py,sha256=
|
304
|
+
letta/schemas/tool.py,sha256=h65FJJovQSJj5LU-Zlb2h63oEHPUFm8_OZKXgTGS7qo,14562
|
307
305
|
letta/schemas/tool_execution_result.py,sha256=4P77llsUsZBnRd0PtPiC4VzGjx7i_-fUNgXQfCpMS9U,896
|
308
306
|
letta/schemas/tool_rule.py,sha256=mB-CJi8BSfYyDXRXNmzDd5RY7EnMHqVaxhpX7RFouRM,10000
|
309
307
|
letta/schemas/usage.py,sha256=9SSTH5kUliwiVF14b-yKbDcmxQBOLg4YH5xhXDbW9UU,1281
|
@@ -337,10 +335,10 @@ letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
337
335
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
336
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
|
339
337
|
letta/server/rest_api/routers/v1/__init__.py,sha256=HlL-WoRMz39NLyHhFugHbdIho66ZVK5VG2YRNYIiMZU,1866
|
340
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
338
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=2BlVMKFXHg-xHQ6h-sAJO3d1l6VxhPfHfclacUKcia8,70298
|
341
339
|
letta/server/rest_api/routers/v1/blocks.py,sha256=jICprv_qKlS1H9xOwzXVnGG41l9D9WR6RpKPAKljrhk,7459
|
342
340
|
letta/server/rest_api/routers/v1/embeddings.py,sha256=PRaQlrmEXPiIdWsTbadrFsv3Afyv5oEFUdhgHA8FTi8,989
|
343
|
-
letta/server/rest_api/routers/v1/folders.py,sha256=
|
341
|
+
letta/server/rest_api/routers/v1/folders.py,sha256=9q4KesoEff-UjyZ_IX28G3Fli4t5YMaERF5Rny9C0qs,22100
|
344
342
|
letta/server/rest_api/routers/v1/groups.py,sha256=M67QsD9kx3RhMfwpvXoBcujUwKVXJuXsV6nMUUxgtdc,10978
|
345
343
|
letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
|
346
344
|
letta/server/rest_api/routers/v1/identities.py,sha256=KUfw6avQIVHNw2lWz4pXOyTOPVy1g19CJGG-zayORl8,7858
|
@@ -348,20 +346,20 @@ letta/server/rest_api/routers/v1/jobs.py,sha256=ZcP_cqxgixCEYNtKVMqN1FwErNY-945h
|
|
348
346
|
letta/server/rest_api/routers/v1/llms.py,sha256=0VJuuGW9_ta0cBnSDtXd3Ngw7GjsqEN2NBf5U3b6M3I,1920
|
349
347
|
letta/server/rest_api/routers/v1/messages.py,sha256=EBCxkt44r9uhw9GIkN5v6Rc1R_xGVMpcStkLnY2t0n0,7807
|
350
348
|
letta/server/rest_api/routers/v1/organizations.py,sha256=OnG2vMDZEmN4eEvj24CPwiV76ImHQuHi2ojrgwJnw7I,2925
|
351
|
-
letta/server/rest_api/routers/v1/providers.py,sha256=
|
349
|
+
letta/server/rest_api/routers/v1/providers.py,sha256=rypNWQ1VMjmZJYd48uvNGJsE2N22jDTxn89qvbDaOMs,4765
|
352
350
|
letta/server/rest_api/routers/v1/runs.py,sha256=vieUp7uTvRTdAte0Nw1bqX2APMATZhKTr2R1HVNJT74,8879
|
353
351
|
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=tAXoyJLEXTkanBqGO3-d2WIAOgChmeLmJABS3Am9uTM,8941
|
354
|
-
letta/server/rest_api/routers/v1/sources.py,sha256=
|
355
|
-
letta/server/rest_api/routers/v1/steps.py,sha256=
|
352
|
+
letta/server/rest_api/routers/v1/sources.py,sha256=3XLgN7wJF4r0k2Rp3o6GZSQ1w_BmR3A-wGVSrupO24o,23719
|
353
|
+
letta/server/rest_api/routers/v1/steps.py,sha256=bTzfz1GR3VEZdJRYUGiSr6ZLd12i5faPsf3oAqu1eMk,5570
|
356
354
|
letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
|
357
355
|
letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
|
358
|
-
letta/server/rest_api/routers/v1/tools.py,sha256=
|
356
|
+
letta/server/rest_api/routers/v1/tools.py,sha256=5HSSYRvobww6J8OtgaRiZw19442Qg0YKPgwygRhnpHw,43435
|
359
357
|
letta/server/rest_api/routers/v1/users.py,sha256=J1vaTbS1UrBMgnPya7GdZ2wr3L9XHmkm6qdGY6pWaOI,2366
|
360
358
|
letta/server/rest_api/routers/v1/voice.py,sha256=ghMBp5Uovbf0-3nN6d9P5kpl1hHACLRMhIDGQp96G9Q,1986
|
361
359
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
362
|
-
letta/server/rest_api/streaming_response.py,sha256=
|
360
|
+
letta/server/rest_api/streaming_response.py,sha256=nzkw2tfduehpxAg8cI830pcswRR4cy240Vo-plyofMk,14625
|
363
361
|
letta/server/rest_api/utils.py,sha256=RbkiTWvcvVTJnJTh_RcPJDfaZUJQuMr7pgyDZxqpi_o,17222
|
364
|
-
letta/server/server.py,sha256=
|
362
|
+
letta/server/server.py,sha256=NGLSZMC3FAz6gCGelfKZ8DnzqKSPrbaWjVhk1THvHTU,110048
|
365
363
|
letta/server/startup.sh,sha256=z-Fea-7LiuS_aG1tJqS8JAsDQaamwC_kuDhv9D3PPPY,2698
|
366
364
|
letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
|
367
365
|
letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
|
@@ -376,12 +374,12 @@ letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etz
|
|
376
374
|
letta/server/ws_api/server.py,sha256=_16TQafm509rqRztZYqo0HKKZoe8ccBrNftd_kbIJTE,5833
|
377
375
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
378
376
|
letta/services/agent_file_manager.py,sha256=bgYTyQA90Iqo3W-LprPtyyOKf2itoqivcRhh4EOUXss,30847
|
379
|
-
letta/services/agent_manager.py,sha256=
|
380
|
-
letta/services/agent_serialization_manager.py,sha256=
|
377
|
+
letta/services/agent_manager.py,sha256=Nwefrg4FTBSjBxHlbJHqxSvFaSmtFm7MrfF7wiFFBg8,154744
|
378
|
+
letta/services/agent_serialization_manager.py,sha256=72ip2SxPnGaZ9T0fDocH1kZdaHFCt7BFAJjHMm7oQtc,39831
|
381
379
|
letta/services/archive_manager.py,sha256=a_EDb0agJAze1oOELfnHmPUQB0k9fG1xBK5p_o2zsis,9427
|
382
380
|
letta/services/block_manager.py,sha256=sSbNpsbk62-qBtOmhIp3YlOQKTpWQ3gXlVrFpF1vY50,33491
|
383
381
|
letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
384
|
-
letta/services/context_window_calculator/context_window_calculator.py,sha256=
|
382
|
+
letta/services/context_window_calculator/context_window_calculator.py,sha256=Ux1UU_l0Nk08HGUMUUrjbtnm2thVRC9bHE7poo8gb8o,8241
|
385
383
|
letta/services/context_window_calculator/token_counter.py,sha256=QHNeLciQmBDV0pdCawkNaltbTYp2Ju7ZwKpE5y46LDg,4731
|
386
384
|
letta/services/file_manager.py,sha256=6hjBk4ZJJ7emqyswqB3Kn0JQBSzL2aE4Rzj7vyEsXjo,26157
|
387
385
|
letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -401,7 +399,7 @@ letta/services/file_processor/parser/mistral_parser.py,sha256=NmCdVdpAB5f-VjILJp
|
|
401
399
|
letta/services/file_processor/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
402
400
|
letta/services/files_agents_manager.py,sha256=lSKiekZuB5fgVvhLxaA2oU1ddv4BWyIl7dDx43esUrQ,27892
|
403
401
|
letta/services/group_manager.py,sha256=2QzL1Hy-j42pRHK8t-nAF1qlXGRSpBQlwWwfU7s4_ow,23688
|
404
|
-
letta/services/helpers/agent_manager_helper.py,sha256=
|
402
|
+
letta/services/helpers/agent_manager_helper.py,sha256=Zy4MMlVPuH-SQ7Io7WZIlqFvUs7mHqWlqp4QGlkTfzk,59442
|
405
403
|
letta/services/helpers/tool_execution_helper.py,sha256=45L7woJ98jK5MQAnhE_4NZdCeyOOzC4328FTQPM7iTA,9159
|
406
404
|
letta/services/helpers/tool_parser_helper.py,sha256=_3oAVRVfRaicGpO6qRKAlCAujZw2uBGUclei4FUC6Do,4349
|
407
405
|
letta/services/identity_manager.py,sha256=tI7K1VupongrJRDfFo4F86qcgCGhLmMiIAwTFwt3Syk,11847
|
@@ -414,50 +412,55 @@ letta/services/mcp/sse_client.py,sha256=q1Wkfu2Cqljm11E5rkQ4hc7Ehf9Eaf6rZ5Yw0ROg
|
|
414
412
|
letta/services/mcp/stdio_client.py,sha256=Z8HEQOGiY1jZFlW_pWbuOn1paYB6XhEH-ANmX55q9FI,1001
|
415
413
|
letta/services/mcp/streamable_http_client.py,sha256=MuYhJt7mi34EVQ4XK_xZOY1GZWBEqfhsq6rXuZxOJx0,3546
|
416
414
|
letta/services/mcp/types.py,sha256=8LYlBwWvdbvfy6ZdXJoin-7QmgmJC7samYXjQZL4KZs,1662
|
417
|
-
letta/services/mcp_manager.py,sha256=
|
415
|
+
letta/services/mcp_manager.py,sha256=RS3aZvZ3yYbuZUoQi_uLsirMOgu2wtrEing5Nc3McN0,39393
|
418
416
|
letta/services/message_manager.py,sha256=_kwN9ZRRbZXX3yAiTSty9Eiybl10cQNqrt-7284_PPo,31721
|
419
417
|
letta/services/organization_manager.py,sha256=PngZXPuzcCWB1CW7vAST9CsQZLysrpEdwHwhFN4_fhs,5838
|
420
|
-
letta/services/passage_manager.py,sha256=
|
418
|
+
letta/services/passage_manager.py,sha256=MPq1qlnFcEjlKNN9DpWz37TByfFYRr1e0uHRNdiOhN8,42191
|
421
419
|
letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
|
422
|
-
letta/services/provider_manager.py,sha256=
|
420
|
+
letta/services/provider_manager.py,sha256=g1FGNA8xb-DWzlnYCHtD73kLMurtHBI7pqpneZY_RBQ,10763
|
423
421
|
letta/services/sandbox_config_manager.py,sha256=-smC1Y3bjE6CmCEW3xbbka6AWu_eyayF18nFDHhWUNk,26114
|
424
422
|
letta/services/source_manager.py,sha256=borlj2xDW-1PKbxzEfn1j5oNMLw4bb3ujOyn5UmmCrI,16844
|
425
|
-
letta/services/step_manager.py,sha256=
|
423
|
+
letta/services/step_manager.py,sha256=usfeRE6oXeHj8v62f-1pq33yuSrmzNyKvAocZ8etjs0,20892
|
426
424
|
letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
427
425
|
letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZVV2r0,279
|
428
|
-
letta/services/summarizer/summarizer.py,sha256=
|
426
|
+
letta/services/summarizer/summarizer.py,sha256=qXgquQs7nPAOb_EnlkKF0yS3QsRfYluZoJkFA4THhvA,18419
|
429
427
|
letta/services/telemetry_manager.py,sha256=Ur_VPgawiLIwDuxP9NHuz-hq_-S1vKIYThlB-doKZPY,3338
|
430
428
|
letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
431
429
|
letta/services/tool_executor/builtin_tool_executor.py,sha256=S0m6IYTNPep34Tu51WoTIqm8YZvRVLQ1A3v7b_VeiVU,18107
|
432
430
|
letta/services/tool_executor/composio_tool_executor.py,sha256=ia2AA_WDOseR8Ylam-HEayR7OiyfNSb1sSUrjwqlmFM,2308
|
433
|
-
letta/services/tool_executor/core_tool_executor.py,sha256=
|
431
|
+
letta/services/tool_executor/core_tool_executor.py,sha256=PqCZ0FNq7E0Ji5Bh-xNsiARuEFKskXZ4Q0OuyU4tg3Q,20279
|
434
432
|
letta/services/tool_executor/files_tool_executor.py,sha256=XccmHsofLaV4QIBuD8TOpw1-ucBZvra0_x5eAO_Biyc,32123
|
435
433
|
letta/services/tool_executor/mcp_tool_executor.py,sha256=mY2JqB6G4DOvRVWuiL9BbHOfAO2VlLBDmJrjL3TNc4E,1908
|
436
434
|
letta/services/tool_executor/multi_agent_tool_executor.py,sha256=dfaZeldEnzJDg2jGHlGy3YXKjsJpokJW1tvVeoCCDrk,5496
|
437
|
-
letta/services/tool_executor/sandbox_tool_executor.py,sha256=
|
435
|
+
letta/services/tool_executor/sandbox_tool_executor.py,sha256=lV2r6Zkp9-E7x5c7yKMB1cPaAv9FJXFAwEpRPtGvVhQ,6259
|
438
436
|
letta/services/tool_executor/tool_execution_manager.py,sha256=tAbv-K5tuORoQK_0f6NXWhct2ltu3jqPynVO6aWcTVI,6411
|
439
437
|
letta/services/tool_executor/tool_execution_sandbox.py,sha256=p0PCPmlsC95nq2M6LWOHZ1JBNCvHeJIxOvy62-_4D_8,25928
|
440
438
|
letta/services/tool_executor/tool_executor_base.py,sha256=4b1GU0LZc8iwbM3TisqBVOxsE2H6BiFZ3-r11IrtZ1U,1566
|
441
|
-
letta/services/tool_manager.py,sha256=
|
439
|
+
letta/services/tool_manager.py,sha256=QxDCeEOUdyEb6Zv_BGRDrZqr1CFDA24plEokOBp_MoM,37855
|
442
440
|
letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
443
|
-
letta/services/tool_sandbox/base.py,sha256=
|
441
|
+
letta/services/tool_sandbox/base.py,sha256=afzDoYo-Jw9shnAEzQubIV6H8Q2kJQ_6elWlQUr-sGY,8120
|
444
442
|
letta/services/tool_sandbox/e2b_sandbox.py,sha256=7h7quhbJRV1eIztZPVPgJLYwgHS3ZiaaMvTPrt01F1U,10294
|
445
443
|
letta/services/tool_sandbox/local_sandbox.py,sha256=Yq64DaOQZUq6SOirJXRt1PQlj22DDVqeyIHEo4NUf3E,11991
|
446
|
-
letta/services/tool_sandbox/
|
444
|
+
letta/services/tool_sandbox/modal_constants.py,sha256=AaXPxSlCj2BhfY5DGwQvqHXfikpurhV2iFsN7zxM3Is,454
|
445
|
+
letta/services/tool_sandbox/modal_deployment_manager.py,sha256=X6zCqWWeIY7jv8QC6LxPf3P7z-RajuF7TliGKLnNpSk,9159
|
446
|
+
letta/services/tool_sandbox/modal_sandbox.py,sha256=bgzcj1ysGiFanr1pYkiWxWd1YjHv9OkXd32iuwDpRA8,17814
|
447
|
+
letta/services/tool_sandbox/modal_sandbox_v2.py,sha256=8GcGG20lirNU33375SFfhecS6EvGlYojjUGzwU34sQ0,18483
|
448
|
+
letta/services/tool_sandbox/modal_version_manager.py,sha256=Arcwf8c0SOWVWkSQpmvhJvyIgbpBjHT4K4ZG-m5d-Jk,11401
|
449
|
+
letta/services/tool_sandbox/safe_pickle.py,sha256=p8NJy3zVj-LrvXj8pwJ-SG8r-VhD86NVGWoboaF3ir4,5964
|
447
450
|
letta/services/user_manager.py,sha256=0OHwODW24VSDwl-TiVMqpAmT7I-Y88CNOn9pUWDfkqc,9979
|
448
|
-
letta/settings.py,sha256=
|
451
|
+
letta/settings.py,sha256=LR90_usMd2XRKOamyqeAZOZ0lYa9e4IDqbaOsDy_lOA,14512
|
449
452
|
letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
|
450
453
|
letta/streaming_utils.py,sha256=g6QPibjT5kwnJ55IwLb7mBQ9EYp61aBWgYeV_IUuTr8,12009
|
451
454
|
letta/system.py,sha256=7VkRJO59S7cq8mWbvCrP27YyTg7gVQoVE3IZbL6rRdI,8926
|
452
455
|
letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
453
|
-
letta/templates/sandbox_code_file.py.j2,sha256
|
454
|
-
letta/templates/sandbox_code_file_async.py.j2,sha256=
|
456
|
+
letta/templates/sandbox_code_file.py.j2,sha256=eXga5J_04Z8-pGdwfOCDjcRnMceIqcF5ii0rUY3lmq4,2270
|
457
|
+
letta/templates/sandbox_code_file_async.py.j2,sha256=lb7nh_P2W9VZHzU_9TxSCEMUod7SDziPXgvT75xVds0,2748
|
455
458
|
letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUIXjgXKiizuc,842
|
456
459
|
letta/templates/template_helper.py,sha256=HkG3zwRc5NVGmSTQu5PUTpz7LevK43bzXVaQuN8urf0,1634
|
457
460
|
letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
|
458
|
-
letta/utils.py,sha256=
|
459
|
-
letta_nightly-0.11.
|
460
|
-
letta_nightly-0.11.
|
461
|
-
letta_nightly-0.11.
|
462
|
-
letta_nightly-0.11.
|
463
|
-
letta_nightly-0.11.
|
461
|
+
letta/utils.py,sha256=oY4O447Bu5f0M_zpCR2hL62yinUvbYbGzK-7JFgMBug,38406
|
462
|
+
letta_nightly-0.11.4.dev20250821104215.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
463
|
+
letta_nightly-0.11.4.dev20250821104215.dist-info/METADATA,sha256=lICFWGcFZ6w1OD36W8V1lRIFGzKwSX8fKW08dYM1oA8,23281
|
464
|
+
letta_nightly-0.11.4.dev20250821104215.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
465
|
+
letta_nightly-0.11.4.dev20250821104215.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
466
|
+
letta_nightly-0.11.4.dev20250821104215.dist-info/RECORD,,
|