Create LLM agents with long-term memory and custom tools
Project description
MemGPT makes it easy to build and deploy stateful LLM agents with support for:
- Long term memory/state management
- Connections to external data sources (e.g. PDF files) for RAG
- Defining and calling custom tools (e.g. google search)
You can also use MemGPT to deploy agents as a service. You can use a MemGPT server to run a multi-user, multi-agent application on top of supported LLM providers.
Installation & Setup
Install MemGPT:
pip install -U pymemgpt
To use MemGPT with OpenAI, set the environment variable OPENAI_API_KEY
to your OpenAI key then run:
memgpt quickstart --backend openai
To use MemGPT with a free hosted endpoint, you run run:
memgpt quickstart --backend memgpt
For more advanced configuration options or to use a different LLM backend or local LLMs, run memgpt configure
.
Quickstart (CLI)
You can create and chat with a MemGPT agent by running memgpt run
in your CLI. The run
command supports the following optional flags (see the CLI documentation for the full list of flags):
--agent
: (str) Name of agent to create or to resume chatting with.--first
: (str) Allow user to sent the first message.--debug
: (bool) Show debug logs (default=False)--no-verify
: (bool) Bypass message verification (default=False)--yes
/-y
: (bool) Skip confirmation prompt and use defaults (default=False)
You can view the list of available in-chat commands (e.g. /memory
, /exit
) in the CLI documentation.
Dev portal (alpha build)
MemGPT provides a developer portal that enables you to easily create, edit, monitor, and chat with your MemGPT agents. The easiest way to use the dev portal is to install MemGPT via docker (see instructions below).
Quickstart (Server)
Option 1 (Recommended): Run with docker compose
- Install docker on your system
- Clone the repo:
git clone https://github.com/cpacker/MemGPT.git
- Copy-paste
.env.example
to.env
and optionally modify - Run
docker compose up
- Go to
memgpt.localhost
in the browser to view the developer portal
Option 2: Run with the CLI:
- Run
memgpt server
- Go to
localhost:8283
in the browser to view the developer portal
Once the server is running, you can use the Python client or REST API to connect to memgpt.localhost
(if you're running with docker compose) or localhost:8283
(if you're running with the CLI) to create users, agents, and more. The service requires authentication with a MemGPT admin password; it is the value of MEMGPT_SERVER_PASS
in .env
.
Supported Endpoints & Backends
MemGPT is designed to be model and provider agnostic. The following LLM and embedding endpoints are supported:
Provider | LLM Endpoint | Embedding Endpoint |
---|---|---|
OpenAI | ✅ | ✅ |
Azure OpenAI | ✅ | ✅ |
Google AI (Gemini) | ✅ | ❌ |
Anthropic (Claude) | ✅ | ❌ |
Groq | ✅ (alpha release) | ❌ |
Cohere API | ✅ | ❌ |
vLLM | ✅ | ❌ |
Ollama | ✅ | ✅ |
LM Studio | ✅ | ❌ |
koboldcpp | ✅ | ❌ |
oobabooga web UI | ✅ | ❌ |
llama.cpp | ✅ | ❌ |
HuggingFace TEI | ❌ | ✅ |
When using MemGPT with open LLMs (such as those downloaded from HuggingFace), the performance of MemGPT will be highly dependent on the LLM's function calling ability. You can find a list of LLMs/models that are known to work well with MemGPT on the #model-chat channel on Discord, as well as on this spreadsheet.
How to Get Involved
- Contribute to the Project: Interested in contributing? Start by reading our Contribution Guidelines.
- Ask a Question: Join our community on Discord and direct your questions to the
#support
channel. - Report Issues or Suggest Features: Have an issue or a feature request? Please submit them through our GitHub Issues page.
- Explore the Roadmap: Curious about future developments? View and comment on our project roadmap.
- Benchmark the Performance: Want to benchmark the performance of a model on MemGPT? Follow our Benchmarking Guidance.
- Join Community Events: Stay updated with the MemGPT event calendar or follow our Twitter account.
Benchmarking Guidance
To evaluate the performance of a model on MemGPT, simply configure the appropriate model settings using memgpt configure
, and then initiate the benchmark via memgpt benchmark
. The duration will vary depending on your hardware. This will run through a predefined set of prompts through multiple iterations to test the function calling capabilities of a model. You can help track what LLMs work well with MemGPT by contributing your benchmark results via this form, which will be used to update the spreadsheet.
Legal notices
By using MemGPT and related MemGPT services (such as the MemGPT endpoint or hosted service), you agree to our privacy policy and terms of service.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pymemgpt-0.3.25.tar.gz
.
File metadata
- Download URL: pymemgpt-0.3.25.tar.gz
- Upload date:
- Size: 929.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.9 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a69d7d0bb00b6d8f6360defbe39f03d91ddf570eb1d9b4d568cd0a906d0b8965 |
|
MD5 | 578951a91ce02856f419ef18d536c0aa |
|
BLAKE2b-256 | d4c0e9fade106d334c4b6fbd4323d7c43083a4e13c36f00ba5ef3215131ff9f1 |
File details
Details for the file pymemgpt-0.3.25-py3-none-any.whl
.
File metadata
- Download URL: pymemgpt-0.3.25-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.9 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99a22015c78f25b94347bd214a1de8f3632d3a5fbc0d26157bfc8786615847d7 |
|
MD5 | 6a7714365e08bc88f522e3ab60b34ffb |
|
BLAKE2b-256 | 4fe97f0f30b1a58164051c7083c405deff7751098315f8563100f7adab7ce066 |