From faec3b47fc1cf1c7923f4aeb14b322037f3bc136 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Thu, 26 Oct 2023 15:35:49 -0700 Subject: [PATCH] update README with development instructions --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 8f68e31e..6de3bea9 100644 --- a/README.md +++ b/README.md @@ -345,3 +345,17 @@ Datasets used in our [paper](https://arxiv.org/abs/2310.08560) can be downloaded - [x] CLI UI improvements ([issue](https://github.com/cpacker/MemGPT/issues/11)) - [x] Add support for other LLM backends ([issue](https://github.com/cpacker/MemGPT/issues/18), [discussion](https://github.com/cpacker/MemGPT/discussions/67)) - [ ] Release MemGPT family of open models (eg finetuned Mistral) ([discussion](https://github.com/cpacker/MemGPT/discussions/67)) + +## Development +You can install MemGPT from source with: +``` +git clone git@github.com:cpacker/MemGPT.git +poetry shell +poetry install +``` + +### Contributing +We welcome pull requests! Please run the formatter before submitting a pull request: +``` +poetry run black . -l 140 +```