letta-nightly 0.7.30.dev20250603104343__py3-none-any.whl → 0.8.0.dev20250604104349__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 +7 -1
- letta/agent.py +14 -7
- letta/agents/base_agent.py +1 -0
- letta/agents/ephemeral_summary_agent.py +104 -0
- letta/agents/helpers.py +35 -3
- letta/agents/letta_agent.py +492 -176
- letta/agents/letta_agent_batch.py +22 -16
- letta/agents/prompts/summary_system_prompt.txt +62 -0
- letta/agents/voice_agent.py +22 -7
- letta/agents/voice_sleeptime_agent.py +13 -8
- letta/constants.py +33 -1
- letta/data_sources/connectors.py +52 -36
- letta/errors.py +4 -0
- letta/functions/ast_parsers.py +13 -30
- letta/functions/function_sets/base.py +3 -1
- letta/functions/functions.py +2 -0
- letta/functions/mcp_client/base_client.py +151 -97
- letta/functions/mcp_client/sse_client.py +49 -31
- letta/functions/mcp_client/stdio_client.py +107 -106
- letta/functions/schema_generator.py +22 -22
- letta/groups/helpers.py +3 -4
- letta/groups/sleeptime_multi_agent.py +4 -4
- letta/groups/sleeptime_multi_agent_v2.py +22 -0
- letta/helpers/composio_helpers.py +16 -0
- letta/helpers/converters.py +20 -0
- letta/helpers/datetime_helpers.py +1 -6
- letta/helpers/tool_rule_solver.py +2 -1
- letta/interfaces/anthropic_streaming_interface.py +17 -2
- letta/interfaces/openai_chat_completions_streaming_interface.py +1 -0
- letta/interfaces/openai_streaming_interface.py +18 -2
- letta/llm_api/anthropic_client.py +24 -3
- letta/llm_api/google_ai_client.py +0 -15
- letta/llm_api/google_vertex_client.py +6 -5
- letta/llm_api/llm_client_base.py +15 -0
- letta/llm_api/openai.py +2 -2
- letta/llm_api/openai_client.py +60 -8
- letta/orm/__init__.py +2 -0
- letta/orm/agent.py +45 -43
- letta/orm/base.py +0 -2
- letta/orm/block.py +1 -0
- letta/orm/custom_columns.py +13 -0
- letta/orm/enums.py +5 -0
- letta/orm/file.py +3 -1
- letta/orm/files_agents.py +68 -0
- letta/orm/mcp_server.py +48 -0
- letta/orm/message.py +1 -0
- letta/orm/organization.py +11 -2
- letta/orm/passage.py +25 -10
- letta/orm/sandbox_config.py +5 -2
- letta/orm/sqlalchemy_base.py +171 -110
- letta/prompts/system/memgpt_base.txt +6 -1
- letta/prompts/system/memgpt_v2_chat.txt +57 -0
- letta/prompts/system/sleeptime.txt +2 -0
- letta/prompts/system/sleeptime_v2.txt +28 -0
- letta/schemas/agent.py +87 -20
- letta/schemas/block.py +7 -1
- letta/schemas/file.py +57 -0
- letta/schemas/mcp.py +74 -0
- letta/schemas/memory.py +5 -2
- letta/schemas/message.py +9 -0
- letta/schemas/openai/openai.py +0 -6
- letta/schemas/providers.py +33 -4
- letta/schemas/tool.py +26 -21
- letta/schemas/tool_execution_result.py +5 -0
- letta/server/db.py +23 -8
- letta/server/rest_api/app.py +73 -56
- letta/server/rest_api/interface.py +4 -4
- letta/server/rest_api/routers/v1/agents.py +132 -47
- letta/server/rest_api/routers/v1/blocks.py +3 -2
- letta/server/rest_api/routers/v1/embeddings.py +3 -3
- letta/server/rest_api/routers/v1/groups.py +3 -3
- letta/server/rest_api/routers/v1/jobs.py +14 -17
- letta/server/rest_api/routers/v1/organizations.py +10 -10
- letta/server/rest_api/routers/v1/providers.py +12 -10
- letta/server/rest_api/routers/v1/runs.py +3 -3
- letta/server/rest_api/routers/v1/sandbox_configs.py +12 -12
- letta/server/rest_api/routers/v1/sources.py +108 -43
- letta/server/rest_api/routers/v1/steps.py +8 -6
- letta/server/rest_api/routers/v1/tools.py +134 -95
- letta/server/rest_api/utils.py +12 -1
- letta/server/server.py +272 -73
- letta/services/agent_manager.py +246 -313
- letta/services/block_manager.py +30 -9
- letta/services/context_window_calculator/__init__.py +0 -0
- letta/services/context_window_calculator/context_window_calculator.py +150 -0
- letta/services/context_window_calculator/token_counter.py +82 -0
- letta/services/file_processor/__init__.py +0 -0
- letta/services/file_processor/chunker/__init__.py +0 -0
- letta/services/file_processor/chunker/llama_index_chunker.py +29 -0
- letta/services/file_processor/embedder/__init__.py +0 -0
- letta/services/file_processor/embedder/openai_embedder.py +84 -0
- letta/services/file_processor/file_processor.py +123 -0
- letta/services/file_processor/parser/__init__.py +0 -0
- letta/services/file_processor/parser/base_parser.py +9 -0
- letta/services/file_processor/parser/mistral_parser.py +54 -0
- letta/services/file_processor/types.py +0 -0
- letta/services/files_agents_manager.py +184 -0
- letta/services/group_manager.py +118 -0
- letta/services/helpers/agent_manager_helper.py +76 -21
- letta/services/helpers/tool_execution_helper.py +3 -0
- letta/services/helpers/tool_parser_helper.py +100 -0
- letta/services/identity_manager.py +44 -42
- letta/services/job_manager.py +21 -10
- letta/services/mcp/base_client.py +5 -2
- letta/services/mcp/sse_client.py +3 -5
- letta/services/mcp/stdio_client.py +3 -5
- letta/services/mcp_manager.py +281 -0
- letta/services/message_manager.py +40 -26
- letta/services/organization_manager.py +55 -19
- letta/services/passage_manager.py +211 -13
- letta/services/provider_manager.py +48 -2
- letta/services/sandbox_config_manager.py +105 -0
- letta/services/source_manager.py +4 -5
- letta/services/step_manager.py +9 -6
- letta/services/summarizer/summarizer.py +50 -23
- letta/services/telemetry_manager.py +7 -0
- letta/services/tool_executor/tool_execution_manager.py +11 -52
- letta/services/tool_executor/tool_execution_sandbox.py +4 -34
- letta/services/tool_executor/tool_executor.py +107 -105
- letta/services/tool_manager.py +56 -17
- letta/services/tool_sandbox/base.py +39 -92
- letta/services/tool_sandbox/e2b_sandbox.py +16 -11
- letta/services/tool_sandbox/local_sandbox.py +51 -23
- letta/services/user_manager.py +36 -3
- letta/settings.py +10 -3
- letta/templates/__init__.py +0 -0
- letta/templates/sandbox_code_file.py.j2 +47 -0
- letta/templates/template_helper.py +16 -0
- letta/tracing.py +30 -1
- letta/types/__init__.py +7 -0
- letta/utils.py +25 -1
- {letta_nightly-0.7.30.dev20250603104343.dist-info → letta_nightly-0.8.0.dev20250604104349.dist-info}/METADATA +7 -2
- {letta_nightly-0.7.30.dev20250603104343.dist-info → letta_nightly-0.8.0.dev20250604104349.dist-info}/RECORD +136 -110
- {letta_nightly-0.7.30.dev20250603104343.dist-info → letta_nightly-0.8.0.dev20250604104349.dist-info}/LICENSE +0 -0
- {letta_nightly-0.7.30.dev20250603104343.dist-info → letta_nightly-0.8.0.dev20250604104349.dist-info}/WHEEL +0 -0
- {letta_nightly-0.7.30.dev20250603104343.dist-info → letta_nightly-0.8.0.dev20250604104349.dist-info}/entry_points.txt +0 -0
@@ -1,14 +1,16 @@
|
|
1
|
-
letta/__init__.py,sha256=
|
2
|
-
letta/agent.py,sha256=
|
1
|
+
letta/__init__.py,sha256=jBl9GrVTLw6EZQYMQIn3QHlP54yS0cshCtmR8keNsvE,982
|
2
|
+
letta/agent.py,sha256=2Uqhx3Iw6PmoBIWuy5jW5jWMZLk0jMVXmnsgPkUodUc,87769
|
3
3
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
letta/agents/base_agent.py,sha256=
|
4
|
+
letta/agents/base_agent.py,sha256=2UlP0EgL4tLiSCmF4mPJYF9sCB3ddK9hpZf70MAsTYU,5548
|
5
5
|
letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
|
6
|
+
letta/agents/ephemeral_summary_agent.py,sha256=E7RxBfRWKIs9R0gZKXZdj09svGKFSqOxpdLZYTSbXYM,4025
|
6
7
|
letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
|
7
|
-
letta/agents/helpers.py,sha256=
|
8
|
-
letta/agents/letta_agent.py,sha256=
|
9
|
-
letta/agents/letta_agent_batch.py,sha256=
|
10
|
-
letta/agents/
|
11
|
-
letta/agents/
|
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
|
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
14
|
letta/cli/cli.py,sha256=tKtghlX36Rp0_HbkMosvlAapL07JXhA0vKLGTNKnxSQ,1615
|
13
15
|
letta/cli/cli_load.py,sha256=paAyDq6e-8D1ZWo8JvXIiA1N7FeKcQMSWgcr2vU_1Gs,319
|
14
16
|
letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -16,52 +18,52 @@ letta/client/client.py,sha256=mCVob5MI5hegCHedeg88aiYwpPs8NiiLjOIoAmEFiS8,84826
|
|
16
18
|
letta/client/streaming.py,sha256=UsDS_tDTsA3HgYryIDvGGmx_dWfnfQwtmEwLi4Z89Ik,4701
|
17
19
|
letta/client/utils.py,sha256=VCGV-op5ZSmurd4yw7Vhf93XDQ0BkyBT8qsuV7EqfiU,2859
|
18
20
|
letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
|
19
|
-
letta/constants.py,sha256=
|
20
|
-
letta/data_sources/connectors.py,sha256=
|
21
|
+
letta/constants.py,sha256=DLhNxrz7tKVILOUprKO-_sc12fdKK0nzFQPb5Juq3EI,12978
|
22
|
+
letta/data_sources/connectors.py,sha256=7cefbTb0bDmtRYAk2gs9JXntzfS6OIeInjZgvL_Yw6Y,7936
|
21
23
|
letta/data_sources/connectors_helper.py,sha256=oQpVlc-BjSz9sTZ7sp4PsJSXJbBKpZPi3Dam03CURTQ,3376
|
22
24
|
letta/embeddings.py,sha256=KvC2bl5tARpVY9xcFmw4Cwu1vN0DoH266v2mSUZqwkY,10528
|
23
|
-
letta/errors.py,sha256=
|
25
|
+
letta/errors.py,sha256=FlxHjA5LaMfIAPXRKzmMDjUvqOYmh00MEO9tSPLcC6g,7063
|
24
26
|
letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
-
letta/functions/ast_parsers.py,sha256=
|
27
|
+
letta/functions/ast_parsers.py,sha256=lEmjIzGrTjlDJFAX-gjg0dU2CIBu6Vo4msSq-fhhup4,4969
|
26
28
|
letta/functions/async_composio_toolset.py,sha256=J6iOOT_rFRS4cpOAaH6R3YDvutPr4fTgpTFHgeaUzu4,4633
|
27
29
|
letta/functions/composio_helpers.py,sha256=mpybCYcB93HWoKrmQIqcuRQG9IH2lHWhsPQx2i8XP_8,3593
|
28
|
-
letta/functions/function_sets/base.py,sha256=
|
30
|
+
letta/functions/function_sets/base.py,sha256=FS-LRbvzO-duSUy0yLP_fBk2WSs4NAaaTAUuhl2ZS-I,16154
|
29
31
|
letta/functions/function_sets/builtin.py,sha256=Cnv_McX-JLh-VDISUIePO_rAUbqRmGINdzu8-a5OiEk,899
|
30
32
|
letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
|
31
33
|
letta/functions/function_sets/multi_agent.py,sha256=AdWAYBw6e3WuvDQubpBoS_ZZz-884evvklMgTqeuf6Q,6900
|
32
34
|
letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
|
33
|
-
letta/functions/functions.py,sha256
|
35
|
+
letta/functions/functions.py,sha256=JVweekyBSlgquNt2Sa4CID7WLE_wIIB7Dl2SHK2gBtM,5940
|
34
36
|
letta/functions/helpers.py,sha256=1-bz_zx8j2-kHAe-Fnq-gM9iY3fc0Wr8UNUNWYopcxg,24982
|
35
37
|
letta/functions/interface.py,sha256=pN1gpDnLISW44gRcic1IX6I6pDwOT9UbkST_4ICuMvQ,2936
|
36
38
|
letta/functions/mcp_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
letta/functions/mcp_client/base_client.py,sha256=
|
39
|
+
letta/functions/mcp_client/base_client.py,sha256=yfpJyPpKxbA9Q_LfLDNOIL1EqwHi21LPLRpXx_sZBhc,6373
|
38
40
|
letta/functions/mcp_client/exceptions.py,sha256=IE5SLCuMK7hK9V1QsJafPo6u0S0OwqRvMx2NcsE3g3c,313
|
39
|
-
letta/functions/mcp_client/sse_client.py,sha256=
|
40
|
-
letta/functions/mcp_client/stdio_client.py,sha256
|
41
|
+
letta/functions/mcp_client/sse_client.py,sha256=QDC29Re2mdGji77YrUk7JXfTVJeS6039oeeh3y6A_7g,2292
|
42
|
+
letta/functions/mcp_client/stdio_client.py,sha256=-SymmkO_KNFZUP5e5mhcidpyyXBv6Xh72yUiMnv_bFw,4709
|
41
43
|
letta/functions/mcp_client/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
|
42
|
-
letta/functions/schema_generator.py,sha256=
|
44
|
+
letta/functions/schema_generator.py,sha256=eX-l6a0oO8EYofeBtbPFB9uWxRqLyt-hV52YeduaA-I,22478
|
43
45
|
letta/groups/dynamic_multi_agent.py,sha256=OLCxhICFLYyx8wjKGPr1INc6pniEuk4YGZyZhq2vkiY,12230
|
44
|
-
letta/groups/helpers.py,sha256=
|
46
|
+
letta/groups/helpers.py,sha256=VABgj684cInv5TXUZ31baTX4nXLghNe0DCnPiEBdjHw,4435
|
45
47
|
letta/groups/round_robin_multi_agent.py,sha256=uUJff0bO68udOREiKFWeS7eEQlk3bF7hcfLSFXMScqI,6999
|
46
|
-
letta/groups/sleeptime_multi_agent.py,sha256=
|
47
|
-
letta/groups/sleeptime_multi_agent_v2.py,sha256=
|
48
|
+
letta/groups/sleeptime_multi_agent.py,sha256=Wo9uc-ZD99SlW3bcP91EwXc3kIX5t8sCcY1JMJjuiRY,10462
|
49
|
+
letta/groups/sleeptime_multi_agent_v2.py,sha256=v7NyI9eZ4MCvWfQKeWVjWmM7PtpczLJl-dgQWEekjVs,12473
|
48
50
|
letta/groups/supervisor_multi_agent.py,sha256=ml8Gi9gyVjPuVZjAJAkpGZDjnM7GOS50NkKf5SIutvQ,4455
|
49
51
|
letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
|
50
|
-
letta/helpers/composio_helpers.py,sha256=
|
51
|
-
letta/helpers/converters.py,sha256=
|
52
|
-
letta/helpers/datetime_helpers.py,sha256=
|
52
|
+
letta/helpers/composio_helpers.py,sha256=MwfmLt7tgjvxAXLHpx9pa5QolxcqoCbofb-30-DVpsI,1714
|
53
|
+
letta/helpers/converters.py,sha256=_55-LaUZQ7efzwaxTQ-wrLMQa6_KOKxc8Vi4DVHlJHk,14442
|
54
|
+
letta/helpers/datetime_helpers.py,sha256=PCIvy4PNYKfG6q1PFfRLI2z4bqkIwJ2p5AY5sl8jefw,3060
|
53
55
|
letta/helpers/json_helpers.py,sha256=PWZ5HhSqGXO4e563dM_8M72q7ScirjXQ4Rv1ckohaV8,396
|
54
56
|
letta/helpers/message_helper.py,sha256=uiGVLyknI5ODZmNdeO_SoWRgnYpkPY8Q3wHwa8u8HFc,2421
|
55
57
|
letta/helpers/tool_execution_helper.py,sha256=BgBgVLZzbc-JTdOGwyU9miV_-zM3A30jkMpwH1otxaU,7599
|
56
|
-
letta/helpers/tool_rule_solver.py,sha256=
|
58
|
+
letta/helpers/tool_rule_solver.py,sha256=f-5rwGoY7v0fGs0qlJbk3puwA6xbi2RHqxD77jSy9ME,7487
|
57
59
|
letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
60
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
59
61
|
letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
|
60
62
|
letta/interface.py,sha256=6GKasvJMASu-kcZch6Hffz1vnHuPA_ryI6cLH2bMArc,13023
|
61
63
|
letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
|
-
letta/interfaces/anthropic_streaming_interface.py,sha256=
|
63
|
-
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=
|
64
|
-
letta/interfaces/openai_streaming_interface.py,sha256=
|
64
|
+
letta/interfaces/anthropic_streaming_interface.py,sha256=b_kh81ip5abfW_atiGvmQRnJFNxeRVtmrpgeb-AwsAQ,22278
|
65
|
+
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=S3k4zqPHE0Fzy6hgnAGExE4RdI3Tna35QU4fcS6NkKM,4956
|
66
|
+
letta/interfaces/openai_streaming_interface.py,sha256=qhFkpz8sfiVnhRWymWzV3wOsXd1DZsDVPARjaO06--M,20971
|
65
67
|
letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
|
66
68
|
letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
69
|
letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
|
@@ -70,22 +72,22 @@ letta/jobs/scheduler.py,sha256=VpRyO2vuETNrarHOIWYctAkrD4WFtV57buUSHaLE89Y,10240
|
|
70
72
|
letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
|
71
73
|
letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
74
|
letta/llm_api/anthropic.py,sha256=Lvk2_d3UD32Q-PjWpATOjMp2Qf1SUPmXJUCn28UgB-Y,47281
|
73
|
-
letta/llm_api/anthropic_client.py,sha256=
|
75
|
+
letta/llm_api/anthropic_client.py,sha256=3Umj4b_Hrd3pJIjwzW410CxsET1Z_C43FNMNkgwuDjE,26891
|
74
76
|
letta/llm_api/aws_bedrock.py,sha256=kAPpKPRe4ZUa6fkxFbo8xwQgq4fJf3QoZEAP1LOCfaw,4168
|
75
77
|
letta/llm_api/azure_openai.py,sha256=YAkXwKyfnJFNhB45pkJVFsoxUNB_M74rQYchtw_CN6I,5099
|
76
78
|
letta/llm_api/azure_openai_constants.py,sha256=ZaR2IasJThijG0uhLKJThrixdAxLPD2IojfeaJ-KQMQ,294
|
77
79
|
letta/llm_api/cohere.py,sha256=IZ6LXyOFMYjWHTeNG9lvFxCdV_NIl0hY2q9SPFYXNkQ,14849
|
78
80
|
letta/llm_api/deepseek.py,sha256=b1mSW8gnBrpAI8d2GcBpDyLYDnuC-P1UP6xJPalfQS4,12456
|
79
|
-
letta/llm_api/google_ai_client.py,sha256=
|
81
|
+
letta/llm_api/google_ai_client.py,sha256=yIP4lJ1sJoryS_76FjSyzOTCOEnXZoyoo-MarR9YzU8,9401
|
80
82
|
letta/llm_api/google_constants.py,sha256=4PKWUNNbBHgHi4K5u9YaHr_8UC3fokfI6Qb6Dfpt4mU,693
|
81
|
-
letta/llm_api/google_vertex_client.py,sha256=
|
83
|
+
letta/llm_api/google_vertex_client.py,sha256=WIf_NO1p1F1vffDRNAo-EYsDqZlfEvLC5qQOJbK-Vy4,22912
|
82
84
|
letta/llm_api/helpers.py,sha256=rpZInutKVKgoywreclisNSi2zVxwFinAzJIuxF6ll4I,17041
|
83
85
|
letta/llm_api/llm_api_tools.py,sha256=gMYoEvs5vSyvjos2eYJN6_BpQ2aNpt3zvyF7D2phbqY,30044
|
84
86
|
letta/llm_api/llm_client.py,sha256=sO9MwiSOJ_ycOFnYrQP0_g6cFkMSnrZqFDz1sUeBHD8,2098
|
85
|
-
letta/llm_api/llm_client_base.py,sha256=
|
87
|
+
letta/llm_api/llm_client_base.py,sha256=45Cjal-qcii04-tKoKp_UeW8yM0mcoFprFh78gumXjk,7073
|
86
88
|
letta/llm_api/mistral.py,sha256=fHdfD9ug-rQIk2qn8tRKay1U6w9maF11ryhKi91FfXM,1593
|
87
|
-
letta/llm_api/openai.py,sha256=
|
88
|
-
letta/llm_api/openai_client.py,sha256=
|
89
|
+
letta/llm_api/openai.py,sha256=OCNeiGRPoZnJRGFdztLnccQZHtx1RPZA304_lsGKBFw,27360
|
90
|
+
letta/llm_api/openai_client.py,sha256=i-0dhFPzR0UK41hTGmyUhHYhpsMNBQBN7vd2MHNW2cI,17949
|
89
91
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
90
92
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
93
|
letta/local_llm/chat_completion_proxy.py,sha256=gc5gaKoHP8QaWRulDeEYPk7Onl8KdCBmpF2l9znXKeQ,13853
|
@@ -129,17 +131,18 @@ letta/memory.py,sha256=HzAQxMLCKEUhb9q6fb4ZMeoAA8s4Tu7QLBXANv8OnXY,4273
|
|
129
131
|
letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
130
132
|
letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
|
131
133
|
letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
|
132
|
-
letta/orm/__init__.py,sha256=
|
133
|
-
letta/orm/agent.py,sha256=
|
134
|
+
letta/orm/__init__.py,sha256=cViTMoXDD81NoT8X_h_ozH6_-zWm8_aJ34BCtXmCmCo,1415
|
135
|
+
letta/orm/agent.py,sha256=mLZiQwd6DCs7lqNSXY1H6QvvVhdqX_bFYl86O1gBm6w,14178
|
134
136
|
letta/orm/agents_tags.py,sha256=IM9UxHtcispiieh0EnOIGTk--nGK9XaS6v3jl_cjcWo,1011
|
135
|
-
letta/orm/base.py,sha256=
|
136
|
-
letta/orm/block.py,sha256=
|
137
|
+
letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
|
138
|
+
letta/orm/block.py,sha256=BhjjYiHV5crvES6GDz60J_1MRdePZcvw_YHzTdbIzuU,5870
|
137
139
|
letta/orm/block_history.py,sha256=6-k9e5weTWKqWZgZUH2lF42vWrLhXNUJZQVJDHQEfgY,2088
|
138
140
|
letta/orm/blocks_agents.py,sha256=NttkDNp6-sZ-uDkRzowibXkUmuMZ0YX8F3f17oszSTg,1128
|
139
|
-
letta/orm/custom_columns.py,sha256=
|
140
|
-
letta/orm/enums.py,sha256=
|
141
|
+
letta/orm/custom_columns.py,sha256=gVq4opV0sIuThphX7z3QdyF8RKbcxUO6IHX2J4al27U,5585
|
142
|
+
letta/orm/enums.py,sha256=GnR2H1aMpY4oRjjeuoxK5rOjggF-er93zHAHHZmFWNE,974
|
141
143
|
letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
|
142
|
-
letta/orm/file.py,sha256=
|
144
|
+
letta/orm/file.py,sha256=iNlVFv9cSt8hlWzFkhPz3QE3A7yTHR4XvSkKdrCaO4E,1927
|
145
|
+
letta/orm/files_agents.py,sha256=7IbEQF9frzgZtRDOKujJSZ3_oPgGJI9Ihs4lahRUVF0,2833
|
143
146
|
letta/orm/group.py,sha256=tygd3nWOmTIQ8TRzJeUA8rd9dfMDzw2XH8BfaQ4aEwI,2100
|
144
147
|
letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,483
|
145
148
|
letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
|
@@ -150,16 +153,17 @@ letta/orm/job.py,sha256=PuSaDJlUNYRISgtmzjJFX1744q1cx5gixlSAtiIs19o,2597
|
|
150
153
|
letta/orm/job_messages.py,sha256=SgwaYPYwwAC3dBtl9Xye_TWUl9H_-m95S95TTcfPyOg,1245
|
151
154
|
letta/orm/llm_batch_items.py,sha256=eoB4Vi90GC4FIGQIpv4RYoJtuLFy_14VEGWdW2Wy95U,2756
|
152
155
|
letta/orm/llm_batch_job.py,sha256=LaeOrnNf6FMm6ff2kOCEAjtbSuz4C5KYU5OmM90F1PY,2368
|
153
|
-
letta/orm/
|
156
|
+
letta/orm/mcp_server.py,sha256=m9igzbLmfcnb0xd7Pn4yNpxgx00XER1xSoGznjvCiyk,1896
|
157
|
+
letta/orm/message.py,sha256=N4NumnqWlBEIFV1-lcBzAB_DxrMwLSIDngBJpQt4PuU,4922
|
154
158
|
letta/orm/mixins.py,sha256=9c79Kfr-Z1hL-SDYKeoptx_yMTbBwJJBo9nrKEzSDAc,1622
|
155
|
-
letta/orm/organization.py,sha256=
|
156
|
-
letta/orm/passage.py,sha256=
|
159
|
+
letta/orm/organization.py,sha256=VTeoGU8RHkLKqeN2PW7ztsZSTQgQ7FwnbivQIEilI5U,4201
|
160
|
+
letta/orm/passage.py,sha256=KTnEKr_Wpxlall2KyHcTn4f-InHJ7Id2ebT7zGxouQ8,3701
|
157
161
|
letta/orm/provider.py,sha256=KxIyUijtFapxXsgD86tWCRt1sG0TIETEyqlHEUWB7Fg,1312
|
158
162
|
letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
|
159
|
-
letta/orm/sandbox_config.py,sha256=
|
163
|
+
letta/orm/sandbox_config.py,sha256=zOCvORexDBt16mc6A3U65EI6_2Xe3Roh7k2asLeFMps,4242
|
160
164
|
letta/orm/source.py,sha256=rtehzez80rRrJigXeRBgTlfTZEUy6cVqDizWEN2tvuY,2224
|
161
165
|
letta/orm/sources_agents.py,sha256=Ik_PokCBrXRd9wXWomeNeb8EtLUwjb9VMZ8LWXqpK5A,473
|
162
|
-
letta/orm/sqlalchemy_base.py,sha256=
|
166
|
+
letta/orm/sqlalchemy_base.py,sha256=UYCrOglUxmFQNsKYSjZlTFSxAcYsMzcpYUyMKdVxAG0,42725
|
163
167
|
letta/orm/sqlite_functions.py,sha256=JCScKiRlYCKxy9hChQ8wsk4GMKknZE24MunnG3fM1Gw,4255
|
164
168
|
letta/orm/step.py,sha256=ZIMxDba_5Ca6aUH0GFr35qcVA86PMCzCIfCwd-HD3Do,3354
|
165
169
|
letta/orm/tool.py,sha256=ft3BDA7Pt-zsXLyPvS_Z_Ibis6H6vY20F7Li7p6nPu8,2652
|
@@ -181,7 +185,7 @@ letta/personas/examples/voice_memory_persona.txt,sha256=Dq8mprWLyrGDDYS3wIrBicyM
|
|
181
185
|
letta/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
186
|
letta/prompts/gpt_summarize.py,sha256=sOUKcVrTRbX00yLOZVVhwKgduRRVCY64l80ptOY4Ghg,1125
|
183
187
|
letta/prompts/gpt_system.py,sha256=qH_aR5BSwd8ctvbo_Xynietvtudpf7zLsMWsKUw9V1w,1015
|
184
|
-
letta/prompts/system/memgpt_base.txt,sha256=
|
188
|
+
letta/prompts/system/memgpt_base.txt,sha256=J5BfmLzUpoVEL-Y3mF2DiZHHqZx_7NIiTD5vGDPcvx8,5181
|
185
189
|
letta/prompts/system/memgpt_chat.txt,sha256=2tOfLG89vOxBBD7vYOQhIWardJFJ4tO2VUFYcA0NAZo,5420
|
186
190
|
letta/prompts/system/memgpt_chat_compressed.txt,sha256=_gMDjc8tcigLfJ3fOXryz31_DJxSQM812T3J-aw7x0w,1056
|
187
191
|
letta/prompts/system/memgpt_chat_fstring.txt,sha256=N6KSRwu-dcnDBLpCeqCdgM9lI0CnR3uIVPFcrCCa0V0,4720
|
@@ -195,18 +199,20 @@ letta/prompts/system/memgpt_modified_o1.txt,sha256=objnDgnxpF3-MmU28ZqZ7-TOG8UlH
|
|
195
199
|
letta/prompts/system/memgpt_offline_memory.txt,sha256=rWEJeF-6aiinjkJM9hgLUYCmlEcC_HekYB1bjEUYq6M,2460
|
196
200
|
letta/prompts/system/memgpt_offline_memory_chat.txt,sha256=ituh7gDuio7nC2UKFB7GpBq6crxb8bYedQfJ0ADoPgg,3949
|
197
201
|
letta/prompts/system/memgpt_sleeptime_chat.txt,sha256=ieHvVkJYE_4Z_vyUJS4KImBZCSQDcsUmy9IRF-FBpPE,4712
|
198
|
-
letta/prompts/system/
|
202
|
+
letta/prompts/system/memgpt_v2_chat.txt,sha256=c8n3DfL-brPW0v2rIheeIHULCkEgOWeyLr4KRLCiwR8,4947
|
203
|
+
letta/prompts/system/sleeptime.txt,sha256=qoACziV1KoPk_nJMJHzEkyKQn9v9fmepWozAAixZc4s,3117
|
199
204
|
letta/prompts/system/sleeptime_doc_ingest.txt,sha256=tyzHHzyDA2ib_XRwo5h5Ku9l_f-RSBPDJZrUusrQE80,2783
|
205
|
+
letta/prompts/system/sleeptime_v2.txt,sha256=z-v0OVwKPSw_DF9ltTR2UlpW7hAhqz8ZC4M3yKDDnys,2425
|
200
206
|
letta/prompts/system/voice_chat.txt,sha256=Q_vd2Q08z6qTIVeMML0z9706NG8aAq-scxvi--h5tG4,1853
|
201
207
|
letta/prompts/system/voice_sleeptime.txt,sha256=LPh-XjAthvsdEkXoZ4NTzTUuMbMsMkoDl9ofCUJC7Us,3696
|
202
208
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
203
|
-
letta/schemas/agent.py,sha256=
|
204
|
-
letta/schemas/block.py,sha256=
|
209
|
+
letta/schemas/agent.py,sha256=i0hg-SOX9NRN_1m9mLTZr_O9Rhczrn6SmZs3CkU-394,21037
|
210
|
+
letta/schemas/block.py,sha256=awxCQKxmv4I4k9Au5h-a2RCeSVF54EfWyBQPtHRwuNQ,5585
|
205
211
|
letta/schemas/embedding_config.py,sha256=ufboqW9ctSBJdhwzJRbrGtTzOTwSKfT0LY0mowpr6fs,3398
|
206
212
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
207
213
|
letta/schemas/enums.py,sha256=0xDvvc6wJq2637hjg_DvkSYAgk6hrD8RxCalDoCvROM,1804
|
208
214
|
letta/schemas/environment_variables.py,sha256=VRtzOjdeQdHcSHXisk7oJUQlheruxhSWNS0xqlfGzbs,2429
|
209
|
-
letta/schemas/file.py,sha256=
|
215
|
+
letta/schemas/file.py,sha256=99arX7Q6CbjW0xijXOVK-GyjocEiek33lUP-Tag0w2U,3311
|
210
216
|
letta/schemas/group.py,sha256=0qFbCvE5gbdSAk1oXXT8xWQ02R4mS_jttJm0ASh8eCQ,6415
|
211
217
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
212
218
|
letta/schemas/identity.py,sha256=-6ABqAuz-VfGcAoAX5oVyzpjBiY4jAN-gJUM-PLBQQY,3984
|
@@ -219,24 +225,25 @@ letta/schemas/letta_response.py,sha256=lZ_uCwSmV7g7UCBxNyU_r-FFcXAf6_pBsFqgWJ-Wk
|
|
219
225
|
letta/schemas/llm_batch_job.py,sha256=i8m58-EFF0xGD7cYfu-LRlbvYZwv5y2B14ckmuRQ_IM,2896
|
220
226
|
letta/schemas/llm_config.py,sha256=EswzTtCXDA9xIRJd8Mu5WUe44UCT9bvY2DeDkOGvHx0,8660
|
221
227
|
letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
|
222
|
-
letta/schemas/
|
223
|
-
letta/schemas/
|
228
|
+
letta/schemas/mcp.py,sha256=NNx08oj5WeiewipqlUpSB35rUUrEzIGy_8bVE5E9j4g,3023
|
229
|
+
letta/schemas/memory.py,sha256=n05tOQg5NIUMV1FHFCF-pc5xHCfXaP7f1FRzsEPsvWE,10605
|
230
|
+
letta/schemas/message.py,sha256=Me3kcyzb5perzs8qmGvQUJEywM13KkMc2DuCckmuod0,51824
|
224
231
|
letta/schemas/openai/chat_completion_request.py,sha256=XARKB7717Crt3P2A53eeBZ6hlNJcb9TJHosWwK17tFw,4210
|
225
232
|
letta/schemas/openai/chat_completion_response.py,sha256=f2JZWh5mVz9pk19Iji8EnQD9NKq-sI2SVQkPeZHzzTQ,7067
|
226
233
|
letta/schemas/openai/chat_completions.py,sha256=l0e9sT9boTD5VBU5YtJ0s7qUtCfFGB2K-gQLeEZ2LHU,3599
|
227
234
|
letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNosmLVSuhXYa_xU,357
|
228
|
-
letta/schemas/openai/openai.py,sha256=
|
235
|
+
letta/schemas/openai/openai.py,sha256=i6r9WqLXGy5MbEZVzckilK_V4ticGk_ePrq8I4dMwe4,7848
|
229
236
|
letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
|
230
237
|
letta/schemas/passage.py,sha256=RG0vkaewEu4a_NAZM-FVyMammHjqpPP0RDYAdu27g6A,3723
|
231
238
|
letta/schemas/provider_trace.py,sha256=gsgo1CdfTUFSnm1ep1tSZ0fZfGSx45EdPaVyVJREt_U,1958
|
232
|
-
letta/schemas/providers.py,sha256=
|
239
|
+
letta/schemas/providers.py,sha256=1vK-kwMqP5c4UtrdZYbJ1DGxUh6wXRDcvtdeabNbjqk,64270
|
233
240
|
letta/schemas/response_format.py,sha256=pXNsjbtpA3Tf8HsDyIa40CSmoUbVR_7n2WOfQaX4aFs,2204
|
234
241
|
letta/schemas/run.py,sha256=SRqPRziINIiPunjOhE_NlbnQYgxTvqmbauni_yfBQRA,2085
|
235
242
|
letta/schemas/sandbox_config.py,sha256=Qfkzw422HCQUsE3GKry94oecQGziAzGXIyd6ke8W06M,5985
|
236
243
|
letta/schemas/source.py,sha256=ZDeTjkNp1rKamG7xZzoUHeCptjpW9WNLzAcJ9QQRxlM,3444
|
237
244
|
letta/schemas/step.py,sha256=uw-n55jSc3O_NaqX7p4Xp73NxndAn1Kgs4nkHi9ALDw,2339
|
238
|
-
letta/schemas/tool.py,sha256=
|
239
|
-
letta/schemas/tool_execution_result.py,sha256=
|
245
|
+
letta/schemas/tool.py,sha256=6TLlf7ChPrzblOrgFOwrxRXv0JDd2zuQoBArp02pgp8,13294
|
246
|
+
letta/schemas/tool_execution_result.py,sha256=4P77llsUsZBnRd0PtPiC4VzGjx7i_-fUNgXQfCpMS9U,896
|
240
247
|
letta/schemas/tool_rule.py,sha256=Il0BLY-CHRuTNeH9CayZTHpg0N_Ii8viYV2isZ_HrPU,6327
|
241
248
|
letta/schemas/usage.py,sha256=9SSTH5kUliwiVF14b-yKbDcmxQBOLg4YH5xhXDbW9UU,1281
|
242
249
|
letta/schemas/user.py,sha256=V32Tgl6oqB3KznkxUz12y7agkQicjzW7VocSpj78i6Q,1526
|
@@ -252,44 +259,44 @@ letta/serialize_schemas/marshmallow_tool.py,sha256=jwU69BDCakPlYPSk-ta21kuvsURKO
|
|
252
259
|
letta/serialize_schemas/pydantic_agent_schema.py,sha256=NKq70niUVMI3_lxMKc3u3rOBUhm77bIFaPRj9aidMUQ,3006
|
253
260
|
letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
254
261
|
letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
|
255
|
-
letta/server/db.py,sha256=
|
262
|
+
letta/server/db.py,sha256=NQx1vGu1Gtuzj_wfKBqg_NY4guWz86IH5tZ_ds9iMp8,10722
|
256
263
|
letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
|
257
264
|
letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
|
-
letta/server/rest_api/app.py,sha256=
|
265
|
+
letta/server/rest_api/app.py,sha256=GNUrIuhaftR7t3K35YklXQOxIaEp6wt3gNQsS6u1X08,15555
|
259
266
|
letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
260
267
|
letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
|
261
268
|
letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
|
262
269
|
letta/server/rest_api/chat_completions_interface.py,sha256=-7wO7pNBWXMqblVkJpuZ8JPJ-LjudLTtT6BJu-q_XAM,11138
|
263
|
-
letta/server/rest_api/interface.py,sha256=
|
270
|
+
letta/server/rest_api/interface.py,sha256=1B0OZ1O6sUQqq8jl_5Kcmyz1TPc_AjcXrbroumUrwg4,68919
|
264
271
|
letta/server/rest_api/json_parser.py,sha256=IKG2xFAz_wkLfd3Z-18SKykSzCtUDjdYgTKSKaMqj1I,7813
|
265
272
|
letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
273
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
274
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=QBWab1fn2LXVDMtc6li3gOzmrNzDiUw5WUJsMeeMZII,5076
|
268
275
|
letta/server/rest_api/routers/v1/__init__.py,sha256=JfSSttkEWu0W18NVVDxl8AGnd8Qhj0BXJNxntOB7070,1768
|
269
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
270
|
-
letta/server/rest_api/routers/v1/blocks.py,sha256=
|
271
|
-
letta/server/rest_api/routers/v1/embeddings.py,sha256=
|
272
|
-
letta/server/rest_api/routers/v1/groups.py,sha256=
|
276
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=ZgSq0NzOVmpBcBNRnBWy8ixPMoRaQ-C7I1LdyqIdCTw,43236
|
277
|
+
letta/server/rest_api/routers/v1/blocks.py,sha256=bxezefb92YWkM9mTuamhqq9AQPPRwhKeCejFKJqwD9s,4817
|
278
|
+
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
|
273
280
|
letta/server/rest_api/routers/v1/health.py,sha256=MoOjkydhGcJXTiuJrKIB0etVXiRMdTa51S8RQ8-50DQ,399
|
274
281
|
letta/server/rest_api/routers/v1/identities.py,sha256=bPPjQd_UPMJ-IbBbaVmgwNFfbnBwF8zPGA-j3x2XeeU,7676
|
275
|
-
letta/server/rest_api/routers/v1/jobs.py,sha256=
|
282
|
+
letta/server/rest_api/routers/v1/jobs.py,sha256=Ue-SQ1FrBSsZHbweBNrCNM2RwSnTvyMNNZAxbBmBbwA,2808
|
276
283
|
letta/server/rest_api/routers/v1/llms.py,sha256=0VJuuGW9_ta0cBnSDtXd3Ngw7GjsqEN2NBf5U3b6M3I,1920
|
277
284
|
letta/server/rest_api/routers/v1/messages.py,sha256=z6K6HJlyML7LTqWizz4VU1p0MQJx6eo1BiFHObBizZs,7924
|
278
|
-
letta/server/rest_api/routers/v1/organizations.py,sha256=
|
279
|
-
letta/server/rest_api/routers/v1/providers.py,sha256=
|
280
|
-
letta/server/rest_api/routers/v1/runs.py,sha256=
|
281
|
-
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=
|
282
|
-
letta/server/rest_api/routers/v1/sources.py,sha256=
|
283
|
-
letta/server/rest_api/routers/v1/steps.py,sha256=
|
285
|
+
letta/server/rest_api/routers/v1/organizations.py,sha256=5NEjTOdGKWrfN584jfPpJhAcbTl168RrrDvqjO1_5fM,2927
|
286
|
+
letta/server/rest_api/routers/v1/providers.py,sha256=hnwgLJntM6lEVCEsCZSuWA5XIC0wjIT-JXWsBCiZREE,4446
|
287
|
+
letta/server/rest_api/routers/v1/runs.py,sha256=2-eLb3IPW8KzXlaec53IaVo7Bzw8yhAKce3vuzkRPD8,8907
|
288
|
+
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=pKuy88GD3atrBkKa7VVfKTjg8Y07e1vVtdw4TtxkQBk,8910
|
289
|
+
letta/server/rest_api/routers/v1/sources.py,sha256=FFxlwwaLLlD2SMm4TkB25PgOPDEuAtYkzkC8yMCV4OA,14631
|
290
|
+
letta/server/rest_api/routers/v1/steps.py,sha256=P6pnSRI1ZJesqQdPm9x1bw-j_0UaH_pAtcHXyko8_8Q,3477
|
284
291
|
letta/server/rest_api/routers/v1/tags.py,sha256=ef94QitUSJ3NQVffWF1ZqANUZ2b2jRyGHp_I3UUjhno,912
|
285
292
|
letta/server/rest_api/routers/v1/telemetry.py,sha256=z53BW3Pefi3eWy47FPJyGhFWbZicX9jPJUi5LC5c3sk,790
|
286
|
-
letta/server/rest_api/routers/v1/tools.py,sha256=
|
293
|
+
letta/server/rest_api/routers/v1/tools.py,sha256=XMpKYhJBAoAwbPbXyo0xrRYWYJUYMz8XZZtXXNLsG40,22150
|
287
294
|
letta/server/rest_api/routers/v1/users.py,sha256=a0J3Ad8kWHxi3vUJB5r9K2GmiplSABZXwhA83o8HbpI,2367
|
288
295
|
letta/server/rest_api/routers/v1/voice.py,sha256=NZa7ksEqXTWSqh7CqmbVMClO7wOmrqlRnSqFi6Qh-WM,1949
|
289
296
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
290
297
|
letta/server/rest_api/streaming_response.py,sha256=yYTuZHfuZ-DYYbA1Ta6axkBn5MvC6OHuVRHSiBqRNUk,3939
|
291
|
-
letta/server/rest_api/utils.py,sha256=
|
292
|
-
letta/server/server.py,sha256=
|
298
|
+
letta/server/rest_api/utils.py,sha256=K2L61_5iXQf4hktRLeFxyb8VUE_umAKBT5-ux7bNtkc,17105
|
299
|
+
letta/server/server.py,sha256=FgcRl0P9DpHyaCKcHzOK0UZ_Lp3YPFYx4EeipLRIV5A,110866
|
293
300
|
letta/server/startup.sh,sha256=MRXh1RKbS5lyA7XAsk7O6Q4LEKOqnv5B-dwe0SnTHeQ,2514
|
294
301
|
letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
|
295
302
|
letta/server/static_files/assets/index-0e31b727.css,sha256=SBbja96uiQVLDhDOroHgM6NSl7tS4lpJRCREgSS_hA8,7672
|
@@ -303,51 +310,70 @@ letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRo
|
|
303
310
|
letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
|
304
311
|
letta/server/ws_api/server.py,sha256=cBSzf-V4zT1bL_0i54OTI3cMXhTIIxqjSRF8pYjk7fg,5835
|
305
312
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
306
|
-
letta/services/agent_manager.py,sha256=
|
307
|
-
letta/services/block_manager.py,sha256=
|
308
|
-
letta/services/
|
309
|
-
letta/services/
|
313
|
+
letta/services/agent_manager.py,sha256=kOqJ2svz2lB5J1vM--XRiuyhL4TukkPHGHRK3zTDfjQ,117148
|
314
|
+
letta/services/block_manager.py,sha256=9aGCPnq-DtgOrMg5ghZIRcJRgGOmksCNPVEmiHusV8Y,22735
|
315
|
+
letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
|
+
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
|
318
|
+
letta/services/file_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
|
+
letta/services/file_processor/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
320
|
+
letta/services/file_processor/chunker/llama_index_chunker.py,sha256=_QaWzA57sfgCk6KNMzvvEyNAXEBX26IVU7n4_Usl_S0,843
|
321
|
+
letta/services/file_processor/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
|
+
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
|
324
|
+
letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
325
|
+
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
|
327
|
+
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
|
310
331
|
letta/services/helpers/noop_helper.py,sha256=OZ6wZLsdNEAg9Q2t5oFTOMK6jp-YUMBPdoyiR8M3T1c,272
|
311
|
-
letta/services/helpers/tool_execution_helper.py,sha256=
|
312
|
-
letta/services/
|
313
|
-
letta/services/
|
332
|
+
letta/services/helpers/tool_execution_helper.py,sha256=cf_XHbJYAGNn2t1iflO6QhzPfbFkr1miFJQar-NSpR0,7764
|
333
|
+
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
|
314
336
|
letta/services/llm_batch_manager.py,sha256=tb1VtMQIwiXU7vsCy8vRKWShUwnHICvcajmubEr6IiM,20811
|
315
337
|
letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
|
-
letta/services/mcp/base_client.py,sha256=
|
317
|
-
letta/services/mcp/sse_client.py,sha256=
|
318
|
-
letta/services/mcp/stdio_client.py,sha256=
|
338
|
+
letta/services/mcp/base_client.py,sha256=0XC9ywajuW7SsJmMR1TOlrPcC4F0d7OsazWBz0k0P6s,2643
|
339
|
+
letta/services/mcp/sse_client.py,sha256=uTIrwhZVhBiCHLYw5nNvjT5fm2AyYRzXmAPLv4wQWgc,942
|
340
|
+
letta/services/mcp/stdio_client.py,sha256=JXXARREZb2VY1Ff7GaZpx3Onk6solEIjC0zXyTQVb54,855
|
319
341
|
letta/services/mcp/types.py,sha256=nmcnQn2EpxXzXg5_pWPsHZobfxO6OucaUgz1bVvam7o,1411
|
320
|
-
letta/services/
|
321
|
-
letta/services/
|
322
|
-
letta/services/
|
342
|
+
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
|
323
346
|
letta/services/per_agent_lock_manager.py,sha256=9CVr8PeRm4qaPs61mfHhQYe0rtbXINoFXmWeNeN3jaQ,622
|
324
|
-
letta/services/provider_manager.py,sha256=
|
325
|
-
letta/services/sandbox_config_manager.py,sha256=
|
326
|
-
letta/services/source_manager.py,sha256=
|
327
|
-
letta/services/step_manager.py,sha256=
|
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
|
328
351
|
letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
329
352
|
letta/services/summarizer/enums.py,sha256=szzPX2OBRRJEZsBTGYQThrNz02ELFqhuLwvOR7ozi7A,208
|
330
|
-
letta/services/summarizer/summarizer.py,sha256=
|
331
|
-
letta/services/telemetry_manager.py,sha256=
|
353
|
+
letta/services/summarizer/summarizer.py,sha256=sDioPf_STAG0a3-CcteZbsGpbGNT9u5Jv3IpaRld1Xk,9270
|
354
|
+
letta/services/telemetry_manager.py,sha256=i8CM33Q5R2gKTrWMW6eTHmgOZGU7PBkq49x2sou6ShM,3120
|
332
355
|
letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
333
|
-
letta/services/tool_executor/tool_execution_manager.py,sha256=
|
334
|
-
letta/services/tool_executor/tool_execution_sandbox.py,sha256=
|
335
|
-
letta/services/tool_executor/tool_executor.py,sha256=
|
336
|
-
letta/services/tool_manager.py,sha256=
|
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
|
337
360
|
letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
|
-
letta/services/tool_sandbox/base.py,sha256=
|
339
|
-
letta/services/tool_sandbox/e2b_sandbox.py,sha256=
|
340
|
-
letta/services/tool_sandbox/local_sandbox.py,sha256=
|
341
|
-
letta/services/user_manager.py,sha256=
|
342
|
-
letta/settings.py,sha256=
|
361
|
+
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
|
343
366
|
letta/streaming_interface.py,sha256=c-T7zoMTXGXFwDWJJXrv7UypeMPXwPOmNHeuuh0b9zk,16398
|
344
367
|
letta/streaming_utils.py,sha256=jLqFTVhUL76FeOuYk8TaRQHmPTf3HSRc2EoJwxJNK6U,11946
|
345
368
|
letta/system.py,sha256=mKxmvvekuP8mdgsebRINGBoFbUdJhxLJ260crPBNVyk,8386
|
346
|
-
letta/
|
347
|
-
letta/
|
348
|
-
letta/
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
letta_nightly-0.
|
353
|
-
letta_nightly-0.
|
369
|
+
letta/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
370
|
+
letta/templates/sandbox_code_file.py.j2,sha256=zgzaboDZVtM15XkxILnhiKisF7DSUoI2YpfK2xF2WB0,1379
|
371
|
+
letta/templates/template_helper.py,sha256=uHWO1PukgMoIIvgqQdPyHq3o3CQ6mcjUjTGvx9VLGkk,409
|
372
|
+
letta/tracing.py,sha256=IHgGiwUDZPbFxWLZs0bNKS4Xoc6_YJvB6AeuzGfMMbA,9439
|
373
|
+
letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
|
374
|
+
letta/utils.py,sha256=_QpvNXyH641Ic2dY9VDFYyJCUKNdPt724_mCd0lu-eU,33075
|
375
|
+
letta_nightly-0.8.0.dev20250604104349.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
376
|
+
letta_nightly-0.8.0.dev20250604104349.dist-info/METADATA,sha256=-pYafv3FucfOxt4Ssf4IpYd2cjP6IfaAcTIxyaXPhBg,22692
|
377
|
+
letta_nightly-0.8.0.dev20250604104349.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
378
|
+
letta_nightly-0.8.0.dev20250604104349.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
379
|
+
letta_nightly-0.8.0.dev20250604104349.dist-info/RECORD,,
|
File without changes
|
File without changes
|