letta-nightly 0.6.2.dev20241210104242__py3-none-any.whl → 0.6.3.dev20241211050151__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.

Files changed (44) hide show
  1. letta/__init__.py +1 -1
  2. letta/agent.py +32 -43
  3. letta/agent_store/db.py +12 -54
  4. letta/agent_store/storage.py +10 -9
  5. letta/cli/cli.py +1 -0
  6. letta/client/client.py +3 -2
  7. letta/config.py +2 -2
  8. letta/data_sources/connectors.py +4 -3
  9. letta/embeddings.py +29 -9
  10. letta/functions/function_sets/base.py +36 -11
  11. letta/metadata.py +13 -2
  12. letta/o1_agent.py +2 -3
  13. letta/offline_memory_agent.py +2 -1
  14. letta/orm/__init__.py +1 -0
  15. letta/orm/file.py +1 -0
  16. letta/orm/mixins.py +12 -2
  17. letta/orm/organization.py +3 -0
  18. letta/orm/passage.py +72 -0
  19. letta/orm/sqlalchemy_base.py +36 -7
  20. letta/orm/sqlite_functions.py +140 -0
  21. letta/orm/user.py +1 -1
  22. letta/schemas/agent.py +4 -3
  23. letta/schemas/letta_message.py +5 -1
  24. letta/schemas/letta_request.py +3 -3
  25. letta/schemas/passage.py +6 -4
  26. letta/schemas/sandbox_config.py +1 -0
  27. letta/schemas/tool_rule.py +0 -3
  28. letta/server/rest_api/app.py +34 -12
  29. letta/server/rest_api/routers/v1/agents.py +19 -6
  30. letta/server/server.py +182 -43
  31. letta/server/static_files/assets/{index-4848e3d7.js → index-048c9598.js} +1 -1
  32. letta/server/static_files/assets/{index-43ab4d62.css → index-0e31b727.css} +1 -1
  33. letta/server/static_files/index.html +2 -2
  34. letta/services/passage_manager.py +225 -0
  35. letta/services/source_manager.py +2 -1
  36. letta/services/tool_execution_sandbox.py +18 -6
  37. letta/settings.py +2 -0
  38. letta_nightly-0.6.3.dev20241211050151.dist-info/METADATA +375 -0
  39. {letta_nightly-0.6.2.dev20241210104242.dist-info → letta_nightly-0.6.3.dev20241211050151.dist-info}/RECORD +42 -40
  40. letta/agent_store/chroma.py +0 -297
  41. letta_nightly-0.6.2.dev20241210104242.dist-info/METADATA +0 -212
  42. {letta_nightly-0.6.2.dev20241210104242.dist-info → letta_nightly-0.6.3.dev20241211050151.dist-info}/LICENSE +0 -0
  43. {letta_nightly-0.6.2.dev20241210104242.dist-info → letta_nightly-0.6.3.dev20241211050151.dist-info}/WHEEL +0 -0
  44. {letta_nightly-0.6.2.dev20241210104242.dist-info → letta_nightly-0.6.3.dev20241211050151.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,375 @@
1
+ Metadata-Version: 2.1
2
+ Name: letta-nightly
3
+ Version: 0.6.3.dev20241211050151
4
+ Summary: Create LLM agents with long-term memory and custom tools
5
+ License: Apache License
6
+ Author: Letta Team
7
+ Author-email: contact@letta.com
8
+ Requires-Python: >=3.10,<4.0
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Provides-Extra: all
15
+ Provides-Extra: cloud-tool-sandbox
16
+ Provides-Extra: dev
17
+ Provides-Extra: external-tools
18
+ Provides-Extra: postgres
19
+ Provides-Extra: qdrant
20
+ Provides-Extra: server
21
+ Provides-Extra: tests
22
+ Requires-Dist: alembic (>=1.13.3,<2.0.0)
23
+ Requires-Dist: autoflake (>=2.3.0,<3.0.0) ; extra == "dev" or extra == "all"
24
+ Requires-Dist: black[jupyter] (>=24.2.0,<25.0.0) ; extra == "dev" or extra == "all"
25
+ Requires-Dist: brotli (>=1.1.0,<2.0.0)
26
+ Requires-Dist: composio-core (>=0.5.51,<0.6.0)
27
+ Requires-Dist: composio-langchain (>=0.5.28,<0.6.0)
28
+ Requires-Dist: datasets (>=2.14.6,<3.0.0) ; extra == "dev" or extra == "all"
29
+ Requires-Dist: demjson3 (>=3.0.6,<4.0.0)
30
+ Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "external-tools" or extra == "all"
31
+ Requires-Dist: docstring-parser (>=0.16,<0.17)
32
+ Requires-Dist: docx2txt (>=0.8,<0.9)
33
+ Requires-Dist: e2b-code-interpreter (>=1.0.3,<2.0.0) ; extra == "cloud-tool-sandbox"
34
+ Requires-Dist: fastapi (>=0.115.6,<0.116.0) ; extra == "server" or extra == "all"
35
+ Requires-Dist: grpcio (>=1.68.1,<2.0.0)
36
+ Requires-Dist: grpcio-tools (>=1.68.1,<2.0.0)
37
+ Requires-Dist: html2text (>=2020.1.16,<2021.0.0)
38
+ Requires-Dist: httpx (>=0.28.0,<0.29.0)
39
+ Requires-Dist: httpx-sse (>=0.4.0,<0.5.0)
40
+ Requires-Dist: isort (>=5.13.2,<6.0.0) ; extra == "dev" or extra == "all"
41
+ Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
42
+ Requires-Dist: langchain (>=0.3.7,<0.4.0) ; extra == "external-tools" or extra == "all"
43
+ Requires-Dist: langchain-community (>=0.3.7,<0.4.0) ; extra == "external-tools" or extra == "all"
44
+ Requires-Dist: llama-index (>=0.12.2,<0.13.0)
45
+ Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
46
+ Requires-Dist: locust (>=2.31.5,<3.0.0) ; extra == "dev" or extra == "all"
47
+ Requires-Dist: nltk (>=3.8.1,<4.0.0)
48
+ Requires-Dist: numpy (>=1.26.2,<2.0.0)
49
+ Requires-Dist: pathvalidate (>=3.2.1,<4.0.0)
50
+ Requires-Dist: pexpect (>=4.9.0,<5.0.0) ; extra == "dev" or extra == "all"
51
+ Requires-Dist: pg8000 (>=1.30.3,<2.0.0) ; extra == "postgres" or extra == "all"
52
+ Requires-Dist: pgvector (>=0.2.3,<0.3.0) ; extra == "postgres" or extra == "all"
53
+ Requires-Dist: pre-commit (>=3.5.0,<4.0.0) ; extra == "dev" or extra == "all"
54
+ Requires-Dist: prettytable (>=3.9.0,<4.0.0)
55
+ Requires-Dist: psycopg2 (>=2.9.10,<3.0.0) ; extra == "postgres" or extra == "all"
56
+ Requires-Dist: psycopg2-binary (>=2.9.10,<3.0.0) ; extra == "postgres" or extra == "all"
57
+ Requires-Dist: pydantic (>=2.7.4,<2.10.0)
58
+ Requires-Dist: pydantic-settings (>=2.2.1,<3.0.0)
59
+ Requires-Dist: pyhumps (>=3.8.0,<4.0.0)
60
+ Requires-Dist: pyright (>=1.1.347,<2.0.0) ; extra == "dev" or extra == "all"
61
+ Requires-Dist: pytest-asyncio (>=0.23.2,<0.24.0) ; extra == "dev" or extra == "all"
62
+ Requires-Dist: pytest-order (>=1.2.0,<2.0.0) ; extra == "dev" or extra == "all"
63
+ Requires-Dist: python-box (>=7.1.1,<8.0.0)
64
+ Requires-Dist: python-multipart (>=0.0.9,<0.0.10)
65
+ Requires-Dist: pytz (>=2023.3.post1,<2024.0)
66
+ Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
67
+ Requires-Dist: qdrant-client (>=1.9.1,<2.0.0) ; extra == "qdrant"
68
+ Requires-Dist: questionary (>=2.0.1,<3.0.0)
69
+ Requires-Dist: rich (>=13.9.4,<14.0.0)
70
+ Requires-Dist: sentry-sdk[fastapi] (==2.19.1)
71
+ Requires-Dist: setuptools (>=68.2.2,<69.0.0)
72
+ Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
73
+ Requires-Dist: sqlalchemy-json (>=0.7.0,<0.8.0)
74
+ Requires-Dist: sqlalchemy-utils (>=0.41.2,<0.42.0)
75
+ Requires-Dist: sqlmodel (>=0.0.16,<0.0.17)
76
+ Requires-Dist: tqdm (>=4.66.1,<5.0.0)
77
+ Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
78
+ Requires-Dist: uvicorn (>=0.24.0.post1,<0.25.0) ; extra == "server" or extra == "all"
79
+ Requires-Dist: websockets (>=12.0,<13.0) ; extra == "server" or extra == "all"
80
+ Requires-Dist: wikipedia (>=1.4.0,<2.0.0) ; extra == "external-tools" or extra == "tests" or extra == "all"
81
+ Description-Content-Type: text/markdown
82
+
83
+ <p align="center">
84
+ <picture>
85
+ <source media="(prefers-color-scheme: dark)" srcset="assets/Letta-logo-RGB_GreyonTransparent_cropped_small.png">
86
+ <source media="(prefers-color-scheme: light)" srcset="assets/Letta-logo-RGB_OffBlackonTransparent_cropped_small.png">
87
+ <img alt="Letta logo" src="assets/Letta-logo-RGB_GreyonOffBlack_cropped_small.png" width="500">
88
+ </picture>
89
+ </p>
90
+
91
+ <div align="center">
92
+ <h1>Letta (previously MemGPT)</h1>
93
+
94
+ **☄️ New release: Letta Agent Development Environment (_read more [here](#-access-the-letta-ade-agent-development-environment)_) ☄️**
95
+
96
+ <p align="center">
97
+ <picture>
98
+ <source media="(prefers-color-scheme: dark)" srcset="assets/example_ade_screenshot.png">
99
+ <source media="(prefers-color-scheme: light)" srcset="assets/example_ade_screenshot_light.png">
100
+ <img alt="Letta logo" src="assets/example_ade_screenshot.png" width="800">
101
+ </picture>
102
+ </p>
103
+
104
+ ---
105
+
106
+ <h3>
107
+
108
+ [Homepage](https://letta.com) // [Documentation](https://docs.letta.com) // [ADE](https://app.letta.com) // [Letta Cloud](https://forms.letta.com/early-access)
109
+
110
+ </h3>
111
+
112
+ **👾 Letta** is an open source framework for building stateful LLM applications. You can use Letta to build **stateful agents** with advanced reasoning capabilities and transparent long-term memory. The Letta framework is white box and model-agnostic.
113
+
114
+ [![Discord](https://img.shields.io/discord/1161736243340640419?label=Discord&logo=discord&logoColor=5865F2&style=flat-square&color=5865F2)](https://discord.gg/letta)
115
+ [![Twitter Follow](https://img.shields.io/badge/Follow-%40Letta__AI-1DA1F2?style=flat-square&logo=x&logoColor=white)](https://twitter.com/Letta_AI)
116
+ [![arxiv 2310.08560](https://img.shields.io/badge/Research-2310.08560-B31B1B?logo=arxiv&style=flat-square)](https://arxiv.org/abs/2310.08560)
117
+
118
+ [![Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-silver?style=flat-square)](LICENSE)
119
+ [![Release](https://img.shields.io/github/v/release/cpacker/MemGPT?style=flat-square&label=Release&color=limegreen)](https://github.com/cpacker/MemGPT/releases)
120
+ [![Docker](https://img.shields.io/docker/v/letta/letta?style=flat-square&logo=docker&label=Docker&color=0db7ed)](https://hub.docker.com/r/letta/letta)
121
+ [![GitHub](https://img.shields.io/github/stars/cpacker/MemGPT?style=flat-square&logo=github&label=Stars&color=gold)](https://github.com/cpacker/MemGPT)
122
+
123
+ <a href="https://trendshift.io/repositories/3612" target="_blank"><img src="https://trendshift.io/api/badge/repositories/3612" alt="cpacker%2FMemGPT | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
124
+
125
+ </div>
126
+
127
+ > [!IMPORTANT]
128
+ > **Looking for MemGPT?** You're in the right place!
129
+ >
130
+ > The MemGPT package and Docker image have been renamed to `letta` to clarify the distinction between MemGPT *agents* and the Letta API *server* / *runtime* that runs LLM agents as *services*. Read more about the relationship between MemGPT and Letta [here](https://www.letta.com/blog/memgpt-and-letta).
131
+
132
+ ---
133
+
134
+ ## ⚡ Quickstart
135
+
136
+ _The recommended way to use Letta is to run use Docker. To install Docker, see [Docker's installation guide](https://docs.docker.com/get-docker/). For issues with installing Docker, see [Docker's troubleshooting guide](https://docs.docker.com/desktop/troubleshoot-and-support/troubleshoot/). You can also install Letta using `pip` (see guide [below](#-quickstart-pip))._
137
+
138
+ ### 🌖 Run the Letta server
139
+
140
+ > [!NOTE]
141
+ > Letta agents live inside the Letta server, which persists them to a database. You can interact with the Letta agents inside your Letta server via the [REST API](https://docs.letta.com/api-reference) + Python / Typescript SDKs, and the [Agent Development Environment](https://app.letta.com) (a graphical interface).
142
+
143
+ The Letta server can be connected to various LLM API backends ([OpenAI](https://docs.letta.com/models/openai), [Anthropic](https://docs.letta.com/models/anthropic), [vLLM](https://docs.letta.com/models/vllm), [Ollama](https://docs.letta.com/models/ollama), etc.). To enable access to these LLM API providers, set the appropriate environment variables when you use `docker run`:
144
+ ```sh
145
+ # replace `~/.letta/.persist/pgdata` with wherever you want to store your agent data
146
+ docker run \
147
+ -v ~/.letta/.persist/pgdata:/var/lib/postgresql/data \
148
+ -p 8283:8283 \
149
+ -e OPENAI_API_KEY="your_openai_api_key" \
150
+ letta/letta:latest
151
+ ```
152
+
153
+ If you have many different LLM API keys, you can also set up a `.env` file instead and pass that to `docker run`:
154
+ ```sh
155
+ # using a .env file instead of passing environment variables
156
+ docker run \
157
+ -v ~/.letta/.persist/pgdata:/var/lib/postgresql/data \
158
+ -p 8283:8283 \
159
+ --env-file .env \
160
+ letta/letta:latest
161
+ ```
162
+
163
+ Once the Letta server is running, you can access it via port `8283` (e.g. sending REST API requests to `http://localhost:8283/v1`). You can also connect your server to the Letta ADE to access and manage your agents in a web interface.
164
+
165
+ ### 👾 Access the [Letta ADE (Agent Development Environment)](https://app.letta.com)
166
+
167
+ > [!NOTE]
168
+ > The Letta ADE is a graphical user interface for creating, deploying, interacting and observing with your Letta agents.
169
+ >
170
+ > For example, if you're running a Letta server to power an end-user application (such as a customer support chatbot), you can use the ADE to test, debug, and observe the agents in your server. You can also use the ADE as a general chat interface to interacting with your Letta agents.
171
+
172
+ <p align="center">
173
+ <picture>
174
+ <source media="(prefers-color-scheme: dark)" srcset="assets/example_ade_screenshot.png">
175
+ <source media="(prefers-color-scheme: light)" srcset="assets/example_ade_screenshot_light.png">
176
+ <img alt="Letta logo" src="assets/example_ade_screenshot.png" width="800">
177
+ </picture>
178
+ </p>
179
+
180
+ The ADE can connect to self-hosted Letta servers (e.g. a Letta server running on your laptop), as well as the Letta Cloud service. When connected to a self-hosted / private server, the ADE uses the Letta REST API to communicate with your server.
181
+
182
+ #### 🖥️ Connecting the ADE to your local Letta server
183
+ To connect the ADE with your local Letta server, simply:
184
+ 1. Start your Letta server (`docker run ...`)
185
+ 2. Visit [https://app.letta.com](https://app.letta.com) and you will see "Local server" as an option in the left panel
186
+
187
+ <p align="center">
188
+ <picture>
189
+ <source media="(prefers-color-scheme: dark)" srcset="assets/example_ade_screenshot_agents.png">
190
+ <source media="(prefers-color-scheme: light)" srcset="assets/example_ade_screenshot_agents_light.png">
191
+ <img alt="Letta logo" src="assets/example_ade_screenshot_agents.png" width="800">
192
+ </picture>
193
+ </p>
194
+
195
+ 🔐 To password protect your server, include `SECURE=true` and `LETTA_SERVER_PASSWORD=yourpassword` in your `docker run` command:
196
+ ```sh
197
+ # If LETTA_SERVER_PASSWORD isn't set, the server will autogenerate a password
198
+ docker run \
199
+ -v ~/.letta/.persist/pgdata:/var/lib/postgresql/data \
200
+ -p 8283:8283 \
201
+ --env-file .env \
202
+ -e SECURE=true \
203
+ -e LETTA_SERVER_PASSWORD=yourpassword \
204
+ letta/letta:latest
205
+ ```
206
+
207
+ #### 🌐 Connecting the ADE to an external (self-hosted) Letta server
208
+ If your Letta server isn't running on `localhost` (for example, you deployed it on an external service like EC2):
209
+ 1. Click "Add remote server"
210
+ 2. Enter your desired server name, the IP address of the server, and the server password (if set)
211
+
212
+ ---
213
+
214
+ ## 🧑‍🚀 Frequently asked questions (FAQ)
215
+
216
+ > _"Do I need to install Docker to use Letta?"_
217
+
218
+ No, you can install Letta using `pip` (via `pip install -U letta`), as well as from source (via `poetry install`). See instructions below.
219
+
220
+ > _"How do I use the ADE locally?"_
221
+
222
+ To connect the ADE to your local Letta server, simply run your Letta server (make sure you can access `localhost:8283`) and go to [https://app.letta.com](https://app.letta.com). If you would like to use the old version of the ADE (that runs on `localhost`), downgrade to Letta version `<=0.5.0`.
223
+
224
+ > _"If I connect the ADE to my local server, does my agent data get uploaded to letta.com?"_
225
+
226
+ No, the data in your Letta server database stays on your machine. The Letta ADE web application simply connects to your local Letta server (via the REST API) and provides a graphical interface on top of it to visualize your local Letta data in your browser's local state.
227
+
228
+ > _"Do I have to use your ADE? Can I build my own?"_
229
+
230
+ The ADE is built on top of the (fully open source) Letta server and Letta Agents API. You can build your own application like the ADE on top of the REST API (view the documention [here](https://docs.letta.com/api-reference)).
231
+
232
+ > _"Can I interact with Letta agents via the CLI?"_
233
+
234
+ The recommended way to use Letta is via the REST API and ADE, however you can also access your agents via the CLI.
235
+
236
+ <details>
237
+ <summary>View instructions for running the Letta CLI</summary>
238
+
239
+ You can chat with your agents via the Letta CLI tool (`letta run`). If you have a Letta Docker container running, you can use `docker exec` to run the Letta CLI inside the container:
240
+ ```sh
241
+ # replace `<letta_container_id>` with the ID of your Letta container, found via `docker ps`
242
+ docker exec -it <letta_container_id> letta run
243
+ ```
244
+
245
+ You can also use `docker ps` within the command to automatically find the ID of your Letta container:
246
+ ```
247
+ docker exec -it $(docker ps -q -f ancestor=letta/letta) letta run
248
+ ```
249
+
250
+ In the CLI tool, you'll be able to create new agents, or load existing agents:
251
+ ```
252
+ 🧬 Creating new agent...
253
+ ? Select LLM model: letta-free [type=openai] [ip=https://inference.memgpt.ai]
254
+ ? Select embedding model: letta-free [type=hugging-face] [ip=https://embeddings.memgpt.ai]
255
+ -> 🤖 Using persona profile: 'sam_pov'
256
+ -> 🧑 Using human profile: 'basic'
257
+ -> 🛠️ 8 tools: send_message, pause_heartbeats, conversation_search, conversation_search_date, archival_memory_insert, archival_memory_search, core_memory_append, core_memory_replace
258
+
259
+ 🎉 Created new agent 'InspiringSpinach'
260
+
261
+ Hit enter to begin (will request first Letta message)
262
+
263
+ 💭 User engaged. Recognize as Chad. Acknowledge presence and establish connection. Explore interests and engage in meaningful discourse.
264
+ 🤖 Hello, Chad. It's nice to meet you. I am keen on learning and exploring new ideas and concepts. Is there a specific topic you'd like to discuss today?
265
+
266
+ > Enter your message: my name is Brad, not Chad...
267
+
268
+ 💭 A discrepancy in identity. Reflect this change in core memory. Apologize for the oversight, and rectify the error.
269
+ ⚡🧠 [function] updating memory with core_memory_replace
270
+ First name: Chad
271
+ → First name: Brad
272
+ 💭 Apologize for the mistake in recognizing his name, and begin the conversation anew, addressing him by the correct name this time.
273
+ 🤖 I apologize for the oversight, Brad. Let's restart. It's a pleasure to meet you, Brad. Is there a specific topic you'd like to discuss today?
274
+
275
+ > Enter your message:
276
+ ```
277
+ </details>
278
+
279
+ ---
280
+
281
+ ## ⚡ Quickstart (pip)
282
+
283
+ > [!WARNING]
284
+ > **Database migrations are not officially support with `SQLite`**
285
+ >
286
+ > When you install Letta with `pip`, the default database backend is `SQLite` (you can still use an external `postgres` service with your `pip` install of Letta by setting `LETTA_PG_URI`).
287
+ >
288
+ > We do not officially support migrations between Letta versions with `SQLite` backends, only `postgres`. If you would like to keep your agent data across multiple Letta versions we highly recommend using the Docker install method which is the easiest way to use `postgres` with Letta.
289
+
290
+ <details>
291
+
292
+ <summary>View instructions for installing with pip</summary>
293
+
294
+ You can also install Letta with `pip`, will default to using `SQLite` for the database backends (whereas Docker will default to using `postgres`).
295
+
296
+ ### Step 1 - Install Letta using `pip`
297
+ ```sh
298
+ pip install -U letta
299
+ ```
300
+
301
+ ### Step 2 - Set your environment variables for your chosen LLM / embedding providers
302
+ ```sh
303
+ export OPENAI_API_KEY=sk-...
304
+ ```
305
+
306
+ For Ollama (see our full [documentation](https://docs.letta.com/install) for examples of how to set up various providers):
307
+ ```sh
308
+ export OLLAMA_BASE_URL=http://localhost:11434
309
+ ```
310
+
311
+ ### Step 3 - Run the Letta CLI
312
+
313
+ You can create agents and chat with them via the Letta CLI tool (`letta run`):
314
+ ```sh
315
+ letta run
316
+ ```
317
+ ```
318
+ 🧬 Creating new agent...
319
+ ? Select LLM model: letta-free [type=openai] [ip=https://inference.memgpt.ai]
320
+ ? Select embedding model: letta-free [type=hugging-face] [ip=https://embeddings.memgpt.ai]
321
+ -> 🤖 Using persona profile: 'sam_pov'
322
+ -> 🧑 Using human profile: 'basic'
323
+ -> 🛠️ 8 tools: send_message, pause_heartbeats, conversation_search, conversation_search_date, archival_memory_insert, archival_memory_search, core_memory_append, core_memory_replace
324
+
325
+ 🎉 Created new agent 'InspiringSpinach'
326
+
327
+ Hit enter to begin (will request first Letta message)
328
+
329
+ 💭 User engaged. Recognize as Chad. Acknowledge presence and establish connection. Explore interests and engage in meaningful discourse.
330
+ 🤖 Hello, Chad. It's nice to meet you. I am keen on learning and exploring new ideas and concepts. Is there a specific topic you'd like to discuss today?
331
+
332
+ > Enter your message: my name is Brad, not Chad...
333
+
334
+ 💭 A discrepancy in identity. Reflect this change in core memory. Apologize for the oversight, and rectify the error.
335
+ ⚡🧠 [function] updating memory with core_memory_replace
336
+ First name: Chad
337
+ → First name: Brad
338
+ 💭 Apologize for the mistake in recognizing his name, and begin the conversation anew, addressing him by the correct name this time.
339
+ 🤖 I apologize for the oversight, Brad. Let's restart. It's a pleasure to meet you, Brad. Is there a specific topic you'd like to discuss today?
340
+
341
+ > Enter your message:
342
+ ```
343
+
344
+ ### Step 4 - Run the Letta server
345
+
346
+ You can start the Letta API server with `letta server` (see the full API reference [here](https://docs.letta.com/api-reference)):
347
+ ```sh
348
+ letta server
349
+ ```
350
+ ```
351
+ Initializing database...
352
+ Running: uvicorn server:app --host localhost --port 8283
353
+ INFO: Started server process [47750]
354
+ INFO: Waiting for application startup.
355
+ INFO: Application startup complete.
356
+ INFO: Uvicorn running on http://localhost:8283 (Press CTRL+C to quit)
357
+ ```
358
+ </details>
359
+
360
+ ---
361
+
362
+ ## 🤗 How to contribute
363
+
364
+ Letta is an open source project built by over a hundred contributors. There are many ways to get involved in the Letta OSS project!
365
+
366
+ * **Contribute to the project**: Interested in contributing? Start by reading our [Contribution Guidelines](https://github.com/cpacker/MemGPT/tree/main/CONTRIBUTING.md).
367
+ * **Ask a question**: Join our community on [Discord](https://discord.gg/letta) and direct your questions to the `#support` channel.
368
+ * **Report ssues or suggest features**: Have an issue or a feature request? Please submit them through our [GitHub Issues page](https://github.com/cpacker/MemGPT/issues).
369
+ * **Explore the roadmap**: Curious about future developments? View and comment on our [project roadmap](https://github.com/cpacker/MemGPT/issues/1533).
370
+ * **Join community events**: Stay updated with the [event calendar](https://lu.ma/berkeley-llm-meetup) or follow our [Twitter account](https://twitter.com/Letta_AI).
371
+
372
+ ---
373
+
374
+ ***Legal notices**: By using Letta and related Letta services (such as the Letta endpoint or hosted service), you are agreeing to our [privacy policy](https://www.letta.com/privacy-policy) and [terms of service](https://www.letta.com/terms-of-service).*
375
+
@@ -1,30 +1,29 @@
1
- letta/__init__.py,sha256=S2_Nsg1zpIrParZLJeOiVVM0JlAKG9zxlIi_-KMBkmI,1035
1
+ letta/__init__.py,sha256=XzSCdK-rlcvOAsPJarW8Ri5qelGVdpX237ds-yjHniY,1035
2
2
  letta/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
3
- letta/agent.py,sha256=227szNAdtSijOX8iN_2OitpDLTOxiBOkE4JAlhlLkwY,78308
4
- letta/agent_store/chroma.py,sha256=-kCEMBFKmqCyFeIETYf7RN-khGddsip2FAhSzNqaC7U,12537
5
- letta/agent_store/db.py,sha256=0AdN1-LpvIUhmiayTwzhKPaXTdlyOILtHGZ7zmS7pPs,20314
3
+ letta/agent.py,sha256=D4staw-NnTzsG31kV7cvb7fvLIpkeZii1rXsQIRPC0s,78058
4
+ letta/agent_store/db.py,sha256=Rzgodcr-eT6DXnFr5bt4psiVpeH0Gy1BS16Ethf2CHw,19016
6
5
  letta/agent_store/milvus.py,sha256=xUu-D9a6N10MuGJ-R-QWR2IHX77ueqAp88tV4gg9B4M,8470
7
6
  letta/agent_store/qdrant.py,sha256=6_33V-FEDpT9LG5zmr6-3y9slw1YFLswxpahiyMkvHA,7880
8
- letta/agent_store/storage.py,sha256=YDQTrfgPBa0cMiMuQatk9hcadIUMvA4zKZHx2VKjlak,6475
7
+ letta/agent_store/storage.py,sha256=F0kpHr8ALaph630ItxZ1ijYOMNq7P7sRrkP-2LkywVU,6547
9
8
  letta/benchmark/benchmark.py,sha256=ebvnwfp3yezaXOQyGXkYCDYpsmre-b9hvNtnyx4xkG0,3701
10
9
  letta/benchmark/constants.py,sha256=aXc5gdpMGJT327VuxsT5FngbCK2J41PQYeICBO7g_RE,536
11
10
  letta/chat_only_agent.py,sha256=606FQybmeN9s04rIFQlDkWOHirrT0p48_3pMKY8d5Ts,4740
12
- letta/cli/cli.py,sha256=yjopYQj6DrYcRAg9FjD974zOqPUlCjzanD1EsSIRFXE,16832
11
+ letta/cli/cli.py,sha256=w05rgSquJrkT7gq13NplT6Eag0rdF7YG9uMz-WV2INs,16913
13
12
  letta/cli/cli_config.py,sha256=tB0Wgz3O9j6KiCsU1HWfsKmhNM9RqLsAxzxEDFQFGnM,8565
14
13
  letta/cli/cli_load.py,sha256=xFw-CuzjChcIptaqQ1XpDROENt0JSjyPeiQ0nmEeO1k,2706
15
14
  letta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- letta/client/client.py,sha256=mO9m6bktXYzF_QSkWiVDnKdxiHGQhWEgBnVHt9dMSiQ,127092
15
+ letta/client/client.py,sha256=x1GAvNhHkrD4f7CyyaTtXDuQ68NoS8tapaY2TRh5Q7o,127162
17
16
  letta/client/streaming.py,sha256=Hh5pjlyrdCuO2V75ZCxSSOCPd3BmHdKFGaIUJC6fBp0,4775
18
17
  letta/client/utils.py,sha256=OJlAKWrldc4I6M1WpcTWNtPJ4wfxlzlZqWLfCozkFtI,2872
19
- letta/config.py,sha256=AF4XY6grcu87OLjrWXh1ufnyKWsCL0qER-_9jQCAlU0,18947
18
+ letta/config.py,sha256=06F-kPu9r6AMOvz5uX6WKVrgE8h6QqSxWni3TT16ZdY,18923
20
19
  letta/constants.py,sha256=l2IyZpVG-d_raFFX5bN6mCbprnnc1IA-z-oCKPoyPSM,6902
21
20
  letta/credentials.py,sha256=D9mlcPsdDWlIIXQQD8wSPE9M_QvsRrb0p3LB5i9OF5Q,5806
22
- letta/data_sources/connectors.py,sha256=5VKxfeV-QyUlK1wexLlpgar99dGm6PHxFaEbSeByo_U,9923
21
+ letta/data_sources/connectors.py,sha256=o6XhyeONu4FB7CM7l9K705M9zV8jE2ExddYy_ZjgYgs,10010
23
22
  letta/data_sources/connectors_helper.py,sha256=2TQjCt74fCgT5sw1AP8PalDEk06jPBbhrPG4HVr-WLs,3371
24
- letta/embeddings.py,sha256=3vJaQ8RMLLp6yiYZGsthq6Xsu4keb9gp7DYN_2GPBFU,8459
23
+ letta/embeddings.py,sha256=XyecUdJaG3ENi5v3wAexVcgpG2g7_oTEEYLgUpm-Zvs,9080
25
24
  letta/errors.py,sha256=Voy_BP0W_M816-vWudKLBlgydRufPPA-Q2PNd-SvZYc,3897
26
25
  letta/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- letta/functions/function_sets/base.py,sha256=anK6XJQlmTu9eC33700Eh7NWxQ0NTLUC2Vxpn6ihvnY,9034
26
+ letta/functions/function_sets/base.py,sha256=DxHFODrqEOepjsbWBrwHNqnM_b3AfvNhPCUiaOVDDzU,9599
28
27
  letta/functions/function_sets/extras.py,sha256=Jik3UiDqYTm4Lam1XPTvuVjvgUHwIAhopsnbmVhGMBg,4732
29
28
  letta/functions/functions.py,sha256=evH6GKnIJwVVre1Xre2gaSIqREv4eNM4DiWOhn8PMqg,3299
30
29
  letta/functions/helpers.py,sha256=fJo4gPvWpkvR7jn0HucRorz4VlpYVqmYsiX1RetnnSY,8569
@@ -85,30 +84,32 @@ letta/local_llm/webui/settings.py,sha256=gmLHfiOl1u4JmlAZU2d2O8YKF9lafdakyjwR_ft
85
84
  letta/log.py,sha256=FxkAk2f8Bl-u9dfImSj1DYnjAsmV6PL3tjTSnEiNP48,2218
86
85
  letta/main.py,sha256=3rvn5rHMpChmgDsYKAH8GX7lLVsIzxLmkPhDJt6nFKA,19067
87
86
  letta/memory.py,sha256=R4Z_MYD5ve04FBe2yohux1pzp8MTjOSI1AZ5oLCdGRA,14568
88
- letta/metadata.py,sha256=zwIe0Sr1Q2g5L2V6Yc5D_t_NG8nhdgleAGQEdaAi2Lw,15165
89
- letta/o1_agent.py,sha256=aNuv70NmmtKQcfOcd0L4VxHzg7o7xoiU81j1LWok4bk,3164
90
- letta/offline_memory_agent.py,sha256=1MBU-kSzvZw39_oydDb4L6sYIMAk1HyMV5B-WckiAiY,7793
87
+ letta/metadata.py,sha256=iU2KZewl_oqyB6mjKeSGH33BsvRUPeWb1K_qRgme5jo,15507
88
+ letta/o1_agent.py,sha256=Jbc4Id15tMQ_1ek74hxRUJdfTegmsaIHQyRNc31g6dA,3092
89
+ letta/offline_memory_agent.py,sha256=Pa4HmKMFYhmkzl6SyHHtHpdYIZkrJqbG0-fwPAU6Muo,7912
91
90
  letta/openai_backcompat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
91
  letta/openai_backcompat/openai_object.py,sha256=Y1ZS1sATP60qxJiOsjOP3NbwSzuzvkNAvb3DeuhM5Uk,13490
93
92
  letta/orm/__all__.py,sha256=2gh2MZTkA3Hw67VWVKK3JIStJOqTeLdpCvYSVYNeEDA,692
94
- letta/orm/__init__.py,sha256=HyH2suMD8-92bZ5paW8AC1o-639AQqwAc_HN8S7mjxI,542
93
+ letta/orm/__init__.py,sha256=NswamGS2dTrzCmwALtKu-Jn5LnVE6w6niuptYnXFQFc,580
95
94
  letta/orm/agents_tags.py,sha256=Qa7Yt9imL8xbGP57fflccAMy7Z32CQiU_7eZKSSPngc,1119
96
95
  letta/orm/base.py,sha256=K_LpNUURbsj44ycHbzvNXG_n8pBOjf1YvDaikIPDpQA,2716
97
96
  letta/orm/block.py,sha256=xymYeCTJJFkzADW6wjfP2LXNZZN9yg4mCSybbvEEMMM,2356
98
97
  letta/orm/blocks_agents.py,sha256=o6cfblODja7so4444npW0vusqKcvDPp8YJdsWsOePus,1164
99
98
  letta/orm/enums.py,sha256=KfHcFt_fR6GUmSlmfsa-TetvmuRxGESNve8MStRYW64,145
100
99
  letta/orm/errors.py,sha256=nv1HnF3z4-u9m_g7SO5TO5u2nmJN677_n8F0iIjluUI,460
101
- letta/orm/file.py,sha256=JafpJhooBtMrmkRG68jT8rFK9mRIQSlYKYjq3VXhTcc,1525
100
+ letta/orm/file.py,sha256=xUhWGBiYeOG0xL_-N2lzk135Rhm2IEXLPTw1wdgeyPw,1659
102
101
  letta/orm/job.py,sha256=If-qSTJW4t5h-6Jolw3tS3-xMZEaPIbXe3S0GMf_FXI,1102
103
102
  letta/orm/message.py,sha256=IcG2UkwmUCq0PiIlV_U7L0bKynPEahgqgo0luAgtfQo,2538
104
- letta/orm/mixins.py,sha256=TpP5dFAcGu2VvHZQSt8ymc0UjQhcVp5-Fc2C4v_nUTM,1508
105
- letta/orm/organization.py,sha256=ZoHow3Tpdh9TXDvB4VZbArbUCgbErFTSQMriYAzulqA,2397
103
+ letta/orm/mixins.py,sha256=xXPpOBvq5XuxiPOHS1aSc6j1UVpxookOCXMLnrxI6cM,1783
104
+ letta/orm/organization.py,sha256=LmF2UrA9xS6ljTM1jei6AU8irXPIhemupfQ51f_u0Ck,2543
105
+ letta/orm/passage.py,sha256=4LxiKNIJz_EVgXlcY1ijU38LvkCUvXD1QQ9LS4jF5MY,2942
106
106
  letta/orm/sandbox_config.py,sha256=PCMHE-eJPzBT-90OYtXjEMRF4f9JB8AJIGETE7bu-f0,2870
107
107
  letta/orm/source.py,sha256=Ib0XHCMt345RjBSC30A398rZ21W5mA4PXX00XNXyd24,2021
108
- letta/orm/sqlalchemy_base.py,sha256=fGoFtBMwt6qZDsSj1jwr8gNttp2kyOHZqo1OxywJVpc,15133
108
+ letta/orm/sqlalchemy_base.py,sha256=AmFfyNZAT7HhdNuBXMbjmqqSjR2W7lVu3FTRreZbYhg,16543
109
+ letta/orm/sqlite_functions.py,sha256=PVJXVw_e3cC5yIWkfsCP_yBjuXwIniLEGdXP6lx6Wgs,4380
109
110
  letta/orm/tool.py,sha256=seND1kw-GvdtIumGDrsUH0EtE7F59YUzK-XYenOZ4vE,3070
110
111
  letta/orm/tools_agents.py,sha256=mBMGQsTEx_ckfhZb2-2nqbxHBEMhvDXim6w6tFHHWBQ,1195
111
- letta/orm/user.py,sha256=bUZzyBQXfR0w7mZAkThPAQE6kKx6W--Rw6uAiPEUW3s,1133
112
+ letta/orm/user.py,sha256=0qdnBQiwXx3TGQLZKIGiI2WWyt0VceA8s5FRcRt7St0,1163
112
113
  letta/personas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
114
  letta/personas/examples/anna_pa.txt,sha256=zgiNdSNhy1HQy58cF_6RFPzcg2i37F9v38YuL1CW40A,1849
114
115
  letta/personas/examples/google_search_persona.txt,sha256=RyObU80MIk2oeJJDWOK1aX5pHOtbHSSjIrbUpxov240,1194
@@ -137,7 +138,7 @@ letta/prompts/system/memgpt_offline_memory.txt,sha256=rWEJeF-6aiinjkJM9hgLUYCmlE
137
138
  letta/prompts/system/memgpt_offline_memory_chat.txt,sha256=ituh7gDuio7nC2UKFB7GpBq6crxb8bYedQfJ0ADoPgg,3949
138
139
  letta/providers.py,sha256=0j6WPRn70WNSOjWS7smhTI3ZZOlfVAVF0ZFcrdQDmMY,25321
139
140
  letta/pytest.ini,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- letta/schemas/agent.py,sha256=5nL4YSvuVp2RxJ5lbpTdKOFB-DntnFwncqcRWREbfkQ,8514
141
+ letta/schemas/agent.py,sha256=BxUuewMX3TLLvcOMV_A9gmauDlaG2rIidl8DRZvGypE,8592
141
142
  letta/schemas/agents_tags.py,sha256=9DGr8fN2DHYdWvZ_qcXmrKI0w7YKCGz2lfEcrX2KAkI,1130
142
143
  letta/schemas/api_key.py,sha256=u07yzzMn-hBAHZIIKbWY16KsgiFjSNR8lAghpMUo3_4,682
143
144
  letta/schemas/block.py,sha256=pVDH8jr5r-oxdX4cK9dX2wXyLBzgGKQOBWOzqZSeBog,5944
@@ -148,8 +149,8 @@ letta/schemas/file.py,sha256=ChN2CWzLI2TT9WLItcfElEH0E8b7kzPylF2OQBr6Beg,1550
148
149
  letta/schemas/health.py,sha256=zT6mYovvD17iJRuu2rcaQQzbEEYrkwvAE9TB7iU824c,139
149
150
  letta/schemas/job.py,sha256=vRVVpMCHTxot9uaalLS8RARnqzJWvcLB1XP5XRBioPc,1398
150
151
  letta/schemas/letta_base.py,sha256=v3OvpVFVUfcuK1lIyTjM0x4fmWeWQw1DdlhKXHBUCz8,3608
151
- letta/schemas/letta_message.py,sha256=RuVVtwFbi85yP3dXQxowofQ6cI2cO_CdGtgpHGQzgHc,6563
152
- letta/schemas/letta_request.py,sha256=E6OwKiceNffpdGdQMI1qc0jEfpL_e7O9BTzklOkbt6Y,1019
152
+ letta/schemas/letta_message.py,sha256=fBPKrHBRS9eTo8NAmLiaP5TNJATsrVn9QCxYmD6a7UY,6833
153
+ letta/schemas/letta_request.py,sha256=Hfb66FB1tXmrpEX4_yLQVfTrTSMbPYeEvZY-vqW9Tj8,981
153
154
  letta/schemas/letta_response.py,sha256=vQV5uqe-kq9fc4wCo-sVB_PJt5yUk8DB2zOgHsrmN-k,6189
154
155
  letta/schemas/llm_config.py,sha256=RbgnCaqYd_yl-Xs7t-DEI1NhpKD8WiVWjxcwq5mZd5M,4467
155
156
  letta/schemas/memory.py,sha256=80Y7gqWQQndhNkJ-0j38d2m619gTlfes_qJNA6_ant8,10040
@@ -160,11 +161,11 @@ letta/schemas/openai/chat_completions.py,sha256=V0ZPIIk-ds3O6MAkNHMz8zh1hqMFSPrT
160
161
  letta/schemas/openai/embedding_response.py,sha256=WKIZpXab1Av7v6sxKG8feW3ZtpQUNosmLVSuhXYa_xU,357
161
162
  letta/schemas/openai/openai.py,sha256=Hilo5BiLAGabzxCwnwfzK5QrWqwYD8epaEKFa4Pwndk,7970
162
163
  letta/schemas/organization.py,sha256=d2oN3IK2HeruEHKXwIzCbJ3Fxdi_BEe9JZ8J9aDbHwQ,698
163
- letta/schemas/passage.py,sha256=eYQMxD_XjHAi72jmqcGBU4wM4VZtSU0XK8uhQxxN3Ug,3563
164
- letta/schemas/sandbox_config.py,sha256=6om_uU2-cZaPxe6HLo3Kg9OuTzx_Hibk80UQKyGKfP0,5111
164
+ letta/schemas/passage.py,sha256=HeplPyKzcy4d8DLnjfIVukXRMHMZdGkerQY65RN70FI,3682
165
+ letta/schemas/sandbox_config.py,sha256=A-pcBcrpnxp-XJ0OB1ferYu8hGtDkR2YDOa8FzDr0C0,5217
165
166
  letta/schemas/source.py,sha256=B1VbaDJV-EGPv1nQXwCx_RAzeAJd50UqP_1m1cIRT8c,2854
166
167
  letta/schemas/tool.py,sha256=_9_JkGSlIn2PCbyJ18aQrNueZgxHFUT093GcJSWYqT4,10346
167
- letta/schemas/tool_rule.py,sha256=pLt-BzgFSrlVO6ipY4kygyvfoM0BWA-XdqhGxso9aKs,1192
168
+ letta/schemas/tool_rule.py,sha256=jVGdGsp2K-qnrcaWF3WjCSvxpDlF2wVxeNMXzmoYLtc,1072
168
169
  letta/schemas/tools_agents.py,sha256=DGfmX7qXSBMCjykHyy0FRxgep2tJgYXf1rqDTmP6Tfo,1313
169
170
  letta/schemas/usage.py,sha256=lvn1ooHwLEdv6gwQpw5PBUbcwn_gwdT6HA-fCiix6sY,817
170
171
  letta/schemas/user.py,sha256=V32Tgl6oqB3KznkxUz12y7agkQicjzW7VocSpj78i6Q,1526
@@ -172,7 +173,7 @@ letta/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
173
  letta/server/constants.py,sha256=yAdGbLkzlOU_dLTx0lKDmAnj0ZgRXCEaIcPJWO69eaE,92
173
174
  letta/server/generate_openapi_schema.sh,sha256=0OtBhkC1g6CobVmNEd_m2B6sTdppjbJLXaM95icejvE,371
174
175
  letta/server/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
- letta/server/rest_api/app.py,sha256=i-h-DXj_DpADql9JSaY0ZvvhWV-SOeQaJiXfFqOOWGg,9152
176
+ letta/server/rest_api/app.py,sha256=GG5pfsgzqljS2TCy2WVTyo70pgr-yFJm4M1hAYaM-9U,10177
176
177
  letta/server/rest_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
178
  letta/server/rest_api/auth/index.py,sha256=fQBGyVylGSRfEMLQ17cZzrHd5Y1xiVylvPqH5Rl-lXQ,1378
178
179
  letta/server/rest_api/auth_token.py,sha256=725EFEIiNj4dh70hrSd94UysmFD8vcJLrTRfNHkzxDo,774
@@ -186,7 +187,7 @@ letta/server/rest_api/routers/openai/assistants/threads.py,sha256=g8iu98__tQEMY9
186
187
  letta/server/rest_api/routers/openai/chat_completions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
188
  letta/server/rest_api/routers/openai/chat_completions/chat_completions.py,sha256=qFMpxfYIlJ-PW08IQt09RW44u6hwkssdsUT-h_GuOvE,4836
188
189
  letta/server/rest_api/routers/v1/__init__.py,sha256=RZc0fIHNN4BGretjU6_TGK7q49RyV4jfYNudoiK_sUo,762
189
- letta/server/rest_api/routers/v1/agents.py,sha256=_1rRBIaCMQT5hpyNRWfTetBEB00JHS4vwJL9ExMz3kw,27891
190
+ letta/server/rest_api/routers/v1/agents.py,sha256=qeBtbZCxBvJuUz64ih3ucKOFPyJK1u3-eeUFqsqTB2w,28380
190
191
  letta/server/rest_api/routers/v1/blocks.py,sha256=hLGwm56xCA09KdEi8P0V3s__pD_yyl07p17cdSfDj8g,4878
191
192
  letta/server/rest_api/routers/v1/health.py,sha256=pKCuVESlVOhGIb4VC4K-H82eZqfghmT6kvj2iOkkKuc,401
192
193
  letta/server/rest_api/routers/v1/jobs.py,sha256=gnu__rjcd9SpKdQkSD_sci-xJYH0fw828PuHMcYwsCw,2678
@@ -198,12 +199,12 @@ letta/server/rest_api/routers/v1/tools.py,sha256=ajYUo_cgUBDfm4Ja_EufxSdhBWoAb5N
198
199
  letta/server/rest_api/routers/v1/users.py,sha256=M1wEr2IyHzuRwINYxLXTkrbAH3osLe_cWjzrWrzR1aw,3729
199
200
  letta/server/rest_api/static_files.py,sha256=NG8sN4Z5EJ8JVQdj19tkFa9iQ1kBPTab9f_CUxd_u4Q,3143
200
201
  letta/server/rest_api/utils.py,sha256=6Z0T0kHIwDAgTIFh38Q1JQ_nhANgdqXcSlsuY41pL6M,3158
201
- letta/server/server.py,sha256=db4lkuXS0JVhakRrCBumte3NZ7jKVk6z2Is_PbD7aYg,80019
202
+ letta/server/server.py,sha256=H6TxXsh7Bahgn-8Jf9iLnkbeL3G8Y8U0tetc4D_1lIQ,85587
202
203
  letta/server/startup.sh,sha256=722uKJWB2C4q3vjn39De2zzPacaZNw_1fN1SpLGjKIo,1569
203
- letta/server/static_files/assets/index-43ab4d62.css,sha256=Q6tNYu7XNRgkTZau1dVwCQTT4YpLGLF7VgTNzLcMaQI,7613
204
- letta/server/static_files/assets/index-4848e3d7.js,sha256=XkoX-NW0x1Hb7uTWslfpuPP73MnNDthOdJLHLID9EhM,146806
204
+ letta/server/static_files/assets/index-048c9598.js,sha256=mR16XppvselwKCcNgONs4L7kZEVa4OEERm4lNZYtLSk,146819
205
+ letta/server/static_files/assets/index-0e31b727.css,sha256=DjG3J3RSFLcinzoisOYYLiyTAIe5Uaxge3HE-DmQIsU,7688
205
206
  letta/server/static_files/favicon.ico,sha256=DezhLdFSbM8o81wCOZcV3riq7tFUOGQD4h6-vr-HuU0,342
206
- letta/server/static_files/index.html,sha256=RF-Kt4CbTPJbsHtK30NaWIsdUiBpmJgQsKmE6WwqsBk,1198
207
+ letta/server/static_files/index.html,sha256=-9bodsoqpeSavIpNlaM3Z36_xjaotjXPCLLq9J8xFWg,1198
207
208
  letta/server/static_files/memgpt_logo_transparent.png,sha256=7l6niNb4MlUILxLlUZPxIE1TEHj_Z9f9XDxoST3d7Vw,85383
208
209
  letta/server/utils.py,sha256=rRvW6L1lzau4u9boamiyZH54lf5tQ91ypXzUW9cfSPA,1667
209
210
  letta/server/ws_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -218,21 +219,22 @@ letta/services/blocks_agents_manager.py,sha256=mfO3EMW9os_E1_r4SRlC2wmBFFLpt8p-y
218
219
  letta/services/job_manager.py,sha256=FrkSXloke48CZKuzlYdysxM5gKWoTu7FRigPrs_YW4A,3645
219
220
  letta/services/message_manager.py,sha256=ucFJLbK835YSfEENoxdKB3wPZgO-NYFO9EvDV0W-sc0,7682
220
221
  letta/services/organization_manager.py,sha256=B7BgHkZcAOP1fzbg2fFF8eTfKmqOiGvoojQ8ys7JVY4,3412
222
+ letta/services/passage_manager.py,sha256=1z3tzIm3jm1DQZPfQap1wggzmaOh_Pwj7Y4H27b52-I,8956
221
223
  letta/services/per_agent_lock_manager.py,sha256=porM0cKKANQ1FvcGXOO_qM7ARk5Fgi1HVEAhXsAg9-4,546
222
224
  letta/services/sandbox_config_manager.py,sha256=PqlS47FAYYmiUFd9bUV4W1t4FjhMqiDoh3Blw_1tiCM,13269
223
- letta/services/source_manager.py,sha256=8TILbVvJx1bopgDbIJCiIguZBw7uyYDFkasZxVos_G8,6560
224
- letta/services/tool_execution_sandbox.py,sha256=NIadt_Rct5WrVfQSdWlRc095ihUGc0-QvF_dH5qZXOM,21296
225
+ letta/services/source_manager.py,sha256=yfb6fYcuoit7d4-w62Mip4fpPbpl8EmTSQ-A49o3FeA,6596
226
+ letta/services/tool_execution_sandbox.py,sha256=MjDhtwO_riee7tBfsl1lY2_-zq_8_8ae7cuF9ougVMc,21726
225
227
  letta/services/tool_manager.py,sha256=lfrfWyxiFUWcEf-nATHs7r76XWutMYbOPyePs543ZOo,7681
226
228
  letta/services/tool_sandbox_env/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
229
  letta/services/tools_agents_manager.py,sha256=kF6yIsUO154_Q3l-cEeSU56QW-VUr_M6B-9csqhHBkg,4847
228
230
  letta/services/user_manager.py,sha256=cfXgnVlnfqPCk7c-wYRsU3RegHs-4stksk186RW89Do,4403
229
- letta/settings.py,sha256=ZcUcwvl7hStawZ0JOA0133jNk3j5qBd7qlFAAaIPsU8,3608
231
+ letta/settings.py,sha256=IBODJU3ZxFQAgzpB-nZtBbYuak6ad9rwhjLWv9oCgBo,3664
230
232
  letta/streaming_interface.py,sha256=_FPUWy58j50evHcpXyd7zB1wWqeCc71NCFeWh_TBvnw,15736
231
233
  letta/streaming_utils.py,sha256=329fsvj1ZN0r0LpQtmMPZ2vSxkDBIUUwvGHZFkjm2I8,11745
232
234
  letta/system.py,sha256=buKYPqG5n2x41hVmWpu6JUpyd7vTWED9Km2_M7dLrvk,6960
233
235
  letta/utils.py,sha256=L8c6S77gyMYFgVP6ncGRaNbGjWtg6BOU_whI1vjt9Ts,32915
234
- letta_nightly-0.6.2.dev20241210104242.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
235
- letta_nightly-0.6.2.dev20241210104242.dist-info/METADATA,sha256=_Srlq9gfn8M6NvP9C7JZ2YHGX7Ss782h0o4JeYtlm1Q,11459
236
- letta_nightly-0.6.2.dev20241210104242.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
237
- letta_nightly-0.6.2.dev20241210104242.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
238
- letta_nightly-0.6.2.dev20241210104242.dist-info/RECORD,,
236
+ letta_nightly-0.6.3.dev20241211050151.dist-info/LICENSE,sha256=mExtuZ_GYJgDEI38GWdiEYZizZS4KkVt2SF1g_GPNhI,10759
237
+ letta_nightly-0.6.3.dev20241211050151.dist-info/METADATA,sha256=pzK7XMc5nR-XJOyIEFDuWEtTkaRERhb3oDgt2Cj1FQQ,19560
238
+ letta_nightly-0.6.3.dev20241211050151.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
239
+ letta_nightly-0.6.3.dev20241211050151.dist-info/entry_points.txt,sha256=2zdiyGNEZGV5oYBuS-y2nAAgjDgcC9yM_mHJBFSRt5U,40
240
+ letta_nightly-0.6.3.dev20241211050151.dist-info/RECORD,,