From 761ef19b0cf6d690fba720ead7ca41032dbf896b Mon Sep 17 00:00:00 2001 From: SaneGaming Date: Mon, 1 Jan 2024 00:52:18 -0600 Subject: [PATCH] Include steps for Local LLMs (#749) Added install instructions if running LLMs locally. --- docs/quickstart.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/quickstart.md b/docs/quickstart.md index dad5bde8..f64377cc 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -11,6 +11,11 @@ To install MemGPT, make sure you have Python installed on your computer, then ru pip install pymemgpt ``` +If you are running LLMs locally, you will want to install MemGPT with the local dependencies by running: +```sh +pip install pymemgpt[local] +``` + If you already have MemGPT installed, you can update to the latest version with: ```sh pip install pymemgpt -U