From 9c10ea0d809821c7b276b861dd89ddc4de08b562 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Mon, 16 Oct 2023 08:38:14 -0700 Subject: [PATCH 1/4] Update README.md --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9efaffb8..e3e75535 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,15 @@ -## Quick setup +## Quick setup + +Join Discord and message the MemGPT bot (in the `#memgpt` channel). Message `\profile` (to create your profile) and then `\create` (to create a MemGPT chatbot) to get started. + +## What is MemGPT? + +MemoryGPT (or MemGPT in short) is a system that intelligently manages different memory tiers in LLMs in order to effectively provide extended context within the LLM's limited context window. For example, MemGPT knows when to push critical information to a vector database and when to retrieve it later in the chat, enabling perpetual conversations. Learn more about MemGPT in our [paper](https://arxiv.org/abs/2310.08560). + +## Running MemGPT Locally Install dependencies: @@ -46,12 +54,6 @@ Add your OpenAI API key to your environment: export OPENAI_API_KEY=YOUR_API_KEY ``` -## What is MemGPT? - -MemoryGPT (or MemGPT in short) is a system that intelligently manages different memory tiers in LLMs in order to effectively provide extended context within the LLM's limited context window. For example, MemGPT knows when to push critical information to a vector database and when to retrieve it later in the chat, enabling perpetual conversations. Learn more about MemGPT in our [paper](https://arxiv.org/abs/2310.08560). - -## Try MemGPT in your CLI - To run MemGPT for as a conversation agent in CLI mode, simply run `main.py`: ```sh From a15fd4bf7d37667ef19e7bfdd31b7dd8bbb7d7e1 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Mon, 16 Oct 2023 08:49:23 -0700 Subject: [PATCH 2/4] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e3e75535..ce6b3fdb 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,12 @@ ## Quick setup -Join Discord and message the MemGPT bot (in the `#memgpt` channel). Message `\profile` (to create your profile) and then `\create` (to create a MemGPT chatbot) to get started. +Join Discord and message the MemGPT bot (in the `#memgpt` channel). Then run the following commands (messaged to "MemGPT Bot"): +* `\profile` (to create your profile) +* `\key` (to enter your OpenAI key) +* `\create` (to create a MemGPT chatbot) + +You can see the full list of available commands when you enter `\` into the message box. ## What is MemGPT? From 66c0719038937b8e0aee72bf051cb3c7da256269 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Mon, 16 Oct 2023 08:55:33 -0700 Subject: [PATCH 3/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ce6b3fdb..fcc9a10a 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ ## Quick setup Join Discord and message the MemGPT bot (in the `#memgpt` channel). Then run the following commands (messaged to "MemGPT Bot"): -* `\profile` (to create your profile) -* `\key` (to enter your OpenAI key) -* `\create` (to create a MemGPT chatbot) +* `/profile` (to create your profile) +* `key` (to enter your OpenAI key) +* `/create` (to create a MemGPT chatbot) You can see the full list of available commands when you enter `\` into the message box. From 0bf8a423ebb0f7944c11d4553329840c6dd3fc79 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Mon, 16 Oct 2023 08:56:11 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fcc9a10a..7175ebd6 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,10 @@ Join Discord and message the MemGPT bot (in the `#memgpt` channel). Then run the following commands (messaged to "MemGPT Bot"): * `/profile` (to create your profile) -* `key` (to enter your OpenAI key) +* `/key` (to enter your OpenAI key) * `/create` (to create a MemGPT chatbot) -You can see the full list of available commands when you enter `\` into the message box. +You can see the full list of available commands when you enter `/` into the message box. ## What is MemGPT?