* Divides dependencies into `pip install pymemgpt[legacy,local,postgres,dev]`. * Update docs
598 B
598 B
Contributing
Installing from source
First, install Poetry using the official instructions here.
Then, you can install MemGPT from source with:
git clone git@github.com:cpacker/MemGPT.git
poetry install -E dev
We recommend installing pre-commit to ensure proper formatting during development:
poetry run pre-commit install
poetry run pre-commit run --all-files
Formatting
We welcome pull requests! Please run the formatter before submitting a pull request:
poetry run black . -l 140