letta-nightly 0.1.7.dev20241001104147__py3-none-any.whl → 0.1.7.dev20241003104113__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 +1 -1
- letta/agent.py +18 -55
- letta/client/client.py +1 -1
- letta/functions/functions.py +1 -24
- letta/functions/helpers.py +74 -12
- letta/llm_api/openai.py +2 -0
- letta/schemas/block.py +1 -9
- letta/schemas/health.py +10 -0
- letta/schemas/tool.py +52 -3
- letta/server/rest_api/routers/v1/__init__.py +2 -0
- letta/server/rest_api/routers/v1/health.py +20 -0
- letta/server/static_files/assets/{index-0cbf7ad5.js → index-4d08d8a3.js} +75 -75
- letta/server/static_files/index.html +1 -1
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241003104113.dist-info}/METADATA +14 -10
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241003104113.dist-info}/RECORD +18 -17
- letta/server/static_files/assets/index-486e3228.js +0 -274
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241003104113.dist-info}/LICENSE +0 -0
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241003104113.dist-info}/WHEEL +0 -0
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241003104113.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
</script>
|
|
32
|
-
<script type="module" crossorigin src="/assets/index-
|
|
32
|
+
<script type="module" crossorigin src="/assets/index-4d08d8a3.js"></script>
|
|
33
33
|
<link rel="stylesheet" href="/assets/index-156816da.css">
|
|
34
34
|
</head>
|
|
35
35
|
<body>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-nightly
|
|
3
|
-
Version: 0.1.7.
|
|
3
|
+
Version: 0.1.7.dev20241003104113
|
|
4
4
|
Summary: Create LLM agents with long-term memory and custom tools
|
|
5
5
|
License: Apache License
|
|
6
6
|
Author: Letta Team
|
|
@@ -12,8 +12,8 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Provides-Extra: autogen
|
|
15
|
-
Provides-Extra: crewai-tools
|
|
16
15
|
Provides-Extra: dev
|
|
16
|
+
Provides-Extra: external-tools
|
|
17
17
|
Provides-Extra: milvus
|
|
18
18
|
Provides-Extra: ollama
|
|
19
19
|
Provides-Extra: postgres
|
|
@@ -23,11 +23,13 @@ Provides-Extra: tests
|
|
|
23
23
|
Requires-Dist: autoflake (>=2.3.0,<3.0.0) ; extra == "dev"
|
|
24
24
|
Requires-Dist: black[jupyter] (>=24.2.0,<25.0.0) ; extra == "dev"
|
|
25
25
|
Requires-Dist: chromadb (>=0.4.24,<0.5.0)
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
26
|
+
Requires-Dist: composio-core (>=0.5.28,<0.6.0) ; extra == "external-tools"
|
|
27
|
+
Requires-Dist: composio-langchain (>=0.5.28,<0.6.0) ; extra == "external-tools"
|
|
28
|
+
Requires-Dist: crewai (>=0.41.1,<0.42.0) ; extra == "external-tools"
|
|
29
|
+
Requires-Dist: crewai-tools (>=0.8.3,<0.9.0) ; extra == "external-tools"
|
|
28
30
|
Requires-Dist: datasets (>=2.14.6,<3.0.0) ; extra == "dev"
|
|
29
31
|
Requires-Dist: demjson3 (>=3.0.6,<4.0.0)
|
|
30
|
-
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "
|
|
32
|
+
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "external-tools"
|
|
31
33
|
Requires-Dist: docstring-parser (>=0.16,<0.17)
|
|
32
34
|
Requires-Dist: docx2txt (>=0.8,<0.9)
|
|
33
35
|
Requires-Dist: fastapi (>=0.104.1,<0.105.0) ; extra == "server"
|
|
@@ -36,6 +38,8 @@ Requires-Dist: httpx (>=0.27.2,<0.28.0)
|
|
|
36
38
|
Requires-Dist: httpx-sse (>=0.4.0,<0.5.0)
|
|
37
39
|
Requires-Dist: isort (>=5.13.2,<6.0.0) ; extra == "dev"
|
|
38
40
|
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
|
41
|
+
Requires-Dist: langchain (>=0.2.16,<0.3.0) ; extra == "external-tools"
|
|
42
|
+
Requires-Dist: langchain-community (>=0.2.17,<0.3.0) ; extra == "external-tools"
|
|
39
43
|
Requires-Dist: llama-index (>=0.11.9,<0.12.0)
|
|
40
44
|
Requires-Dist: llama-index-embeddings-ollama (>=0.3.1,<0.4.0) ; extra == "ollama"
|
|
41
45
|
Requires-Dist: llama-index-embeddings-openai (>=0.2.5,<0.3.0)
|
|
@@ -70,7 +74,7 @@ Requires-Dist: tqdm (>=4.66.1,<5.0.0)
|
|
|
70
74
|
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
|
|
71
75
|
Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server"
|
|
72
76
|
Requires-Dist: websockets (>=12.0,<13.0) ; extra == "server"
|
|
73
|
-
Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "tests"
|
|
77
|
+
Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "external-tools" or extra == "tests"
|
|
74
78
|
Description-Content-Type: text/markdown
|
|
75
79
|
|
|
76
80
|
# Letta (previously MemGPT)
|
|
@@ -79,13 +83,13 @@ Description-Content-Type: text/markdown
|
|
|
79
83
|
[](https://arxiv.org/abs/2310.08560)
|
|
80
84
|
|
|
81
85
|
> [!NOTE]
|
|
82
|
-
> **Looking for MemGPT?**
|
|
86
|
+
> **Looking for MemGPT?** You're in the right place!
|
|
83
87
|
>
|
|
84
|
-
> The MemGPT package and Docker image have been renamed to `letta` to clarify the distinction between
|
|
88
|
+
> The MemGPT package and Docker image have been renamed to `letta` to clarify the distinction between MemGPT agents and the API server / runtime that runs LLM agents as *services*.
|
|
85
89
|
>
|
|
86
|
-
> You use the **Letta
|
|
90
|
+
> You use the **Letta _framework_** to create **MemGPT _agents_**. Read more about the relationship between MemGPT and Letta [here](https://www.letta.com/blog/memgpt-and-letta).
|
|
87
91
|
|
|
88
|
-
|
|
92
|
+
Visit our [documentation page](https://docs.letta.com) for information on setup and usage.
|
|
89
93
|
|
|
90
94
|
## How to Get Involved
|
|
91
95
|
* **Contribute to the Project**: Interested in contributing? Start by reading our [Contribution Guidelines](https://github.com/cpacker/MemGPT/tree/main/CONTRIBUTING.md).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
letta/__init__.py,sha256=
|
|
1
|
+
letta/__init__.py,sha256=6ssNZ5ATYwZgMO16kAYqm-2tMfj2xhA0-kJJhj_eqfw,996
|
|
2
2
|
letta/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
|
|
3
|
-
letta/agent.py,sha256=
|
|
3
|
+
letta/agent.py,sha256=GdNhMG_ypSmkU8FDqNf3BQMMftRsIrNAbzyhqlIv2jE,65251
|
|
4
4
|
letta/agent_store/chroma.py,sha256=upR5zGnGs6I6btulEYbiZdGG87BgKjxUJOQZ4Y-RQ_M,12492
|
|
5
5
|
letta/agent_store/db.py,sha256=uoWu4nfQ6YmT2WKTkNyV5mP25hxpZXAvQqans4JhnM4,21798
|
|
6
6
|
letta/agent_store/lancedb.py,sha256=8RWmqVjowm5g0cc6DNRcb6f1FHGEqFnccnuekhWY39U,5101
|
|
@@ -14,7 +14,7 @@ letta/cli/cli_config.py,sha256=MSxqbS5F9jUSjCgLkd-6T5Hj3ca_l-AoSwXc6dgy13E,57093
|
|
|
14
14
|
letta/cli/cli_load.py,sha256=aVlGWiNEUs_eG793HLl7cES-dEIuA1CJfZpT1Cm8Uo4,4591
|
|
15
15
|
letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
letta/client/admin.py,sha256=itdH1dGL143Je5tkZl8dQ1PavjepClar3QasxpbX1cI,7397
|
|
17
|
-
letta/client/client.py,sha256=
|
|
17
|
+
letta/client/client.py,sha256=Dy9me2wEcEjH3tCH_qLKTjyf1j0QBiGHwFF0dVXmhWI,80578
|
|
18
18
|
letta/client/streaming.py,sha256=bfWlUu7z7EoPfKxBqIarYxGKyrL7Pj79BlliToqcCgI,4592
|
|
19
19
|
letta/client/utils.py,sha256=NMFts6bFsHTV0yW3BRRo2HSqGr6Gr3tj1kNtkUCgMCA,2262
|
|
20
20
|
letta/config.py,sha256=iqKPKBlR-Qkmso3wAukRfmhkQnCqXT_lKUQuFjkjuwI,19050
|
|
@@ -29,8 +29,8 @@ letta/errors.py,sha256=nfcpmrEQNBtuhuhj6hvx4Hg0lP23rnoTd32pb56vBRo,820
|
|
|
29
29
|
letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
letta/functions/function_sets/base.py,sha256=N4QmOjL6gDEyOg67ocF6zVKM-NquTo-yXG_T8r18buA,6440
|
|
31
31
|
letta/functions/function_sets/extras.py,sha256=Jik3UiDqYTm4Lam1XPTvuVjvgUHwIAhopsnbmVhGMBg,4732
|
|
32
|
-
letta/functions/functions.py,sha256=
|
|
33
|
-
letta/functions/helpers.py,sha256=
|
|
32
|
+
letta/functions/functions.py,sha256=OU98c-Rds9UCQ8CufzdrpzSZsQ0a02uDv_x5VqoNFfw,3381
|
|
33
|
+
letta/functions/helpers.py,sha256=dzeQ1hsxI-20QcVzkS8y55aCJw3iGbtm4oqBobb_tIM,9876
|
|
34
34
|
letta/functions/schema_generator.py,sha256=v3LXdA5UVQXqpBkURK2H5PZuZoLlpZygleG35T3vMBc,6488
|
|
35
35
|
letta/humans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
letta/humans/examples/basic.txt,sha256=Lcp8YESTWvOJgO4Yf_yyQmgo5bKakeB1nIVrwEGG6PA,17
|
|
@@ -42,7 +42,7 @@ letta/llm_api/azure_openai.py,sha256=NjAVifNpjbTSGa9dZ4lS12sjwRWZBsmB1wlIGD4m4aI
|
|
|
42
42
|
letta/llm_api/cohere.py,sha256=vDRd-SUGp1t_JUIdwC3RkIhwMl0OY7n-tAU9uPORYkY,14826
|
|
43
43
|
letta/llm_api/google_ai.py,sha256=Ksf4vlYoWRe5JtiPOqxaArDnjUbAS8fxX_zwgt-2buQ,19100
|
|
44
44
|
letta/llm_api/llm_api_tools.py,sha256=hoWYAG11YNN5YzOuemePKX2gPURCROvi0ra4XAMMsO8,20529
|
|
45
|
-
letta/llm_api/openai.py,sha256=
|
|
45
|
+
letta/llm_api/openai.py,sha256=BViGY7gybFgK8qmvVn_HDAHGd_lcWxMRzrzF0imzfdY,21154
|
|
46
46
|
letta/local_llm/README.md,sha256=hFJyw5B0TU2jrh9nb0zGZMgdH-Ei1dSRfhvPQG_NSoU,168
|
|
47
47
|
letta/local_llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
letta/local_llm/chat_completion_proxy.py,sha256=CQ3G9Ci6AUAd2DiJ8QOgpnUNFt6WaM0fNQeuP7ao6H4,13296
|
|
@@ -111,10 +111,11 @@ letta/prompts/system/memgpt_modified_chat.txt,sha256=HOaPVurEftD8KsuwsclDgE2afIf
|
|
|
111
111
|
letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
letta/schemas/agent.py,sha256=OUnKIKK2WRtXp5F9tGiaWL-h80Ep5LZFK0K85vulzr4,5856
|
|
113
113
|
letta/schemas/api_key.py,sha256=u07yzzMn-hBAHZIIKbWY16KsgiFjSNR8lAghpMUo3_4,682
|
|
114
|
-
letta/schemas/block.py,sha256=
|
|
114
|
+
letta/schemas/block.py,sha256=3u8bQoNh21a5Paa-QkAX76DWFC0sK0XA33Ct7TAfkvA,3986
|
|
115
115
|
letta/schemas/document.py,sha256=JpvU0YkvOVLvHaDNcg-ihFzpeHC2zqsWBgyJ6zHnfNw,745
|
|
116
116
|
letta/schemas/embedding_config.py,sha256=KhEOStOD8VbHFyLI9pkQVbTG1Av2g-Ql0yf9M868LME,2570
|
|
117
117
|
letta/schemas/enums.py,sha256=WfRYpLh_pD-VyhEnp3Y6pPfx063zq2o4jky6PulqO8w,629
|
|
118
|
+
letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
|
|
118
119
|
letta/schemas/job.py,sha256=bYDrjbJm2B4LUTSkLUdQR_HDhL2E23g0EHf7E23ezYU,1547
|
|
119
120
|
letta/schemas/letta_base.py,sha256=4QXFgyjCHqIagi8B6_4nmqb9eoJ52Y6aCxBxQpGX48M,2832
|
|
120
121
|
letta/schemas/letta_message.py,sha256=Slgxa59qZfdvqXuCVHOt03u-7JL456ZY-WLaK5UYYKU,6234
|
|
@@ -131,7 +132,7 @@ letta/schemas/openai/openai.py,sha256=Hilo5BiLAGabzxCwnwfzK5QrWqwYD8epaEKFa4Pwnd
|
|
|
131
132
|
letta/schemas/organization.py,sha256=JSc3hLl0IO_c9iOqf367sU5tJ0Dx_kPzbokCEg0eS4g,601
|
|
132
133
|
letta/schemas/passage.py,sha256=ZO8-WOToLgf-DzUkREp9MQF274SLYeZwnSoNo2sKPHc,3573
|
|
133
134
|
letta/schemas/source.py,sha256=rAM3Xjt7zJ3JLXpUxWmdYIujns4ZuqGCsozmNAWX5kI,2570
|
|
134
|
-
letta/schemas/tool.py,sha256=
|
|
135
|
+
letta/schemas/tool.py,sha256=Xutv0JyoSmxgmUykQI_lYtn54bf85CG-2hZQs6TIbKc,8591
|
|
135
136
|
letta/schemas/usage.py,sha256=lvn1ooHwLEdv6gwQpw5PBUbcwn_gwdT6HA-fCiix6sY,817
|
|
136
137
|
letta/schemas/user.py,sha256=D7DiPzieXZIHOLInJdYZlHjKOy2bl7KxGCesNk0yf5E,1003
|
|
137
138
|
letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -154,9 +155,10 @@ letta/server/rest_api/routers/openai/assistants/schemas.py,sha256=d3LdBLUI-mMUCP
|
|
|
154
155
|
letta/server/rest_api/routers/openai/assistants/threads.py,sha256=5-5XsbEDLIZ_xyur5LJVELWLc5PyDc-mkqLQ9t4awmw,13554
|
|
155
156
|
letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
157
|
letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=5RxCClOm0JCDzLAbh1K8C-dGIrERKUxC4DJPlMcPcgw,4758
|
|
157
|
-
letta/server/rest_api/routers/v1/__init__.py,sha256=
|
|
158
|
+
letta/server/rest_api/routers/v1/__init__.py,sha256=sqlVZa-u9DJwdRsp0_8YUGrac9DHguIB4wETlEDRylA,666
|
|
158
159
|
letta/server/rest_api/routers/v1/agents.py,sha256=AsLvhZjXBRd7_hbxrvKvccKQtkcjkHpZmEqm6xe5w8U,19462
|
|
159
160
|
letta/server/rest_api/routers/v1/blocks.py,sha256=xY-9k2e2dTRsU9Zh-kT164Z977O0Ed_YYBjLaWKbDpE,2293
|
|
161
|
+
letta/server/rest_api/routers/v1/health.py,sha256=pKCuVESlVOhGIb4VC4K-H82eZqfghmT6kvj2iOkkKuc,401
|
|
160
162
|
letta/server/rest_api/routers/v1/jobs.py,sha256=YHEKALAkSCvF_gzIhvsTkqaLdIhFBYrTNmwCtnzohhM,1574
|
|
161
163
|
letta/server/rest_api/routers/v1/llms.py,sha256=1O1YiSNeJBnSZY1dFiH58Gk3dodR2GrsgAkG-hR9p9c,797
|
|
162
164
|
letta/server/rest_api/routers/v1/organizations.py,sha256=i3S9E1hu2Zj9g0pRv6wnQhz1VJ_RMIHCrGzgwY-Wj3Y,1945
|
|
@@ -167,11 +169,10 @@ letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_
|
|
|
167
169
|
letta/server/rest_api/utils.py,sha256=Fc2ZGKzLaBa2sEtSTVjJ8D5M0xIwsWC0CVAOIJaD3rY,2176
|
|
168
170
|
letta/server/server.py,sha256=owbs2Ep2Wck6WrFBttOQizedmJK8be16aOm6FkxXo2s,83726
|
|
169
171
|
letta/server/startup.sh,sha256=jeGV7B_PS0hS-tT6o6GpACrUbV9WV1NI2L9aLoUDDtc,311
|
|
170
|
-
letta/server/static_files/assets/index-0cbf7ad5.js,sha256=MCP81_BE6xKu6Yp2fwiumwsojg-6inAI-tKVQHoRwtE,1814412
|
|
171
172
|
letta/server/static_files/assets/index-156816da.css,sha256=FWgW2kKzk1X8_t6e4qtOIAUvZ59YPdB-PMNqvPRCup4,54271
|
|
172
|
-
letta/server/static_files/assets/index-
|
|
173
|
+
letta/server/static_files/assets/index-4d08d8a3.js,sha256=derdyBpqTPKpZWIPfQPffrt1nV3T-zeim-2jD5G1Pzw,1816269
|
|
173
174
|
letta/server/static_files/favicon.ico,sha256=DezhLdFSbM8o81wCOZcV3riq7tFUOGQD4h6-vr-HuU0,342
|
|
174
|
-
letta/server/static_files/index.html,sha256=
|
|
175
|
+
letta/server/static_files/index.html,sha256=BtlT8Ujgw522VkYeppYN4RvIjckEuidJaR-ApMLeenQ,1198
|
|
175
176
|
letta/server/static_files/memgpt_logo_transparent.png,sha256=7l6niNb4MlUILxLlUZPxIE1TEHj_Z9f9XDxoST3d7Vw,85383
|
|
176
177
|
letta/server/utils.py,sha256=rRvW6L1lzau4u9boamiyZH54lf5tQ91ypXzUW9cfSPA,1667
|
|
177
178
|
letta/server/ws_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -183,8 +184,8 @@ letta/settings.py,sha256=1S0CN3fCGdZIdhIWPNJO5k2vmosrNRux4arnCj7dYQg,6502
|
|
|
183
184
|
letta/streaming_interface.py,sha256=LPY1NmXtptcjdHrfVOOKL4-v3AyUD8SIyQMt1Dypd1A,15532
|
|
184
185
|
letta/system.py,sha256=buKYPqG5n2x41hVmWpu6JUpyd7vTWED9Km2_M7dLrvk,6960
|
|
185
186
|
letta/utils.py,sha256=LyqSRz_FejtsdelKigpV86kT8GRVrLwkXIOVQLHPm7Q,30661
|
|
186
|
-
letta_nightly-0.1.7.
|
|
187
|
-
letta_nightly-0.1.7.
|
|
188
|
-
letta_nightly-0.1.7.
|
|
189
|
-
letta_nightly-0.1.7.
|
|
190
|
-
letta_nightly-0.1.7.
|
|
187
|
+
letta_nightly-0.1.7.dev20241003104113.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
|
188
|
+
letta_nightly-0.1.7.dev20241003104113.dist-info/METADATA,sha256=l8vUIb9r_CWkw7QkY4dPuiyli9i6Uj2pMEwpRgPq7HI,5967
|
|
189
|
+
letta_nightly-0.1.7.dev20241003104113.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
190
|
+
letta_nightly-0.1.7.dev20241003104113.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
|
191
|
+
letta_nightly-0.1.7.dev20241003104113.dist-info/RECORD,,
|