letta-nightly 0.1.7.dev20241001104147__py3-none-any.whl → 0.1.7.dev20241002104051__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/agent.py +18 -55
- letta/client/client.py +1 -1
- letta/functions/functions.py +1 -24
- letta/functions/helpers.py +27 -11
- letta/schemas/tool.py +3 -3
- 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.dev20241002104051.dist-info}/METADATA +12 -10
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241002104051.dist-info}/RECORD +12 -13
- letta/server/static_files/assets/index-486e3228.js +0 -274
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241002104051.dist-info}/LICENSE +0 -0
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241002104051.dist-info}/WHEEL +0 -0
- {letta_nightly-0.1.7.dev20241001104147.dist-info → letta_nightly-0.1.7.dev20241002104051.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.dev20241002104051
|
|
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,11 @@ 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: crewai (>=0.41.1,<0.42.0) ; extra == "
|
|
27
|
-
Requires-Dist: crewai-tools (>=0.8.3,<0.9.0) ; extra == "
|
|
26
|
+
Requires-Dist: crewai (>=0.41.1,<0.42.0) ; extra == "external-tools"
|
|
27
|
+
Requires-Dist: crewai-tools (>=0.8.3,<0.9.0) ; extra == "external-tools"
|
|
28
28
|
Requires-Dist: datasets (>=2.14.6,<3.0.0) ; extra == "dev"
|
|
29
29
|
Requires-Dist: demjson3 (>=3.0.6,<4.0.0)
|
|
30
|
-
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "
|
|
30
|
+
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "external-tools"
|
|
31
31
|
Requires-Dist: docstring-parser (>=0.16,<0.17)
|
|
32
32
|
Requires-Dist: docx2txt (>=0.8,<0.9)
|
|
33
33
|
Requires-Dist: fastapi (>=0.104.1,<0.105.0) ; extra == "server"
|
|
@@ -36,6 +36,8 @@ Requires-Dist: httpx (>=0.27.2,<0.28.0)
|
|
|
36
36
|
Requires-Dist: httpx-sse (>=0.4.0,<0.5.0)
|
|
37
37
|
Requires-Dist: isort (>=5.13.2,<6.0.0) ; extra == "dev"
|
|
38
38
|
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
|
39
|
+
Requires-Dist: langchain (>=0.2.16,<0.3.0) ; extra == "external-tools"
|
|
40
|
+
Requires-Dist: langchain-community (>=0.2.17,<0.3.0) ; extra == "external-tools"
|
|
39
41
|
Requires-Dist: llama-index (>=0.11.9,<0.12.0)
|
|
40
42
|
Requires-Dist: llama-index-embeddings-ollama (>=0.3.1,<0.4.0) ; extra == "ollama"
|
|
41
43
|
Requires-Dist: llama-index-embeddings-openai (>=0.2.5,<0.3.0)
|
|
@@ -70,7 +72,7 @@ Requires-Dist: tqdm (>=4.66.1,<5.0.0)
|
|
|
70
72
|
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
|
|
71
73
|
Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server"
|
|
72
74
|
Requires-Dist: websockets (>=12.0,<13.0) ; extra == "server"
|
|
73
|
-
Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "tests"
|
|
75
|
+
Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "external-tools" or extra == "tests"
|
|
74
76
|
Description-Content-Type: text/markdown
|
|
75
77
|
|
|
76
78
|
# Letta (previously MemGPT)
|
|
@@ -79,13 +81,13 @@ Description-Content-Type: text/markdown
|
|
|
79
81
|
[](https://arxiv.org/abs/2310.08560)
|
|
80
82
|
|
|
81
83
|
> [!NOTE]
|
|
82
|
-
> **Looking for MemGPT?**
|
|
84
|
+
> **Looking for MemGPT?** You're in the right place!
|
|
83
85
|
>
|
|
84
|
-
> The MemGPT package and Docker image have been renamed to `letta` to clarify the distinction between
|
|
86
|
+
> 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
87
|
>
|
|
86
|
-
> You use the **Letta
|
|
88
|
+
> 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
89
|
|
|
88
|
-
|
|
90
|
+
Visit our [documentation page](https://docs.letta.com) for information on setup and usage.
|
|
89
91
|
|
|
90
92
|
## How to Get Involved
|
|
91
93
|
* **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
1
|
letta/__init__.py,sha256=GLC0hUCM1OicDGDXuV0_AX6m4Irjqy2K_GSy43nbdLc,997
|
|
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=YpUdt_XshDdsM4OJB6CFNNKB0c-heOqNKTgJeiFMzFc,8693
|
|
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
|
|
@@ -131,7 +131,7 @@ letta/schemas/openai/openai.py,sha256=Hilo5BiLAGabzxCwnwfzK5QrWqwYD8epaEKFa4Pwnd
|
|
|
131
131
|
letta/schemas/organization.py,sha256=JSc3hLl0IO_c9iOqf367sU5tJ0Dx_kPzbokCEg0eS4g,601
|
|
132
132
|
letta/schemas/passage.py,sha256=ZO8-WOToLgf-DzUkREp9MQF274SLYeZwnSoNo2sKPHc,3573
|
|
133
133
|
letta/schemas/source.py,sha256=rAM3Xjt7zJ3JLXpUxWmdYIujns4ZuqGCsozmNAWX5kI,2570
|
|
134
|
-
letta/schemas/tool.py,sha256=
|
|
134
|
+
letta/schemas/tool.py,sha256=JZE93JgN2pOds2dMjXF4uoP6AK7F5I72DjfnLRIJDNk,6502
|
|
135
135
|
letta/schemas/usage.py,sha256=lvn1ooHwLEdv6gwQpw5PBUbcwn_gwdT6HA-fCiix6sY,817
|
|
136
136
|
letta/schemas/user.py,sha256=D7DiPzieXZIHOLInJdYZlHjKOy2bl7KxGCesNk0yf5E,1003
|
|
137
137
|
letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -167,11 +167,10 @@ letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_
|
|
|
167
167
|
letta/server/rest_api/utils.py,sha256=Fc2ZGKzLaBa2sEtSTVjJ8D5M0xIwsWC0CVAOIJaD3rY,2176
|
|
168
168
|
letta/server/server.py,sha256=owbs2Ep2Wck6WrFBttOQizedmJK8be16aOm6FkxXo2s,83726
|
|
169
169
|
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
170
|
letta/server/static_files/assets/index-156816da.css,sha256=FWgW2kKzk1X8_t6e4qtOIAUvZ59YPdB-PMNqvPRCup4,54271
|
|
172
|
-
letta/server/static_files/assets/index-
|
|
171
|
+
letta/server/static_files/assets/index-4d08d8a3.js,sha256=derdyBpqTPKpZWIPfQPffrt1nV3T-zeim-2jD5G1Pzw,1816269
|
|
173
172
|
letta/server/static_files/favicon.ico,sha256=DezhLdFSbM8o81wCOZcV3riq7tFUOGQD4h6-vr-HuU0,342
|
|
174
|
-
letta/server/static_files/index.html,sha256=
|
|
173
|
+
letta/server/static_files/index.html,sha256=BtlT8Ujgw522VkYeppYN4RvIjckEuidJaR-ApMLeenQ,1198
|
|
175
174
|
letta/server/static_files/memgpt_logo_transparent.png,sha256=7l6niNb4MlUILxLlUZPxIE1TEHj_Z9f9XDxoST3d7Vw,85383
|
|
176
175
|
letta/server/utils.py,sha256=rRvW6L1lzau4u9boamiyZH54lf5tQ91ypXzUW9cfSPA,1667
|
|
177
176
|
letta/server/ws_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -183,8 +182,8 @@ letta/settings.py,sha256=1S0CN3fCGdZIdhIWPNJO5k2vmosrNRux4arnCj7dYQg,6502
|
|
|
183
182
|
letta/streaming_interface.py,sha256=LPY1NmXtptcjdHrfVOOKL4-v3AyUD8SIyQMt1Dypd1A,15532
|
|
184
183
|
letta/system.py,sha256=buKYPqG5n2x41hVmWpu6JUpyd7vTWED9Km2_M7dLrvk,6960
|
|
185
184
|
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.
|
|
185
|
+
letta_nightly-0.1.7.dev20241002104051.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
|
|
186
|
+
letta_nightly-0.1.7.dev20241002104051.dist-info/METADATA,sha256=CZRkBRUH41egw16NT07RzK7gInHg883ZJl2ksmU2mbc,5812
|
|
187
|
+
letta_nightly-0.1.7.dev20241002104051.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
188
|
+
letta_nightly-0.1.7.dev20241002104051.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
|
|
189
|
+
letta_nightly-0.1.7.dev20241002104051.dist-info/RECORD,,
|