letta-nightly 0.12.1.dev20251024104217__py3-none-any.whl → 0.13.0.dev20251025104015__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.
Potentially problematic release.
This version of letta-nightly might be problematic. Click here for more details.
- letta/__init__.py +2 -3
- letta/adapters/letta_llm_adapter.py +1 -0
- letta/adapters/simple_llm_request_adapter.py +8 -5
- letta/adapters/simple_llm_stream_adapter.py +22 -6
- letta/agents/agent_loop.py +10 -3
- letta/agents/base_agent.py +4 -1
- letta/agents/helpers.py +41 -9
- letta/agents/letta_agent.py +11 -10
- letta/agents/letta_agent_v2.py +47 -37
- letta/agents/letta_agent_v3.py +395 -300
- letta/agents/voice_agent.py +8 -6
- letta/agents/voice_sleeptime_agent.py +3 -3
- letta/constants.py +30 -7
- letta/errors.py +20 -0
- letta/functions/function_sets/base.py +55 -3
- letta/functions/mcp_client/types.py +33 -57
- letta/functions/schema_generator.py +135 -23
- letta/groups/sleeptime_multi_agent_v3.py +6 -11
- letta/groups/sleeptime_multi_agent_v4.py +227 -0
- letta/helpers/converters.py +78 -4
- letta/helpers/crypto_utils.py +6 -2
- letta/interfaces/anthropic_parallel_tool_call_streaming_interface.py +9 -11
- letta/interfaces/anthropic_streaming_interface.py +3 -4
- letta/interfaces/gemini_streaming_interface.py +4 -6
- letta/interfaces/openai_streaming_interface.py +63 -28
- letta/llm_api/anthropic_client.py +7 -4
- letta/llm_api/deepseek_client.py +6 -4
- letta/llm_api/google_ai_client.py +3 -12
- letta/llm_api/google_vertex_client.py +1 -1
- letta/llm_api/helpers.py +90 -61
- letta/llm_api/llm_api_tools.py +4 -1
- letta/llm_api/openai.py +12 -12
- letta/llm_api/openai_client.py +53 -16
- letta/local_llm/constants.py +4 -3
- letta/local_llm/json_parser.py +5 -2
- letta/local_llm/utils.py +2 -3
- letta/log.py +171 -7
- letta/orm/agent.py +43 -9
- letta/orm/archive.py +4 -0
- letta/orm/custom_columns.py +15 -0
- letta/orm/identity.py +11 -11
- letta/orm/mcp_server.py +9 -0
- letta/orm/message.py +6 -1
- letta/orm/run_metrics.py +7 -2
- letta/orm/sqlalchemy_base.py +2 -2
- letta/orm/tool.py +3 -0
- letta/otel/tracing.py +2 -0
- letta/prompts/prompt_generator.py +7 -2
- letta/schemas/agent.py +41 -10
- letta/schemas/agent_file.py +3 -0
- letta/schemas/archive.py +4 -2
- letta/schemas/block.py +2 -1
- letta/schemas/enums.py +36 -3
- letta/schemas/file.py +3 -3
- letta/schemas/folder.py +2 -1
- letta/schemas/group.py +2 -1
- letta/schemas/identity.py +18 -9
- letta/schemas/job.py +3 -1
- letta/schemas/letta_message.py +71 -12
- letta/schemas/letta_request.py +7 -3
- letta/schemas/letta_stop_reason.py +0 -25
- letta/schemas/llm_config.py +8 -2
- letta/schemas/mcp.py +80 -83
- letta/schemas/mcp_server.py +349 -0
- letta/schemas/memory.py +20 -8
- letta/schemas/message.py +212 -67
- letta/schemas/providers/anthropic.py +13 -6
- letta/schemas/providers/azure.py +6 -4
- letta/schemas/providers/base.py +8 -4
- letta/schemas/providers/bedrock.py +6 -2
- letta/schemas/providers/cerebras.py +7 -3
- letta/schemas/providers/deepseek.py +2 -1
- letta/schemas/providers/google_gemini.py +15 -6
- letta/schemas/providers/groq.py +2 -1
- letta/schemas/providers/lmstudio.py +9 -6
- letta/schemas/providers/mistral.py +2 -1
- letta/schemas/providers/openai.py +7 -2
- letta/schemas/providers/together.py +9 -3
- letta/schemas/providers/xai.py +7 -3
- letta/schemas/run.py +7 -2
- letta/schemas/run_metrics.py +2 -1
- letta/schemas/sandbox_config.py +2 -2
- letta/schemas/secret.py +3 -158
- letta/schemas/source.py +2 -2
- letta/schemas/step.py +2 -2
- letta/schemas/tool.py +24 -1
- letta/schemas/usage.py +0 -1
- letta/server/rest_api/app.py +123 -7
- letta/server/rest_api/dependencies.py +3 -0
- letta/server/rest_api/interface.py +7 -4
- letta/server/rest_api/redis_stream_manager.py +16 -1
- letta/server/rest_api/routers/v1/__init__.py +7 -0
- letta/server/rest_api/routers/v1/agents.py +332 -322
- letta/server/rest_api/routers/v1/archives.py +127 -40
- letta/server/rest_api/routers/v1/blocks.py +54 -6
- letta/server/rest_api/routers/v1/chat_completions.py +146 -0
- letta/server/rest_api/routers/v1/folders.py +27 -35
- letta/server/rest_api/routers/v1/groups.py +23 -35
- letta/server/rest_api/routers/v1/identities.py +24 -10
- letta/server/rest_api/routers/v1/internal_runs.py +107 -0
- letta/server/rest_api/routers/v1/internal_templates.py +162 -179
- letta/server/rest_api/routers/v1/jobs.py +15 -27
- letta/server/rest_api/routers/v1/mcp_servers.py +309 -0
- letta/server/rest_api/routers/v1/messages.py +23 -34
- letta/server/rest_api/routers/v1/organizations.py +6 -27
- letta/server/rest_api/routers/v1/providers.py +35 -62
- letta/server/rest_api/routers/v1/runs.py +30 -43
- letta/server/rest_api/routers/v1/sandbox_configs.py +6 -4
- letta/server/rest_api/routers/v1/sources.py +26 -42
- letta/server/rest_api/routers/v1/steps.py +16 -29
- letta/server/rest_api/routers/v1/tools.py +17 -13
- letta/server/rest_api/routers/v1/users.py +5 -17
- letta/server/rest_api/routers/v1/voice.py +18 -27
- letta/server/rest_api/streaming_response.py +5 -2
- letta/server/rest_api/utils.py +187 -25
- letta/server/server.py +27 -22
- letta/server/ws_api/server.py +5 -4
- letta/services/agent_manager.py +148 -26
- letta/services/agent_serialization_manager.py +6 -1
- letta/services/archive_manager.py +168 -15
- letta/services/block_manager.py +14 -4
- letta/services/file_manager.py +33 -29
- letta/services/group_manager.py +10 -0
- letta/services/helpers/agent_manager_helper.py +65 -11
- letta/services/identity_manager.py +105 -4
- letta/services/job_manager.py +11 -1
- letta/services/mcp/base_client.py +2 -2
- letta/services/mcp/oauth_utils.py +33 -8
- letta/services/mcp_manager.py +174 -78
- letta/services/mcp_server_manager.py +1331 -0
- letta/services/message_manager.py +109 -4
- letta/services/organization_manager.py +4 -4
- letta/services/passage_manager.py +9 -25
- letta/services/provider_manager.py +91 -15
- letta/services/run_manager.py +72 -15
- letta/services/sandbox_config_manager.py +45 -3
- letta/services/source_manager.py +15 -8
- letta/services/step_manager.py +24 -1
- letta/services/streaming_service.py +581 -0
- letta/services/summarizer/summarizer.py +1 -1
- letta/services/tool_executor/core_tool_executor.py +111 -0
- letta/services/tool_executor/files_tool_executor.py +5 -3
- letta/services/tool_executor/sandbox_tool_executor.py +2 -2
- letta/services/tool_executor/tool_execution_manager.py +1 -1
- letta/services/tool_manager.py +10 -3
- letta/services/tool_sandbox/base.py +61 -1
- letta/services/tool_sandbox/local_sandbox.py +1 -3
- letta/services/user_manager.py +2 -2
- letta/settings.py +49 -5
- letta/system.py +14 -5
- letta/utils.py +73 -1
- letta/validators.py +105 -0
- {letta_nightly-0.12.1.dev20251024104217.dist-info → letta_nightly-0.13.0.dev20251025104015.dist-info}/METADATA +4 -2
- {letta_nightly-0.12.1.dev20251024104217.dist-info → letta_nightly-0.13.0.dev20251025104015.dist-info}/RECORD +157 -151
- letta/schemas/letta_ping.py +0 -28
- letta/server/rest_api/routers/openai/chat_completions/__init__.py +0 -0
- {letta_nightly-0.12.1.dev20251024104217.dist-info → letta_nightly-0.13.0.dev20251025104015.dist-info}/WHEEL +0 -0
- {letta_nightly-0.12.1.dev20251024104217.dist-info → letta_nightly-0.13.0.dev20251025104015.dist-info}/entry_points.txt +0 -0
- {letta_nightly-0.12.1.dev20251024104217.dist-info → letta_nightly-0.13.0.dev20251025104015.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,39 +1,40 @@
|
|
|
1
|
-
letta/__init__.py,sha256=
|
|
1
|
+
letta/__init__.py,sha256=HcDbiLHYDWu149kxKE_MBrkfkx10jZjoN0k7_wDuaLo,1584
|
|
2
2
|
letta/agent.py,sha256=xP13DDysFq-h3Ny7DiTN5ZC2txRripMNvPFt8dfFDbE,89498
|
|
3
3
|
letta/config.py,sha256=JFGY4TWW0Wm5fTbZamOwWqk5G8Nn-TXyhgByGoAqy2c,12375
|
|
4
|
-
letta/constants.py,sha256=
|
|
4
|
+
letta/constants.py,sha256=N2Gb5R2s3ahlWQbOPvAzqaWoNJRTzxKjMlydsDvNvqI,17018
|
|
5
5
|
letta/database_utils.py,sha256=D0lIbOkUQDBd2cJL1bmepyrsD5Rl29ZZLMkwnB7z8o0,4492
|
|
6
6
|
letta/embeddings.py,sha256=d2o1nOVTaofBk6j-WwsE0_ugvxa1nIOcceqGuJ4w_pc,2045
|
|
7
|
-
letta/errors.py,sha256=
|
|
7
|
+
letta/errors.py,sha256=9xBn78BV400nma7r_NDodTScRh3POFNKemJSkJGFDkQ,12234
|
|
8
8
|
letta/interface.py,sha256=kYOTv1xhNWcoL9qP7cs8hGp9gKBimcBmqIhCUeoil18,13026
|
|
9
|
-
letta/log.py,sha256
|
|
9
|
+
letta/log.py,sha256=UEB-7K_QqO_kQ_8eKhpiqNCDQg7iQjXe-4f1u-UDw8E,8637
|
|
10
10
|
letta/main.py,sha256=A0e4EXoW9XdlCzJ8EyMQaukjNhu_8XI0_FIiwyHTENM,458
|
|
11
11
|
letta/memory.py,sha256=xE1gAm99_PN0mWi4EL5CEIE95y9XFD4G0rHKTkO17-w,4325
|
|
12
12
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
letta/settings.py,sha256=
|
|
13
|
+
letta/settings.py,sha256=LXetAlkYBEuAaWv3LDXOuvdJoThmAQ_SAmaxIRO0KZc,18328
|
|
14
14
|
letta/streaming_interface.py,sha256=rPMfwUcjqITWk2tVqFQm1hmP99tU2IOHg9gU2dgPSo8,16400
|
|
15
15
|
letta/streaming_utils.py,sha256=ZRFGFpQqn9ujCEbgZdLM7yTjiuNNvqQ47sNhV8ix-yQ,16553
|
|
16
|
-
letta/system.py,sha256=
|
|
17
|
-
letta/utils.py,sha256=
|
|
18
|
-
letta/
|
|
16
|
+
letta/system.py,sha256=kXPH-LYltXHJpBF8QtYcj00u0TV3Ua1XNhXUlcuU-uM,9293
|
|
17
|
+
letta/utils.py,sha256=9FMr_cPOyi5x7WTVnWPJVfRxuJ8UPEYqLozqgJ98LcU,45647
|
|
18
|
+
letta/validators.py,sha256=6Dp7H18jSEDPzA03roJn9pATB1FL96DyweOMCL3rPUQ,4516
|
|
19
|
+
letta/adapters/letta_llm_adapter.py,sha256=mfKiUcCw69bnRZ2Ch2NQRg7CWK0QMlTLFpa7UuWwSW8,3572
|
|
19
20
|
letta/adapters/letta_llm_request_adapter.py,sha256=ApEaMOkvtH5l09NvVgm0r2qaqTnGSqwVqAFA7n5N1HA,4757
|
|
20
21
|
letta/adapters/letta_llm_stream_adapter.py,sha256=p31xPQ-pU4SYPImlC6frl3cnVltSdCzO-NDD2Q7W8L0,7859
|
|
21
|
-
letta/adapters/simple_llm_request_adapter.py,sha256=
|
|
22
|
-
letta/adapters/simple_llm_stream_adapter.py,sha256=
|
|
22
|
+
letta/adapters/simple_llm_request_adapter.py,sha256=HzPkLEVQ2ui_4qOi8ZEU-MERxdH-JJAD3OR-khxoTiQ,3827
|
|
23
|
+
letta/adapters/simple_llm_stream_adapter.py,sha256=Esh7rf3z3vgzjxuL8u6OHL13KbmaBLKJOGyZ_EYAovM,9574
|
|
23
24
|
letta/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
letta/agents/agent_loop.py,sha256=
|
|
25
|
-
letta/agents/base_agent.py,sha256=
|
|
25
|
+
letta/agents/agent_loop.py,sha256=cSCHA8C__yqPP6v2cF5-_aYiVbjzoBASxrlcKHx0ieg,1436
|
|
26
|
+
letta/agents/base_agent.py,sha256=nyepUrfuss3jiZbYGD5ZJUidMGqDQgJaXdu3tKZywrI,8602
|
|
26
27
|
letta/agents/base_agent_v2.py,sha256=t7XtUv3RZNvKwk1uqmSKxAV_2ZGSXYektlzyhXB3N-M,2558
|
|
27
28
|
letta/agents/ephemeral_agent.py,sha256=el-SUF_16vv_7OouIR-6z0pAE9Yc0PLibygvfCKwqfo,2736
|
|
28
29
|
letta/agents/ephemeral_summary_agent.py,sha256=ncR6Llvv6D5HUdGlSecWkLRZA6j9F1tGLukuOxq_dAI,4521
|
|
29
30
|
letta/agents/exceptions.py,sha256=BQY4D4w32OYHM63CM19ko7dPwZiAzUs3NbKvzmCTcJg,318
|
|
30
|
-
letta/agents/helpers.py,sha256=
|
|
31
|
-
letta/agents/letta_agent.py,sha256=
|
|
31
|
+
letta/agents/helpers.py,sha256=p50RU_zXs0Xejiqjc3sSrDgAnoUizwUBieFTicfo4kU,18339
|
|
32
|
+
letta/agents/letta_agent.py,sha256=SJu7Ydwy8Bb_DYfd08XOXK_d2_uPb9GIV566Eb5cHDI,98308
|
|
32
33
|
letta/agents/letta_agent_batch.py,sha256=NizNeIHvFtG4XpZCIplOSF8GohwHvNEkAUvsFBSdtSs,27950
|
|
33
|
-
letta/agents/letta_agent_v2.py,sha256=
|
|
34
|
-
letta/agents/letta_agent_v3.py,sha256=
|
|
35
|
-
letta/agents/voice_agent.py,sha256=
|
|
36
|
-
letta/agents/voice_sleeptime_agent.py,sha256=
|
|
34
|
+
letta/agents/letta_agent_v2.py,sha256=ogawoc8iiFOTKgkzrevDySQmPhPyrIE8DWZCSptneeM,60687
|
|
35
|
+
letta/agents/letta_agent_v3.py,sha256=BNmdqA1ndJqo_mEISTP4RZe2Mat0tU71ThN1UQNaLU4,51486
|
|
36
|
+
letta/agents/voice_agent.py,sha256=4xhg4zU_2kTIC_WHe5cq5XP1JJ_PLmB2qPViq4iFuUI,23299
|
|
37
|
+
letta/agents/voice_sleeptime_agent.py,sha256=9TyvhrqcmfCJFHQZCoYfkU1S9eRyTnHsFPm4Jq91xaA,8675
|
|
37
38
|
letta/cli/cli.py,sha256=tKtghlX36Rp0_HbkMosvlAapL07JXhA0vKLGTNKnxSQ,1615
|
|
38
39
|
letta/cli/cli_load.py,sha256=paAyDq6e-8D1ZWo8JvXIiA1N7FeKcQMSWgcr2vU_1Gs,319
|
|
39
40
|
letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -51,29 +52,30 @@ letta/functions/functions.py,sha256=bSYEcUPzbKXx6IztZkE1o7O7zuhFgbLzKSG5SuP8JVk,
|
|
|
51
52
|
letta/functions/helpers.py,sha256=ON3iVUZ4qfRxBDaSGFC-_EmW_E7JegScXAg1VxtSj4k,25280
|
|
52
53
|
letta/functions/interface.py,sha256=pN1gpDnLISW44gRcic1IX6I6pDwOT9UbkST_4ICuMvQ,2936
|
|
53
54
|
letta/functions/prompts.py,sha256=jNl83xjNpoSs8KzGtuc6jzN8jp_T4BC_5f4FMJ88_K0,1145
|
|
54
|
-
letta/functions/schema_generator.py,sha256=
|
|
55
|
+
letta/functions/schema_generator.py,sha256=NYVGtc9tW5CdqSEB9Z5Yb4l4xb4t3vHmRZBYYh1oSVM,38440
|
|
55
56
|
letta/functions/schema_validator.py,sha256=DnfyoYZxBqURtfVvJsvVkTGcAFtesod43JszQkKdhGM,8308
|
|
56
57
|
letta/functions/types.py,sha256=PEcdWtY7zb9uOm83-SvPKnVfAbUA_7E9gbOoZJn6_pI,741
|
|
57
58
|
letta/functions/typescript_parser.py,sha256=N-eSaUm8dCc53NwcK8KJOBqGnqSROl3JfTfHLovCut8,6571
|
|
58
|
-
letta/functions/function_sets/base.py,sha256=
|
|
59
|
+
letta/functions/function_sets/base.py,sha256=qmOf3e5XlpXbupKzLiQ4KAXCgrmDZY9-tY6i3DZQhvU,26660
|
|
59
60
|
letta/functions/function_sets/builtin.py,sha256=32HCd7J5meNFBq8d2mrQGVUbMaojKvAJFZsTVjMfh9A,3300
|
|
60
61
|
letta/functions/function_sets/extras.py,sha256=mG7jCd2RUsf1w9G8mVcv26twJWpiDhbWI6VvnLZoEOk,4899
|
|
61
62
|
letta/functions/function_sets/files.py,sha256=b2Io2njvZPY8MDQD6heTN0XfwQgnEdEDAHLVcYKBwNY,4450
|
|
62
63
|
letta/functions/function_sets/multi_agent.py,sha256=uMyOpwzToJh3mUWrSiiXIlRRX1t0tVSlhYpFRql72no,6979
|
|
63
64
|
letta/functions/function_sets/voice.py,sha256=_gmFEj3fSFb-4eMM-ddSOm-Vk1ShIVjpchZI7MQKwSA,3191
|
|
64
65
|
letta/functions/mcp_client/exceptions.py,sha256=IE5SLCuMK7hK9V1QsJafPo6u0S0OwqRvMx2NcsE3g3c,313
|
|
65
|
-
letta/functions/mcp_client/types.py,sha256=
|
|
66
|
+
letta/functions/mcp_client/types.py,sha256=Pk9dc6pWLBg9qnkcCBQc7sUo95A-8PSeCZass23jH2M,10246
|
|
66
67
|
letta/groups/dynamic_multi_agent.py,sha256=QW7f9KntXYpQVvPb9xnJEP-nsqOKxFS6bUWZN65Xpqk,12377
|
|
67
68
|
letta/groups/helpers.py,sha256=A_ap_vVwSsW1jEk1Dp2xtpRP-UohRHaS0HcECcotHmE,4632
|
|
68
69
|
letta/groups/round_robin_multi_agent.py,sha256=B_9BrbsIx3szoiVVUjAGnki7yo3eZkSYbs9hwUZqR-8,7050
|
|
69
70
|
letta/groups/sleeptime_multi_agent.py,sha256=SXojuNW-aXS96x32hbL7LO8Svy46XNBRyiD4jse75HE,10512
|
|
70
71
|
letta/groups/sleeptime_multi_agent_v2.py,sha256=IEIBD9VXMJlIHmKRrRbv6S0FoPDXNkz-mMY_mZStzSw,13822
|
|
71
|
-
letta/groups/sleeptime_multi_agent_v3.py,sha256=
|
|
72
|
+
letta/groups/sleeptime_multi_agent_v3.py,sha256=PAlB1adczXjpkEWyUEoHny0g_8G9dDtcfaC7o2BVMug,8875
|
|
73
|
+
letta/groups/sleeptime_multi_agent_v4.py,sha256=Vs7FJJHK8pMV3YQ5Bmzi9bN_0Vw71NOWwp4finRRbqA,8846
|
|
72
74
|
letta/groups/supervisor_multi_agent.py,sha256=KUJHSw5wO6ONW195UD_c5JAHpAdBD5HXjlqyZ1hv19k,4594
|
|
73
75
|
letta/helpers/__init__.py,sha256=p0luQ1Oe3Skc6sH4O58aHHA3Qbkyjifpuq0DZ1GAY0U,59
|
|
74
76
|
letta/helpers/composio_helpers.py,sha256=X3RaJSqa8z-oXmHJjJjAs1fJroZ5A8yu4-Yg2oDiTdA,1712
|
|
75
|
-
letta/helpers/converters.py,sha256=
|
|
76
|
-
letta/helpers/crypto_utils.py,sha256=
|
|
77
|
+
letta/helpers/converters.py,sha256=RZ9ij8uxsXeu161npdx3NLT4z1r3DiRUZKOYrbkH1Vk,19760
|
|
78
|
+
letta/helpers/crypto_utils.py,sha256=xGjti2Y2a6diQ8RC9LgOD8HDYEfMIHVw6KuOO7KO8kI,5140
|
|
77
79
|
letta/helpers/datetime_helpers.py,sha256=d72h4YTA2vZoNh48_T3RUfYKlN_0RrqPTgdXGqMRDdM,4564
|
|
78
80
|
letta/helpers/decorators.py,sha256=KbYLW0RdTnBaXlXFq-Dw3G-PNTGKywfFLMcEOYHLcPA,5889
|
|
79
81
|
letta/helpers/json_helpers.py,sha256=aaNQey5rPv8Loyg1Bv36RJL5GL5ttZve3Mjsc8QkYSI,730
|
|
@@ -88,11 +90,11 @@ letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
88
90
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
|
89
91
|
letta/humans/examples/cs_phd.txt,sha256=9C9ZAV_VuG7GB31ksy3-_NAyk8rjE6YtVOkhp08k1xw,297
|
|
90
92
|
letta/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
letta/interfaces/anthropic_parallel_tool_call_streaming_interface.py,sha256=
|
|
92
|
-
letta/interfaces/anthropic_streaming_interface.py,sha256=
|
|
93
|
-
letta/interfaces/gemini_streaming_interface.py,sha256=
|
|
93
|
+
letta/interfaces/anthropic_parallel_tool_call_streaming_interface.py,sha256=CfIZ20NJjQ2TdMJ7pzNEUx8K3X3_ZDGCfr_xnIyuTss,21887
|
|
94
|
+
letta/interfaces/anthropic_streaming_interface.py,sha256=lFOmHGSgcJ8uvzUqL2VZOxNCVEXkcZSNflb4HuNHLJU,44650
|
|
95
|
+
letta/interfaces/gemini_streaming_interface.py,sha256=C3XE_fIDbmHcgUILLL5gcjquHoovzL3QOCOXE6hYGeE,12278
|
|
94
96
|
letta/interfaces/openai_chat_completions_streaming_interface.py,sha256=3xHXh8cW79EkiMUTYfvcH_s92nkLjxXfvtVOVC3bfLo,5050
|
|
95
|
-
letta/interfaces/openai_streaming_interface.py,sha256=
|
|
97
|
+
letta/interfaces/openai_streaming_interface.py,sha256=JyptElKU06ln1BhIZX6pboeUv9oI43kIvzz3cWaJqRI,78275
|
|
96
98
|
letta/interfaces/utils.py,sha256=c6jvO0dBYHh8DQnlN-B0qeNC64d3CSunhfqlFA4pJTY,278
|
|
97
99
|
letta/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
100
|
letta/jobs/helpers.py,sha256=kO4aj954xsQ1RAmkjY6LQQ7JEIGuhaxB1e9pzrYKHAY,914
|
|
@@ -100,21 +102,21 @@ letta/jobs/llm_batch_job_polling.py,sha256=HUCTa1lTOiLAB_8m95RUfeNJa4lxlF8paGdCV
|
|
|
100
102
|
letta/jobs/scheduler.py,sha256=Ub5VTCA8P5C9Y-0mPK2YIPJSEzKbSd2l5Sp0sOWctD8,8697
|
|
101
103
|
letta/jobs/types.py,sha256=K8GKEnqEgAT6Kq4F2hUrBC4ZAFM9OkfOjVMStzxKuXQ,742
|
|
102
104
|
letta/llm_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
letta/llm_api/anthropic_client.py,sha256=
|
|
105
|
+
letta/llm_api/anthropic_client.py,sha256=x1MvM6e-jFmEyfV_HsmmXX28mYH1JhFoqVWGLOWpwxg,43565
|
|
104
106
|
letta/llm_api/azure_client.py,sha256=BeChGsH4brrSgZBbCf8UE5RkW-3ZughpKnsBY2VYxwI,3841
|
|
105
107
|
letta/llm_api/bedrock_client.py,sha256=xB01zdk1bzzf0ExkPcWcuxuLb1GXaJglvgRMYP2zai4,3572
|
|
106
|
-
letta/llm_api/deepseek_client.py,sha256=
|
|
107
|
-
letta/llm_api/google_ai_client.py,sha256=
|
|
108
|
+
letta/llm_api/deepseek_client.py,sha256=LlmlfcMhfy2lqAzl7vf1KCB39irRxbBOuaavnE3kAuo,17249
|
|
109
|
+
letta/llm_api/google_ai_client.py,sha256=whFvP8kvPUBNzHGmpVdWGpgeE5pF4G6ziQMrIk57hEQ,7830
|
|
108
110
|
letta/llm_api/google_constants.py,sha256=eOjOv-FImyJ4b4QGIaod-mEROMtrBFz0yhuYHqOEkwY,797
|
|
109
|
-
letta/llm_api/google_vertex_client.py,sha256=
|
|
111
|
+
letta/llm_api/google_vertex_client.py,sha256=NJnpZQl3EP-NDBTN7bZDQt2S5Oo6BNfPxF3cbpP98K8,39525
|
|
110
112
|
letta/llm_api/groq_client.py,sha256=C34aWj2fv5A9AG_BKLdz-pXcvPQ6zf38f28EXkTtCjY,3361
|
|
111
|
-
letta/llm_api/helpers.py,sha256=
|
|
112
|
-
letta/llm_api/llm_api_tools.py,sha256=
|
|
113
|
+
letta/llm_api/helpers.py,sha256=GVUWBv3N1PYDi1m4GvKykQIcUCJAPjVUmYRC9XHmPTQ,18874
|
|
114
|
+
letta/llm_api/llm_api_tools.py,sha256=AMF4q-eZsuT9aAkjPJmhiNFTxAEKIHjZZuvhfxQihWA,12747
|
|
113
115
|
letta/llm_api/llm_client.py,sha256=iXiPbrhluP2DBczv9nkFlAXdwWGOkg0lNDA9LzLrG4o,3606
|
|
114
116
|
letta/llm_api/llm_client_base.py,sha256=31I1ancGiAaNBRMGbVkaBDgJ0Tu1cc0XLlTnjUllqbM,10085
|
|
115
117
|
letta/llm_api/mistral.py,sha256=ruOTBt07Uzx7S30_eXhedVWngtpjtlzG6Ox1Iw0_mQs,662
|
|
116
|
-
letta/llm_api/openai.py,sha256=
|
|
117
|
-
letta/llm_api/openai_client.py,sha256=
|
|
118
|
+
letta/llm_api/openai.py,sha256=Z8g0CInrLroJ9g8V7NyVmYiO7O4_XdpKiZFvpoPaRgM,28765
|
|
119
|
+
letta/llm_api/openai_client.py,sha256=_w7LAbPzpxkUR39RMLI5hKT8oqz14wD2TXiZDf1bsyE,44397
|
|
118
120
|
letta/llm_api/together_client.py,sha256=HeDMDDa525yfDTKciODDfX_t93QBfFmX0n2P-FT1QTU,2284
|
|
119
121
|
letta/llm_api/xai_client.py,sha256=_hlZrNeGy86hix-vTUcDe_3TrVnn6wSBHv1tI2YtGAQ,3941
|
|
120
122
|
letta/llm_api/sample_response_jsons/aws_bedrock.json,sha256=RS3VqyxPB9hQQCPm42hWoga0bisKv_0e8ZF-c3Ag1FA,930
|
|
@@ -123,10 +125,10 @@ letta/llm_api/sample_response_jsons/lmstudio_model_list.json,sha256=hrW4RifD5nty
|
|
|
123
125
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
|
124
126
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
127
|
letta/local_llm/chat_completion_proxy.py,sha256=_iq6SkCUUk8mCVFswFumvEecMHquHPbeFo4yBsSNdb4,13932
|
|
126
|
-
letta/local_llm/constants.py,sha256=
|
|
128
|
+
letta/local_llm/constants.py,sha256=VnSorBXd73MUvdQRCa79CO4mF1Sl4qBY6PuXWRwhJXk,840
|
|
127
129
|
letta/local_llm/function_parser.py,sha256=QOCp-ipk88VnKJ17h_-oP8_AR3o5QDt4tEd5QTn2P0o,2622
|
|
128
|
-
letta/local_llm/json_parser.py,sha256=
|
|
129
|
-
letta/local_llm/utils.py,sha256=
|
|
130
|
+
letta/local_llm/json_parser.py,sha256=_Tb7q8RwImaNZ90L6r2NVNInEAP4FG8yYWI_Y41MNng,7911
|
|
131
|
+
letta/local_llm/utils.py,sha256=0qvSMLf1LrxqFKHP6c4do8D1l28DEJTHraap1wOlKG8,13942
|
|
130
132
|
letta/local_llm/grammars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
133
|
letta/local_llm/grammars/gbnf_grammar_generator.py,sha256=jzBTg5_f7pSEnD2lCO4V7AI6oERtgr_C14Bl2J2GIfA,56346
|
|
132
134
|
letta/local_llm/grammars/json.gbnf,sha256=LNnIFYaChKuE7GU9H7tLThVi8vFnZNzrFJYBU7_HVsY,667
|
|
@@ -160,15 +162,15 @@ letta/local_llm/webui/settings.py,sha256=gmLHfiOl1u4JmlAZU2d2O8YKF9lafdakyjwR_ft
|
|
|
160
162
|
letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
163
|
letta/openai_backcompat/openai_object.py,sha256=GSzeCTwLpLD2fH4X8wVqzwdmoTjKK2I4PnriBY453lc,13505
|
|
162
164
|
letta/orm/__init__.py,sha256=ZlnnsQu3PSzpHyGmXsBnHZCfRiiszUkND3G69Ma6fr0,1707
|
|
163
|
-
letta/orm/agent.py,sha256=
|
|
165
|
+
letta/orm/agent.py,sha256=vZoMUyeIX_WfF0E08sUkhJ-rqOtWFO5ccTZ0VSyzg6c,18967
|
|
164
166
|
letta/orm/agents_tags.py,sha256=-rWR8DoEiHM4yc9vAHgHuvjIwgMXMWzKnTKFlBBu3TQ,1076
|
|
165
|
-
letta/orm/archive.py,sha256=
|
|
167
|
+
letta/orm/archive.py,sha256=8O8k2gyoMi2EvG0P76WLOz1n1DPLm3VcZJlmKGWeVY8,4143
|
|
166
168
|
letta/orm/archives_agents.py,sha256=hIhaIRQPuNv-etQVWnIQhEomiumLC1OWR-T_s0Y7snM,1273
|
|
167
169
|
letta/orm/base.py,sha256=7XoaeFP-EbypTaEZqALTIOXyW1PqI2bJOKT85FWoRGU,3044
|
|
168
170
|
letta/orm/block.py,sha256=ahjzd5Sp9g2ENezk3CRsCMkvw78lHgNRZ253pxuADTk,5909
|
|
169
171
|
letta/orm/block_history.py,sha256=XLbdTkc9Ga_W5oolzRPRxry7x5rS-PHqW11MKpBxyrA,2109
|
|
170
172
|
letta/orm/blocks_agents.py,sha256=zFXhN-KH1Hr_U_y7koHFBVVWKrngwxE0k98K98sxfS0,1318
|
|
171
|
-
letta/orm/custom_columns.py,sha256=
|
|
173
|
+
letta/orm/custom_columns.py,sha256=HwmS3hqlDEItudHKG97Z2IursKtGrG5Ib0BK3B5Dgvs,6011
|
|
172
174
|
letta/orm/errors.py,sha256=Se0Guz-gqi-D36NUWSh7AP9zTVCSph9KgZh_trwng4o,734
|
|
173
175
|
letta/orm/file.py,sha256=LynuEajZM7QeO4Y_J84iAB9dqXHPCY-xTur0q022n48,5298
|
|
174
176
|
letta/orm/files_agents.py,sha256=20KbkuLdBQ8ryOho5bK3WhHqzxvn09NBL3jGxC-RSlo,4003
|
|
@@ -177,14 +179,14 @@ letta/orm/groups_agents.py,sha256=1J6ZyXlTjC8CG0fXPuzfcFo_Bg0cpZSyktYRkoFOUt4,48
|
|
|
177
179
|
letta/orm/groups_blocks.py,sha256=ou18XqI9tkb0fcecUd4eHTVmmndGuby1DIdmHM5lHF4,489
|
|
178
180
|
letta/orm/identities_agents.py,sha256=cfIQ6UsbwmjxtGVmFt1ArK2zbKr9k6VWoELuISDnLSc,502
|
|
179
181
|
letta/orm/identities_blocks.py,sha256=oS0DnDXKzcWtlH2dDFREkNF1JHJ3Kyg8fN9GI8DKtcg,501
|
|
180
|
-
letta/orm/identity.py,sha256=
|
|
182
|
+
letta/orm/identity.py,sha256=gx5XbYQCb20JK2KcZZww5g8DkP9j0HDJbZ-wIDMZQbc,2922
|
|
181
183
|
letta/orm/job.py,sha256=qxdrLoAgSyAd2pS4t0lAR11BAEzhmbSMp87UuDgwObk,3467
|
|
182
184
|
letta/orm/job_messages.py,sha256=SgwaYPYwwAC3dBtl9Xye_TWUl9H_-m95S95TTcfPyOg,1245
|
|
183
185
|
letta/orm/llm_batch_items.py,sha256=LZI9vjOrswiGXPVLvLOT5uObDtyTXX1p7yljSiiMH7g,2725
|
|
184
186
|
letta/orm/llm_batch_job.py,sha256=LaeOrnNf6FMm6ff2kOCEAjtbSuz4C5KYU5OmM90F1PY,2368
|
|
185
187
|
letta/orm/mcp_oauth.py,sha256=IC9xrYQ48ZIhcT6jWYfwlwSFZsPFqSHBvozvbBcIF-Q,3582
|
|
186
|
-
letta/orm/mcp_server.py,sha256=
|
|
187
|
-
letta/orm/message.py,sha256=
|
|
188
|
+
letta/orm/mcp_server.py,sha256=YZfdzFcCaiMib2klcgP5cokPbSTq-tsBNDSjEd1UBS0,2862
|
|
189
|
+
letta/orm/message.py,sha256=39fifsQ07QRGcXbrNHRhVVZ3xmiBobfK4TfBNeTtZyM,10378
|
|
188
190
|
letta/orm/mixins.py,sha256=moZyS4e9gXGULKNsOqQuZrBn55IlrFF7MQOAVl68Aq0,2688
|
|
189
191
|
letta/orm/organization.py,sha256=UQIBg_nKuczy5SDQBpI2iIXL_lM0DwSqX5gAulGRnCk,4352
|
|
190
192
|
letta/orm/passage.py,sha256=qjBZdyZV05ZGe6Dprn4GIwdc3wjYRuchZO2Ja9I9bT4,4404
|
|
@@ -193,15 +195,15 @@ letta/orm/prompt.py,sha256=NpFPTm3jD8Aewxhlnq8s4eIzANJ3bAEtbq6UmFqyc3U,489
|
|
|
193
195
|
letta/orm/provider.py,sha256=dBvqXcQ7vMEkbsCQ82NezUB4RTCT3KiyZlkC3Z9ZTPg,1955
|
|
194
196
|
letta/orm/provider_trace.py,sha256=CJMGz-rLqagJ-yXh9SJRbiGr5nAYdxY524hmiTgDFx4,1153
|
|
195
197
|
letta/orm/run.py,sha256=eQgqfq-F9W9hHRbnfSVOhrW936J0xiTb5bvaVviTxvM,3820
|
|
196
|
-
letta/orm/run_metrics.py,sha256=
|
|
198
|
+
letta/orm/run_metrics.py,sha256=sCSFKC7j8ekjFwbBIYL8axbw5kdDJMK-xcThraY0YrU,3269
|
|
197
199
|
letta/orm/sandbox_config.py,sha256=FxFhKlbfGwE3d0quNbKXLkVcKSWh0HPmQVShdvktCoo,4497
|
|
198
200
|
letta/orm/source.py,sha256=tRxqjWM8n1LBhlDTIiKhJ82-tpWErTeiDXMFz1rwY4g,1715
|
|
199
201
|
letta/orm/sources_agents.py,sha256=Fvo8ujDNeeqleiiqXk-0VUPiQDawLAN-d28RxdvWnbs,554
|
|
200
|
-
letta/orm/sqlalchemy_base.py,sha256=
|
|
202
|
+
letta/orm/sqlalchemy_base.py,sha256=S7S8QIsxMkC4UBNeCTM-JUG45kPlFmLwPcFQhMfU3vM,32818
|
|
201
203
|
letta/orm/sqlite_functions.py,sha256=tbwePL5XciJIttoehyt1H17zdUXWAdjFqH0t-XaFJfk,7256
|
|
202
204
|
letta/orm/step.py,sha256=KCmU6oMLm9x2Tdv3otCYqPCuZg8ZNbonxfNJ1uX4cDg,4558
|
|
203
205
|
letta/orm/step_metrics.py,sha256=Hok-kCRJ3QS1zDlQlsXyRzbvqtNVFET-gHY80EpeJzE,4391
|
|
204
|
-
letta/orm/tool.py,sha256=
|
|
206
|
+
letta/orm/tool.py,sha256=pcE4FNNep7wZJm97VWhopYKYcLNEOYGMyJWBS6IDP6Q,3257
|
|
205
207
|
letta/orm/tools_agents.py,sha256=aUvXqoE9VrEBIEbGUVdWtSIt0yEtAVbZScNUVr8PgoM,700
|
|
206
208
|
letta/orm/user.py,sha256=rK5N5ViDxmesZMqVVHB7FcQNpcSoM-hB42MyI6q3MnI,1004
|
|
207
209
|
letta/otel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -213,7 +215,7 @@ letta/otel/metrics.py,sha256=GlIt8XLkP-igTXptah8UBonpHF7nEtSqTONSkAEERAs,4740
|
|
|
213
215
|
letta/otel/resource.py,sha256=kqvEywP2LTmuxv2Or3Irtm2zwic863j1DWUvBC0IONc,735
|
|
214
216
|
letta/otel/sqlalchemy_instrumentation.py,sha256=yiZvHjDA8Sd5j5RGbokiaOgRwCIE5hkvhWavVSOXs7U,18892
|
|
215
217
|
letta/otel/sqlalchemy_instrumentation_integration.py,sha256=CwGPd5mb4PasBDnSlulSqfaupN-kB8Wz6EBHWBDNuuo,3902
|
|
216
|
-
letta/otel/tracing.py,sha256=
|
|
218
|
+
letta/otel/tracing.py,sha256=xGESYZaLRzv6CaL0cRYl1uI4Vwvfj5DyeE7yCV5lhQ4,11524
|
|
217
219
|
letta/personas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
220
|
letta/personas/examples/anna_pa.txt,sha256=zgiNdSNhy1HQy58cF_6RFPzcg2i37F9v38YuL1CW40A,1849
|
|
219
221
|
letta/personas/examples/google_search_persona.txt,sha256=RyObU80MIk2oeJJDWOK1aX5pHOtbHSSjIrbUpxov240,1194
|
|
@@ -234,7 +236,7 @@ letta/plugins/plugins.py,sha256=Um9avvRxz4d5vJQTudLJCwv5EDUtIlVQZw8Xlf4S3Gw,2079
|
|
|
234
236
|
letta/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
237
|
letta/prompts/gpt_summarize.py,sha256=dbOsMdc6VGApFtXv7ZfqsGN2SZ_31K_nUWMLBTcChrY,1146
|
|
236
238
|
letta/prompts/gpt_system.py,sha256=Y-Wj8n8PFHwGjbsJhb-dghNXXQts5zrnBRI1FfDkocg,907
|
|
237
|
-
letta/prompts/prompt_generator.py,sha256=
|
|
239
|
+
letta/prompts/prompt_generator.py,sha256=OED86iTg2RPwwjdT-V1J2E6rhwZeHfFdlJc_h4PoMu0,9036
|
|
238
240
|
letta/prompts/system_prompts/__init__.py,sha256=kHgDprUsgorAbXv7wKKmsvjt0xGa9lWk7TyeFj08-9g,782
|
|
239
241
|
letta/prompts/system_prompts/letta_v1.py,sha256=7oozQ8oLpt6rMDs2p90z5FWKdHn7ORDxMoZ9e3KVQ90,1726
|
|
240
242
|
letta/prompts/system_prompts/memgpt_chat.py,sha256=WEeP-RqjROG0a3Pqt-fQJSMj0ocE0Zt-4c5I3HXroNA,5438
|
|
@@ -247,33 +249,33 @@ letta/prompts/system_prompts/summary_system_prompt.py,sha256=-jy_PL6Cwxjs3p3AiTR
|
|
|
247
249
|
letta/prompts/system_prompts/voice_chat.py,sha256=WLhjlVsVcQPc5S6y5hgw1SdVhdhtflNiwdpfSx3abwk,1871
|
|
248
250
|
letta/prompts/system_prompts/voice_sleeptime.py,sha256=2rgZYqJEqSp5bcEAXNuqM1PVsvPF1vm8sAqmhoOfQow,3714
|
|
249
251
|
letta/prompts/system_prompts/workflow.py,sha256=mth_46sY9JWx0rV-kqiGcu2IZGzZQfKY345qBUjvP-s,852
|
|
250
|
-
letta/schemas/agent.py,sha256=
|
|
251
|
-
letta/schemas/agent_file.py,sha256=
|
|
252
|
-
letta/schemas/archive.py,sha256=
|
|
253
|
-
letta/schemas/block.py,sha256=
|
|
252
|
+
letta/schemas/agent.py,sha256=8CFlsDUELHpFpDMtB3ABOGoH41tzBT_YBM_HvvzyA-Y,24402
|
|
253
|
+
letta/schemas/agent_file.py,sha256=YBSaEEND8cek32boLKoIHUlSoDP-Ithx20YYfLZ0FUg,15569
|
|
254
|
+
letta/schemas/archive.py,sha256=cWnncf8HXm2qMoPSbGP3kNn-X-FKfEkew3408OnKt50,2094
|
|
255
|
+
letta/schemas/block.py,sha256=G4RCah8Q6tsCk9LonWK97STnTE1pehLTqXfkIJzf7Gw,8024
|
|
254
256
|
letta/schemas/embedding_config.py,sha256=ZaD40UeeAX6A9C6bQVhrKwNDiMEuOn7-5uHcj9_T_D0,3740
|
|
255
257
|
letta/schemas/embedding_config_overrides.py,sha256=lkTa4y-EQ2RnaEKtKDM0sEAk7EwNa67REw8DGNNtGQY,84
|
|
256
|
-
letta/schemas/enums.py,sha256=
|
|
258
|
+
letta/schemas/enums.py,sha256=4Ja1jkDVfI7UKTd7h4gW5P1ZqnlAMGig8tr7Glorj1g,6603
|
|
257
259
|
letta/schemas/environment_variables.py,sha256=XX_fk_rDaBd3r5ORnynewNIml0he5JdWdGE3NS5cTyM,3533
|
|
258
|
-
letta/schemas/file.py,sha256
|
|
259
|
-
letta/schemas/folder.py,sha256=
|
|
260
|
-
letta/schemas/group.py,sha256=
|
|
260
|
+
letta/schemas/file.py,sha256=-yLts1D9XSRCmz2nUeAHFT_FAvQGF4ACI6smhPIJ5Zw,6287
|
|
261
|
+
letta/schemas/folder.py,sha256=nlsx5mNqTbP0ZTOQjyTFmI3KPIbWWm8lEhgOnNBmNTA,3373
|
|
262
|
+
letta/schemas/group.py,sha256=ZjumSXVYJHPfixVNLhTMCGBMHd3VXsKBhKWfKJOM7vg,8727
|
|
261
263
|
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
|
262
|
-
letta/schemas/identity.py,sha256
|
|
263
|
-
letta/schemas/job.py,sha256=
|
|
264
|
+
letta/schemas/identity.py,sha256=U70R1Yajgn7eI6VOP8ScKz5tAioZxBov22-nzfxpZRk,4525
|
|
265
|
+
letta/schemas/job.py,sha256=qJWuBe1UHZ826iXrEd_NcsdVMjWpirbIMX7EsHXhgXo,5617
|
|
264
266
|
letta/schemas/letta_base.py,sha256=LhVKaSAUr7HzrvuEJE_1ZKJMe-nJKoYR-ZgLe1IUTpY,4020
|
|
265
|
-
letta/schemas/letta_message.py,sha256=
|
|
267
|
+
letta/schemas/letta_message.py,sha256=a1PtqE78LqBXY1Y-FiXnwbqbVdfs9pTempfcbnWNeH0,21525
|
|
266
268
|
letta/schemas/letta_message_content.py,sha256=_BTfU6NcxNbc6SPt4ANVGUh0d0QUqVQkfDF0gM8rbdg,13226
|
|
267
|
-
letta/schemas/
|
|
268
|
-
letta/schemas/letta_request.py,sha256=ll0QTt-tzaJ3zxpPyaifz7mtWcPy6QmvPUDOzngbxfQ,4526
|
|
269
|
+
letta/schemas/letta_request.py,sha256=Y7UMuS4m8z9PNDbZY07FRM9WW_TpyPxDsiT-57Ron5o,4872
|
|
269
270
|
letta/schemas/letta_response.py,sha256=e6FcAhRX3heB0FoWAAozB3RJboMwi_JpelTdc5JupVA,8188
|
|
270
|
-
letta/schemas/letta_stop_reason.py,sha256=
|
|
271
|
+
letta/schemas/letta_stop_reason.py,sha256=nwqB0oeEDjmDYuN-tF23AKHVEAV3Snjv8NvnW8vS1ZE,1552
|
|
271
272
|
letta/schemas/llm_batch_job.py,sha256=xr7RmMc9ItmL344vcIn1MJaT2nOf0F7qEHrsXkQNFQI,3136
|
|
272
|
-
letta/schemas/llm_config.py,sha256=
|
|
273
|
+
letta/schemas/llm_config.py,sha256=fAy_GjUXWj1o3E_Tito4h4hga6EEawhQrR4Z1db0R78,16735
|
|
273
274
|
letta/schemas/llm_config_overrides.py,sha256=E6qJuVA8TwAAy3VjGitJ5jSQo5PbN-6VPcZOF5qhP9A,1815
|
|
274
|
-
letta/schemas/mcp.py,sha256=
|
|
275
|
-
letta/schemas/
|
|
276
|
-
letta/schemas/
|
|
275
|
+
letta/schemas/mcp.py,sha256=Buq1rNmrJViIVWtqdRLLJfjEU4QLDpz6Vyc6JfB7wIE,15200
|
|
276
|
+
letta/schemas/mcp_server.py,sha256=BDGLexZQYdlZQGcevvyRU6SaKkgc7VKYRqG5UeFyoGY,15475
|
|
277
|
+
letta/schemas/memory.py,sha256=VWgSqhhNAqggM7U1-bygDo2uLrm4fM6XRyTXNE1JaiI,20851
|
|
278
|
+
letta/schemas/message.py,sha256=u6ja8xJNdPNt5H41NyYkPxleoNqhq-oB-7ouITulhUA,85186
|
|
277
279
|
letta/schemas/npm_requirement.py,sha256=HkvBF7KjHUH-MG-RAEYJHO2MLRS2rxFUcmbpbZVznLk,457
|
|
278
280
|
letta/schemas/organization.py,sha256=TXrHN4IBQnX-mWvRuCOH57XZSLYCVOY0wWm2_UzDQIA,1279
|
|
279
281
|
letta/schemas/passage.py,sha256=_bO19zOIQtQ3F3VqDSgIJqh15V0IIrJ_KdlbCt6-4D0,3940
|
|
@@ -282,18 +284,18 @@ letta/schemas/prompt.py,sha256=BRTY-JiKSKdFVPa6rrDHDe7v4sg1qeF-k3w3JKRMTxU,363
|
|
|
282
284
|
letta/schemas/provider_trace.py,sha256=L-L5gEt9X1wMiI5w1fQ79qvJ1g1Kvo2TobeQC1p9ajQ,1766
|
|
283
285
|
letta/schemas/providers.py,sha256=oHDHP3wUVPe3S2RfefUcsgE2DFCnkMFXx75FE7h0Pzw,69393
|
|
284
286
|
letta/schemas/response_format.py,sha256=b2onyfSDCxnNkSHd4NsfJg_4ni5qBIK_F6zeJoMvjq0,2131
|
|
285
|
-
letta/schemas/run.py,sha256=
|
|
286
|
-
letta/schemas/run_metrics.py,sha256=
|
|
287
|
-
letta/schemas/sandbox_config.py,sha256
|
|
288
|
-
letta/schemas/secret.py,sha256=
|
|
289
|
-
letta/schemas/source.py,sha256=
|
|
287
|
+
letta/schemas/run.py,sha256=J19AZVng7X2OhyrbmCi2m3ktRWRn9F8qVMMAMixJJVo,3975
|
|
288
|
+
letta/schemas/run_metrics.py,sha256=rd6HddCgLkCzWTmoTiTMVXuD3GNwicUt_ip-G4-AH0U,1263
|
|
289
|
+
letta/schemas/sandbox_config.py,sha256=-VTxXBJHdfa496BfmBW-JOekPbpOLNuJUiQ4Pp_7pl0,6014
|
|
290
|
+
letta/schemas/secret.py,sha256=p63g7ezPA-Wpoy-7fbf8g5INkG_BAudZyRMmSSDGEhM,11586
|
|
291
|
+
letta/schemas/source.py,sha256=FBGGjzCdseVKjz-ILWG1ysE9UR1Ar0ByixubJL4uP4g,3598
|
|
290
292
|
letta/schemas/source_metadata.py,sha256=_dGjuXhGcVMlc53ja9yuk16Uj64ggEzilRDgmkqYfNs,1334
|
|
291
|
-
letta/schemas/step.py,sha256=
|
|
293
|
+
letta/schemas/step.py,sha256=0OaAA-7sSOs3wf9JqODLKFXyxeRkMR7_S1-dptGdI-c,3605
|
|
292
294
|
letta/schemas/step_metrics.py,sha256=dYe4pp4JKDPHPysZFZIz9OGyFaIx04Wd1erxXVhmBXA,1606
|
|
293
|
-
letta/schemas/tool.py,sha256=
|
|
295
|
+
letta/schemas/tool.py,sha256=KkylBNFMDjmcivw1BC5pVC405VPIJPkssxP2u8zyUkg,11522
|
|
294
296
|
letta/schemas/tool_execution_result.py,sha256=17tMU01ACtpA41MTeWPqnF0uFpOYeaprORgGAd4XztA,895
|
|
295
297
|
letta/schemas/tool_rule.py,sha256=hpoyCgIuxWEW7LbD0vxwIy9TITt7a80YIXKmaI1E_mU,15904
|
|
296
|
-
letta/schemas/usage.py,sha256=
|
|
298
|
+
letta/schemas/usage.py,sha256=cq3jN505Ei7dh614S0eug7Ap-HPKQXkMd8t2LljBRTs,1170
|
|
297
299
|
letta/schemas/user.py,sha256=GanbgD80N33FBjWKkv-MvUO01C0GHzrYmJ-o80wgLLI,1481
|
|
298
300
|
letta/schemas/openai/chat_completion_request.py,sha256=MZjNm5R-1_e3Ar6UsQvLCG5jKkzFh-zevdUWix03aXQ,4496
|
|
299
301
|
letta/schemas/openai/chat_completion_response.py,sha256=Hes8D-tl8_I_LClONUNw3NZ_vkvas6d4QfE-7ge1eac,7065
|
|
@@ -302,24 +304,24 @@ letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNo
|
|
|
302
304
|
letta/schemas/openai/openai.py,sha256=i6r9WqLXGy5MbEZVzckilK_V4ticGk_ePrq8I4dMwe4,7848
|
|
303
305
|
letta/schemas/openai/responses_request.py,sha256=7UlZt2XProhRZ9L_oUQ5HrD9wPxDzvBzqURnk5wfEX8,3185
|
|
304
306
|
letta/schemas/providers/__init__.py,sha256=3_8xegx1svx31qAupfpIZ4MmeW1_2FRmxZbhjfLnSZo,1405
|
|
305
|
-
letta/schemas/providers/anthropic.py,sha256=
|
|
306
|
-
letta/schemas/providers/azure.py,sha256=
|
|
307
|
-
letta/schemas/providers/base.py,sha256=
|
|
308
|
-
letta/schemas/providers/bedrock.py,sha256=
|
|
309
|
-
letta/schemas/providers/cerebras.py,sha256=
|
|
310
|
-
letta/schemas/providers/deepseek.py,sha256=
|
|
311
|
-
letta/schemas/providers/google_gemini.py,sha256=
|
|
307
|
+
letta/schemas/providers/anthropic.py,sha256=ZdJfHE49TvrMYtF3RgSt9sB5QA9iAwKQhc--dDtYwOQ,7096
|
|
308
|
+
letta/schemas/providers/azure.py,sha256=V1C8UBnpJwLKeBwyYtycUud2aXz6Hfg49BC2Tcn-FjQ,7792
|
|
309
|
+
letta/schemas/providers/base.py,sha256=oD8BOjBuFoAJaNMEXJqlu0WuJ9-K0CJM_yD0V9L7vTk,12181
|
|
310
|
+
letta/schemas/providers/bedrock.py,sha256=SPYjB7j88qClwh6j_y3APEwsA7-s0OicECDehAZZlcM,3812
|
|
311
|
+
letta/schemas/providers/cerebras.py,sha256=vXuM5HwkHHI7HMK_n1w93_8USzL4UDpgpSn9WAD5qSw,3313
|
|
312
|
+
letta/schemas/providers/deepseek.py,sha256=bf5W5b4yqVRhdCsJT0zQIp31whj1l80KiNxzUpU15gE,2678
|
|
313
|
+
letta/schemas/providers/google_gemini.py,sha256=5yof9Cx9wjY4y8TAKgqeRNr9Dgm6OhH1Y1yK-odcVJg,4918
|
|
312
314
|
letta/schemas/providers/google_vertex.py,sha256=ooKgRXum1NOMGb4cJsOLPlFVw-TwAde9l-20ngEd9h4,2674
|
|
313
|
-
letta/schemas/providers/groq.py,sha256=
|
|
315
|
+
letta/schemas/providers/groq.py,sha256=MPC3at38GrdtNayoFwtQRnVhlJr0AqUNor6RP39TfIg,1510
|
|
314
316
|
letta/schemas/providers/letta.py,sha256=tsVg4dE7r33TDkK6BCbC9lvnjk35uf32mecmuY3589E,1580
|
|
315
|
-
letta/schemas/providers/lmstudio.py,sha256=
|
|
316
|
-
letta/schemas/providers/mistral.py,sha256=
|
|
317
|
+
letta/schemas/providers/lmstudio.py,sha256=QD5DDnb6ZSKC3CRzfi70-bx4-E08eW7_QB0pBKmiHTU,4377
|
|
318
|
+
letta/schemas/providers/mistral.py,sha256=GbKLRGZ8YZBd8QDkKQHxi7mX6Xp9DU6ACVsNwVBSNSM,1921
|
|
317
319
|
letta/schemas/providers/ollama.py,sha256=hbvAjcVRp6pR60LfXJYkhpXGCiq2c8PpMgViso5PFR0,9668
|
|
318
|
-
letta/schemas/providers/openai.py,sha256=
|
|
320
|
+
letta/schemas/providers/openai.py,sha256=YPbtQqzK14xfVjxtvCMHjDLFlyIAnB_cz_MfsEQi1q8,11334
|
|
319
321
|
letta/schemas/providers/openrouter.py,sha256=HdDaXJnGLM06hrz4MnCSWtPW-ODgMuAOE8muBrwuGm4,2307
|
|
320
|
-
letta/schemas/providers/together.py,sha256=
|
|
322
|
+
letta/schemas/providers/together.py,sha256=dmc0JHN-AcgT2vKmLjMfxc72StVWrrcY5Qfpe_Fwaw8,4028
|
|
321
323
|
letta/schemas/providers/vllm.py,sha256=xzu7Xo8eZYVLDOgjx0cGZ0UgMDlGY-DZmZZeBdsDzkU,2696
|
|
322
|
-
letta/schemas/providers/xai.py,sha256=
|
|
324
|
+
letta/schemas/providers/xai.py,sha256=tJtBB-PmE8Tlk_kKr0YXP0K8uzbzKuo8jn4gD1n8JfY,2599
|
|
323
325
|
letta/serialize_schemas/__init__.py,sha256=cosMjvWz7cubC1azbUofzYrcDBTuSgjJImUdsrSs3p0,77
|
|
324
326
|
letta/serialize_schemas/marshmallow_agent.py,sha256=oaEY14hp-TwiWL5vLOGQBDJJwAbzgV6A4SO02V1Ir_0,10644
|
|
325
327
|
letta/serialize_schemas/marshmallow_agent_environment_variable.py,sha256=9RYJkaNH2UiRoIFzrNklVAGl3uMmu3n6NwzFdviPPVA,653
|
|
@@ -334,52 +336,54 @@ letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
334
336
|
letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
|
|
335
337
|
letta/server/db.py,sha256=bh294tLdOQxOrO9jICDrXa_UXTAYFByu_47tPXlKrjs,3006
|
|
336
338
|
letta/server/generate_openapi_schema.sh,sha256=14Q6r0fbNNVVdf4X3Z-H0ZtyrVw5zYLzL5Doom3kM9k,351
|
|
337
|
-
letta/server/server.py,sha256=
|
|
339
|
+
letta/server/server.py,sha256=ZSQkF5bydHCQ8PzQmu77MFK2eYsGoaerL9mcn7eKU9A,80001
|
|
338
340
|
letta/server/startup.sh,sha256=z-Fea-7LiuS_aG1tJqS8JAsDQaamwC_kuDhv9D3PPPY,2698
|
|
339
341
|
letta/server/utils.py,sha256=rRvW6L1lzau4u9boamiyZH54lf5tQ91ypXzUW9cfSPA,1667
|
|
340
342
|
letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
|
-
letta/server/rest_api/app.py,sha256=
|
|
343
|
+
letta/server/rest_api/app.py,sha256=dCFpEmriEC-pweJ_RVwuuDVSl0-2oL1cpq22p3W4Bgs,29773
|
|
342
344
|
letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
|
|
343
345
|
letta/server/rest_api/chat_completions_interface.py,sha256=-7wO7pNBWXMqblVkJpuZ8JPJ-LjudLTtT6BJu-q_XAM,11138
|
|
344
|
-
letta/server/rest_api/dependencies.py,sha256=
|
|
345
|
-
letta/server/rest_api/interface.py,sha256=
|
|
346
|
+
letta/server/rest_api/dependencies.py,sha256=LbCAIH8xcaDxBkrPvZB8gqxwHVubYCqrbzfq8Yl4jrU,1877
|
|
347
|
+
letta/server/rest_api/interface.py,sha256=vhVVprxwCXtFF7qSTDwY9DbjtAeA2Sgc96vpuO0LQRc,68728
|
|
346
348
|
letta/server/rest_api/json_parser.py,sha256=yoakaCkSMdf0Y_pyILoFKZlvzXeqF-E1KNeHzatLMDc,9157
|
|
347
|
-
letta/server/rest_api/redis_stream_manager.py,sha256=
|
|
349
|
+
letta/server/rest_api/redis_stream_manager.py,sha256=5JaLeXF5h_K_EslR1ZHJZO8oUqkFjHlnIJHsma_fAYQ,11862
|
|
348
350
|
letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
|
|
349
|
-
letta/server/rest_api/streaming_response.py,sha256=
|
|
350
|
-
letta/server/rest_api/utils.py,sha256=
|
|
351
|
+
letta/server/rest_api/streaming_response.py,sha256=4eQNoAXYknegOQ59Wd3HsNPeELvU6Vlrr90EhBXZ6Ts,14609
|
|
352
|
+
letta/server/rest_api/utils.py,sha256=PkC0mmwD4TcwS9V3VXil6wpGm2MrAxk1prjK-j8jxFQ,27710
|
|
351
353
|
letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
354
|
letta/server/rest_api/auth/index.py,sha256=oaWNZREyuTyldHBx0vQYlqtePruL21H1atZj_TO_nyg,1377
|
|
353
355
|
letta/server/rest_api/middleware/__init__.py,sha256=sq9ShbHKfsmvR1DnrI-ibSYEo0PSevXZobzgst24tNI,240
|
|
354
356
|
letta/server/rest_api/middleware/check_password.py,sha256=LKR_rlhzZ-93o0FpkwDn8vWOP6tpE8URftr7L4UbDC4,852
|
|
355
357
|
letta/server/rest_api/middleware/profiler_context.py,sha256=MbOFOXhkOCuq6vlOiv0DGgmlLVKxC-9tRZ0OTOn_0GA,859
|
|
356
358
|
letta/server/rest_api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
|
-
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
359
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=bY3Ei_uxr_eIo4Z-k_gGeKSzyC1ALZOP3dbaXxacihE,5229
|
|
359
|
-
letta/server/rest_api/routers/v1/__init__.py,sha256=
|
|
360
|
-
letta/server/rest_api/routers/v1/agents.py,sha256=
|
|
361
|
-
letta/server/rest_api/routers/v1/archives.py,sha256=
|
|
362
|
-
letta/server/rest_api/routers/v1/blocks.py,sha256=
|
|
360
|
+
letta/server/rest_api/routers/v1/__init__.py,sha256=AOmyrGMcPgN0hcDeYMvMOvBTtqSPgjSztxoWhi2_ffU,2527
|
|
361
|
+
letta/server/rest_api/routers/v1/agents.py,sha256=OEMqo3lpWHq2OdT6s0woXDPq4D17qJUIxtecVQqwM04,78096
|
|
362
|
+
letta/server/rest_api/routers/v1/archives.py,sha256=KxGsVtJb9OU-eLaNNykDlwn4sFmqIcTy9ZUnPmbjI7A,7466
|
|
363
|
+
letta/server/rest_api/routers/v1/blocks.py,sha256=UJOwTLg3yd8NzKkEC3pLH7eR1qa0J4pcUOv832tJjXA,10550
|
|
364
|
+
letta/server/rest_api/routers/v1/chat_completions.py,sha256=FjbtgSxD0J6NGAZLN3kKLTLPf0hc9SruYGZk10Y5uog,5863
|
|
363
365
|
letta/server/rest_api/routers/v1/embeddings.py,sha256=WxMRMf2x-DCsHOVvCRxJ8Nz1PE7ri8KgmKiYlmBaPwI,957
|
|
364
|
-
letta/server/rest_api/routers/v1/folders.py,sha256=
|
|
365
|
-
letta/server/rest_api/routers/v1/groups.py,sha256=
|
|
366
|
+
letta/server/rest_api/routers/v1/folders.py,sha256=yVzYCCruJDZ3qkrQeojZWBTYjHtP7Bf9t-GiMP1jpoE,25449
|
|
367
|
+
letta/server/rest_api/routers/v1/groups.py,sha256=7Y7TPA7Y63RX_v6ytkb3YqgmhOtjQymRoT-O1N1qevI,12128
|
|
366
368
|
letta/server/rest_api/routers/v1/health.py,sha256=j43UoGJ7Yh5WzdwvqbKTEdWzlcKJBF6ZI5I1kslWim0,399
|
|
367
|
-
letta/server/rest_api/routers/v1/identities.py,sha256=
|
|
368
|
-
letta/server/rest_api/routers/v1/
|
|
369
|
-
letta/server/rest_api/routers/v1/
|
|
369
|
+
letta/server/rest_api/routers/v1/identities.py,sha256=Pwr9p5u7NF-jsB2Guz-njohedE7vRamTZvTcun1QEFg,9295
|
|
370
|
+
letta/server/rest_api/routers/v1/internal_runs.py,sha256=0TGGqAzZuniF_u8mXdOmTrVz4ys4wZgwEFrmsp3Z988,4711
|
|
371
|
+
letta/server/rest_api/routers/v1/internal_templates.py,sha256=V3mFeNNX3eEY5F5oYWvfenEB-hdmXGlQODYhHRWppZY,11693
|
|
372
|
+
letta/server/rest_api/routers/v1/jobs.py,sha256=wI6siOtyxBHoBvd8qdJQAM12Gvld1c9l9-zEwYPfnyE,5316
|
|
370
373
|
letta/server/rest_api/routers/v1/llms.py,sha256=sv5VWqB0-iSRi6LyzqsM1fLmOFm9UhM9ofzR9WHvJdE,1808
|
|
371
|
-
letta/server/rest_api/routers/v1/
|
|
372
|
-
letta/server/rest_api/routers/v1/
|
|
373
|
-
letta/server/rest_api/routers/v1/
|
|
374
|
-
letta/server/rest_api/routers/v1/
|
|
375
|
-
letta/server/rest_api/routers/v1/
|
|
376
|
-
letta/server/rest_api/routers/v1/
|
|
377
|
-
letta/server/rest_api/routers/v1/
|
|
374
|
+
letta/server/rest_api/routers/v1/mcp_servers.py,sha256=n0WWrobNUTD_gYESf7VPphfrbqruqcIzdIlzv3A1ppk,12026
|
|
375
|
+
letta/server/rest_api/routers/v1/messages.py,sha256=hkr7-J8zA7tmBOU-1pjNIZe0xH4NizyX6ZiU13L_AHQ,8157
|
|
376
|
+
letta/server/rest_api/routers/v1/organizations.py,sha256=Vb2FtIE1y_66Ed-lRaSZKFnZZMjxwbjy2S5HOIG8AFQ,2209
|
|
377
|
+
letta/server/rest_api/routers/v1/providers.py,sha256=v6aGebGmspPBU1p3SwYlZ5dQmdrwEJHH4WtHByaaHns,6241
|
|
378
|
+
letta/server/rest_api/routers/v1/runs.py,sha256=CyMl2cclKiz7KTdgOSb7xd80ZrkmmmhoI3zpbaYjP4Q,14435
|
|
379
|
+
letta/server/rest_api/routers/v1/sandbox_configs.py,sha256=OKcc6ph37j5ii3EgNcVnb7WeQoTa0B_PNaiL5Ia9lKI,8818
|
|
380
|
+
letta/server/rest_api/routers/v1/sources.py,sha256=fAyjOnt9nWh6UHmuka3-rDoen8c3cj-31Aw2jTqgQe0,21601
|
|
381
|
+
letta/server/rest_api/routers/v1/steps.py,sha256=-2hL2le0m5a2UrAxk9XomDv51x2LPz_04s7vxD-eslo,7800
|
|
378
382
|
letta/server/rest_api/routers/v1/tags.py,sha256=rGPO5GaVBn18hu7D3Ysyo45ka47g9DUir3UVh433DEc,1826
|
|
379
383
|
letta/server/rest_api/routers/v1/telemetry.py,sha256=8rzSii17BK8BjRRfV4Yr6mrKrbZEHySlUaQBGBWhxwY,1124
|
|
380
|
-
letta/server/rest_api/routers/v1/tools.py,sha256=
|
|
381
|
-
letta/server/rest_api/routers/v1/users.py,sha256=
|
|
382
|
-
letta/server/rest_api/routers/v1/voice.py,sha256=
|
|
384
|
+
letta/server/rest_api/routers/v1/tools.py,sha256=UJPo1K3c4KLgyAfBJFahDudZ8Mnt7gAfHO526v9PCR0,38284
|
|
385
|
+
letta/server/rest_api/routers/v1/users.py,sha256=yOEO0uoPlBFnFCpEIKHcAXbllekbI659Q5snGDYaZgg,2012
|
|
386
|
+
letta/server/rest_api/routers/v1/voice.py,sha256=9rscer9YnFm_UEk6ujUM9Sk9wZNAii-HdO4gpVG9WLE,1714
|
|
383
387
|
letta/server/static_files/favicon.ico,sha256=DezhLdFSbM8o81wCOZcV3riq7tFUOGQD4h6-vr-HuU0,342
|
|
384
388
|
letta/server/static_files/index.html,sha256=sY5ZwjwJJysQWDJZGi5VQSJUkZH9gwQRGn0Hto2Vcfo,1194
|
|
385
389
|
letta/server/static_files/memgpt_logo_transparent.png,sha256=7l6niNb4MlUILxLlUZPxIE1TEHj_Z9f9XDxoST3d7Vw,85383
|
|
@@ -389,33 +393,35 @@ letta/server/ws_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
389
393
|
letta/server/ws_api/example_client.py,sha256=95AA5UFgTlNJ0FUQkLxli8dKNx48MNm3eWGlSgKaWEk,4064
|
|
390
394
|
letta/server/ws_api/interface.py,sha256=TWl9vkcMCnLsUtgsuENZ-ku2oMDA-OUTzLh_yNRoMa4,4120
|
|
391
395
|
letta/server/ws_api/protocol.py,sha256=5mDgpfNZn_kNwHnpt5Dsuw8gdNH298sgxTGed3etzYg,1836
|
|
392
|
-
letta/server/ws_api/server.py,sha256=
|
|
396
|
+
letta/server/ws_api/server.py,sha256=wsW0MInnsWD3UiNDzFfXCDjMdoIIIoeN_zDml_BFMuA,5795
|
|
393
397
|
letta/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
394
398
|
letta/services/agent_file_manager.py,sha256=bgYTyQA90Iqo3W-LprPtyyOKf2itoqivcRhh4EOUXss,30847
|
|
395
|
-
letta/services/agent_manager.py,sha256=
|
|
396
|
-
letta/services/agent_serialization_manager.py,sha256=
|
|
397
|
-
letta/services/archive_manager.py,sha256=
|
|
398
|
-
letta/services/block_manager.py,sha256=
|
|
399
|
-
letta/services/file_manager.py,sha256=
|
|
399
|
+
letta/services/agent_manager.py,sha256=4gsvGNTWHafmVNvfK1iGnDFJDF_6BS063x6iCvXuI00,145855
|
|
400
|
+
letta/services/agent_serialization_manager.py,sha256=TTQsbrAb-V7_aQKon_j08-ZO96_eMfprItc0Z9nYeAQ,48365
|
|
401
|
+
letta/services/archive_manager.py,sha256=tZ-E9nimKBkLWkQ-GLf6hyJ5VHxXnRXLRQ0uc_3XvKA,19928
|
|
402
|
+
letta/services/block_manager.py,sha256=pJc6cSBCUKUdNeSsSLXQWPJ3FmJFwP-cgxTEJGyWMdE,36585
|
|
403
|
+
letta/services/file_manager.py,sha256=bz6RfeoP6-aWzDyxx8LodHy2XlIS6g1YMARm5R-frrI,32042
|
|
400
404
|
letta/services/files_agents_manager.py,sha256=TgbxblwXqH9e1sy9FgAjkenq2MaluZNtOwQZWjtW62w,30231
|
|
401
|
-
letta/services/group_manager.py,sha256=
|
|
402
|
-
letta/services/identity_manager.py,sha256=
|
|
403
|
-
letta/services/job_manager.py,sha256=
|
|
405
|
+
letta/services/group_manager.py,sha256=coZA0ccmDMaUyzBoXDJqpdBAi8fl4DUm4yk3NtZCBaE,23280
|
|
406
|
+
letta/services/identity_manager.py,sha256=jdMctE5J47rWySZLSrKV5lHHYwyPYwCrtR-NU6l2a8Q,19408
|
|
407
|
+
letta/services/job_manager.py,sha256=Ec6bZ_Cv9DT34ONMLOqmK4T5vrxH585dIMjBeCPQ6bQ,25208
|
|
404
408
|
letta/services/llm_batch_manager.py,sha256=iDzLFfmgpQooGY4zpN_w8q1SZ27fr2Cv6Ks3ltZErL8,20929
|
|
405
|
-
letta/services/mcp_manager.py,sha256=
|
|
406
|
-
letta/services/
|
|
407
|
-
letta/services/
|
|
408
|
-
letta/services/
|
|
409
|
+
letta/services/mcp_manager.py,sha256=i_91ijlMwDEzaQkDLSpcTrszVJA5hTMaZfhnc7I7V0c,61354
|
|
410
|
+
letta/services/mcp_server_manager.py,sha256=PXFzfFaQTRQKEq5m-osg90VYR86Wv86F5Tam9EwsltU,66406
|
|
411
|
+
letta/services/message_manager.py,sha256=dGC2eRemrcjSW2jo-z2MXeOEY1EZWZRs2yB8EqNlEls,55007
|
|
412
|
+
letta/services/organization_manager.py,sha256=ZHpvssp1m72u_eXPO28jd2Wl8iBhJ9mTK4YwHTso8gM,4303
|
|
413
|
+
letta/services/passage_manager.py,sha256=gqIIqE3vbIdWgdjMooRdpqFSwMM8VqmqJ7X7DWZ0rmU,38037
|
|
409
414
|
letta/services/per_agent_lock_manager.py,sha256=cMaW8r-qhucQbiK27jVqz8wzhlr2yuRNXbdkaMO4lnk,627
|
|
410
|
-
letta/services/provider_manager.py,sha256=
|
|
411
|
-
letta/services/run_manager.py,sha256=
|
|
412
|
-
letta/services/sandbox_config_manager.py,sha256=
|
|
413
|
-
letta/services/source_manager.py,sha256=
|
|
414
|
-
letta/services/step_manager.py,sha256=
|
|
415
|
+
letta/services/provider_manager.py,sha256=h4TIcwDgCUCZ6cWSzgEkU8Yz2T6g2cL7Ih9fO5gQkww,11743
|
|
416
|
+
letta/services/run_manager.py,sha256=XY6k2QjZxNjz9tVXUv-_3X_vFO43x71SZWYPZTYqNgo,19769
|
|
417
|
+
letta/services/sandbox_config_manager.py,sha256=FjOEUFhqJkO73uv-Ghzm2af4lRKVFrwvsKVMXBBP3vU,17323
|
|
418
|
+
letta/services/source_manager.py,sha256=WNFL5UH2eyWoqLUOvMaoDkcXOrUOayu9bHtqz-Hk5ak,19407
|
|
419
|
+
letta/services/step_manager.py,sha256=ojuCp46IOTHSoUi3pVprX1jXn2FNm5zxMOCw7lylzLU,24572
|
|
420
|
+
letta/services/streaming_service.py,sha256=9Az3EEY96q_gt6iQP-msfIil7ppaGXWgnV9nBOgFPeQ,22904
|
|
415
421
|
letta/services/telemetry_manager.py,sha256=sf1Cl7pm2NM-HRyLmL7eFcJhJgUYyc2t5Us8aAlmR9U,2540
|
|
416
|
-
letta/services/tool_manager.py,sha256=
|
|
422
|
+
letta/services/tool_manager.py,sha256=u0_eTAT24tfdEx7Bn65AFXF8O0KBG2IauAPehaiRIjo,34130
|
|
417
423
|
letta/services/tool_schema_generator.py,sha256=PA-hOhLi_w9VNbPpC3kt1YWybc2uQfkX5-AMCADGLFM,4847
|
|
418
|
-
letta/services/user_manager.py,sha256=
|
|
424
|
+
letta/services/user_manager.py,sha256=cgeRb3GA9ZI-3xYcl6huXKKN6FxgIjhk41wi81LeAsI,6229
|
|
419
425
|
letta/services/context_window_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
426
|
letta/services/context_window_calculator/context_window_calculator.py,sha256=Ux1UU_l0Nk08HGUMUUrjbtnm2thVRC9bHE7poo8gb8o,8241
|
|
421
427
|
letta/services/context_window_calculator/token_counter.py,sha256=cdSoF8muJmBezE9gf8kL-LG6QOeP5mlaPAp2xr2Upbg,4841
|
|
@@ -435,37 +441,37 @@ letta/services/file_processor/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
435
441
|
letta/services/file_processor/parser/base_parser.py,sha256=WfnXP6fL-xQz4eIHEWa6-ZNEAARbF_alowqH4BAUzJo,238
|
|
436
442
|
letta/services/file_processor/parser/markitdown_parser.py,sha256=BpCM82ocDKbNTKhb2Zu3ffYUXR5fqudiUiwxmmUePg4,3715
|
|
437
443
|
letta/services/file_processor/parser/mistral_parser.py,sha256=NmCdVdpAB5f-VjILJp85pz2rSjlghKEg7qKTFzZLhP8,2384
|
|
438
|
-
letta/services/helpers/agent_manager_helper.py,sha256=
|
|
444
|
+
letta/services/helpers/agent_manager_helper.py,sha256=C8-FHnbJsOOZbneafVuo6PRU4TDuwa5bdqNcO73fbnc,52776
|
|
439
445
|
letta/services/helpers/run_manager_helper.py,sha256=3hzxJ2gA1QEVSP-IhNf6NyTxoXogI8bqPGgqTTNpyRk,2599
|
|
440
446
|
letta/services/helpers/tool_execution_helper.py,sha256=45L7woJ98jK5MQAnhE_4NZdCeyOOzC4328FTQPM7iTA,9159
|
|
441
447
|
letta/services/helpers/tool_parser_helper.py,sha256=gJ-XwvqIgVPlnPVbseHL0YPfTUtk6svqC43-U4VcM5k,4467
|
|
442
448
|
letta/services/lettuce/__init__.py,sha256=UU0Jb58TV72EW204f8U2rru_Q9HlpaxqhECDF3t5N98,151
|
|
443
449
|
letta/services/lettuce/lettuce_client_base.py,sha256=ivQUInT8xLFUZ02yyXZgGIQq53x7NQbOBJ3HOYEGWZk,2719
|
|
444
450
|
letta/services/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
letta/services/mcp/base_client.py,sha256=
|
|
446
|
-
letta/services/mcp/oauth_utils.py,sha256=
|
|
451
|
+
letta/services/mcp/base_client.py,sha256=A9dkow-xkmKRK8fED_Zt4adVTbjQrvmMz4dAoCg_wkU,4882
|
|
452
|
+
letta/services/mcp/oauth_utils.py,sha256=ppwOLZ0i5VqYNq5GfDqccp17pocFUpDvqYAJTrsBRCc,13631
|
|
447
453
|
letta/services/mcp/sse_client.py,sha256=IrzHkYeEg9bEF-4hgHwvcl8GhH8DPomb_Y3nwR1sMmA,1877
|
|
448
454
|
letta/services/mcp/stdio_client.py,sha256=J0S-pnFS2OYYb8YKldYaQKYA2J_qbNnWhfyfRMRlls4,1208
|
|
449
455
|
letta/services/mcp/streamable_http_client.py,sha256=d-5wmrZ7MjLTFbaAUAITEC699TBzJrS0zwr6UhPeAfg,3766
|
|
450
456
|
letta/services/mcp/types.py,sha256=8LYlBwWvdbvfy6ZdXJoin-7QmgmJC7samYXjQZL4KZs,1662
|
|
451
457
|
letta/services/summarizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
458
|
letta/services/summarizer/enums.py,sha256=lo2E1DKB-s2Ydx4PcLia1PIRUOY5yTSsFt_0EZVV2r0,279
|
|
453
|
-
letta/services/summarizer/summarizer.py,sha256=
|
|
459
|
+
letta/services/summarizer/summarizer.py,sha256=ma2YK_2hf5g7owR5Cgm0jbq-QtXy1IS_XOSg75JzaBs,20176
|
|
454
460
|
letta/services/tool_executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
455
461
|
letta/services/tool_executor/builtin_tool_executor.py,sha256=RcAzpBuYANwm4eIuSIYVFAkbSd-l13RZtIp8NMafmDg,11138
|
|
456
462
|
letta/services/tool_executor/composio_tool_executor.py,sha256=BmQokzS1Ze-8oyHSWNX_T2dQ-Y-YqKuShbz8B1czIIk,2284
|
|
457
|
-
letta/services/tool_executor/core_tool_executor.py,sha256=
|
|
458
|
-
letta/services/tool_executor/files_tool_executor.py,sha256=
|
|
463
|
+
letta/services/tool_executor/core_tool_executor.py,sha256=NxePQWD4MenPhA_6rH5UFDt0TCjOEQ-z-xhtDYpunuU,45666
|
|
464
|
+
letta/services/tool_executor/files_tool_executor.py,sha256=mrv4GrWBtgDdZZ3CjKkrRaID0UkWVGXHyH2B7gNQ8eM,37836
|
|
459
465
|
letta/services/tool_executor/mcp_tool_executor.py,sha256=2zEXmkKsH-IGbMG2Xw1S9op4eL21g25RA4vGImB29KY,2000
|
|
460
466
|
letta/services/tool_executor/multi_agent_tool_executor.py,sha256=e5fjVIq5G1Uw69L_ZmholI6cUWSG0l6l3oSqnom33Jg,6422
|
|
461
|
-
letta/services/tool_executor/sandbox_tool_executor.py,sha256=
|
|
462
|
-
letta/services/tool_executor/tool_execution_manager.py,sha256=
|
|
467
|
+
letta/services/tool_executor/sandbox_tool_executor.py,sha256=MmSgYfymWhhiADERBXf9ueAXRL41wjTG7beVJSTbq6U,6280
|
|
468
|
+
letta/services/tool_executor/tool_execution_manager.py,sha256=yjO9q-pLLPgm9dI2bnpZc1mHIZtNy3wF5kqsv1LwKjQ,6790
|
|
463
469
|
letta/services/tool_executor/tool_execution_sandbox.py,sha256=mDK8ZrtC-Fe8MY9gmhONMsjxiiSCJtL4bTrpECKksgQ,25908
|
|
464
470
|
letta/services/tool_executor/tool_executor_base.py,sha256=1U3Jlfb3uzLOJcMb6jM05axpvO4LFrpKsOMXkiwIUFc,1566
|
|
465
471
|
letta/services/tool_sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
|
-
letta/services/tool_sandbox/base.py,sha256=
|
|
472
|
+
letta/services/tool_sandbox/base.py,sha256=3CsViUfv63ot5k0TY-VfGJhUEcsp7GlFlE2my-ySge8,16184
|
|
467
473
|
letta/services/tool_sandbox/e2b_sandbox.py,sha256=a2M1Qxj_kCLQBrJ5vWItreJ2phPWT1Cq3j43d3yvo_A,11260
|
|
468
|
-
letta/services/tool_sandbox/local_sandbox.py,sha256=
|
|
474
|
+
letta/services/tool_sandbox/local_sandbox.py,sha256=1WipHjp8f-QZaBYOKnwSc4ccwffeqMXAW0bP0S-7EME,11907
|
|
469
475
|
letta/services/tool_sandbox/modal_constants.py,sha256=AaXPxSlCj2BhfY5DGwQvqHXfikpurhV2iFsN7zxM3Is,454
|
|
470
476
|
letta/services/tool_sandbox/modal_deployment_manager.py,sha256=rNDcaHSC3ALA8gAgwAnMG-sbz67zqm6Oa8lgSku0Ah0,9157
|
|
471
477
|
letta/services/tool_sandbox/modal_sandbox.py,sha256=bgzcj1ysGiFanr1pYkiWxWd1YjHv9OkXd32iuwDpRA8,17814
|
|
@@ -477,8 +483,8 @@ letta/templates/sandbox_code_file.py.j2,sha256=eXga5J_04Z8-pGdwfOCDjcRnMceIqcF5i
|
|
|
477
483
|
letta/templates/sandbox_code_file_async.py.j2,sha256=lb7nh_P2W9VZHzU_9TxSCEMUod7SDziPXgvT75xVds0,2748
|
|
478
484
|
letta/templates/summary_request_text.j2,sha256=ZttQwXonW2lk4pJLYzLK0pmo4EO4EtUUIXjgXKiizuc,842
|
|
479
485
|
letta/types/__init__.py,sha256=hokKjCVFGEfR7SLMrtZsRsBfsC7yTIbgKPLdGg4K1eY,147
|
|
480
|
-
letta_nightly-0.
|
|
481
|
-
letta_nightly-0.
|
|
482
|
-
letta_nightly-0.
|
|
483
|
-
letta_nightly-0.
|
|
484
|
-
letta_nightly-0.
|
|
486
|
+
letta_nightly-0.13.0.dev20251025104015.dist-info/METADATA,sha256=z_cRjsGOMUjqucp12Gv1qqG5Ws8SnD_DRDm0l0YL2xc,24544
|
|
487
|
+
letta_nightly-0.13.0.dev20251025104015.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
488
|
+
letta_nightly-0.13.0.dev20251025104015.dist-info/entry_points.txt,sha256=m-94Paj-kxiR6Ktu0us0_2qfhn29DzF2oVzqBE6cu8w,41
|
|
489
|
+
letta_nightly-0.13.0.dev20251025104015.dist-info/licenses/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
|
490
|
+
letta_nightly-0.13.0.dev20251025104015.dist-info/RECORD,,
|
letta/schemas/letta_ping.py
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from typing import Literal
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
def create_letta_ping_schema():
|
|
7
|
-
return {
|
|
8
|
-
"properties": {
|
|
9
|
-
"message_type": {
|
|
10
|
-
"type": "string",
|
|
11
|
-
"const": "ping",
|
|
12
|
-
"title": "Message Type",
|
|
13
|
-
"description": "The type of the message.",
|
|
14
|
-
"default": "ping",
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"type": "object",
|
|
18
|
-
"required": ["message_type"],
|
|
19
|
-
"title": "LettaPing",
|
|
20
|
-
"description": "Ping messages are a keep-alive to prevent SSE streams from timing out during long running requests.",
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class LettaPing(BaseModel):
|
|
25
|
-
message_type: Literal["ping"] = Field(
|
|
26
|
-
"ping",
|
|
27
|
-
description="The type of the message. Ping messages are a keep-alive to prevent SSE streams from timing out during long running requests.",
|
|
28
|
-
)
|
|
File without changes
|