Hi there! Thank you for even being interested in contributing to this tutorial series.
This project uses Poetry as a dependency manager. Check out Poetry's documentation on how to install it on your system before proceeding.
❗Note: If you use Conda
or Pyenv
as your environment / package manager, avoid dependency conflicts by doing the following first:
- Before installing Poetry, create and activate a new Conda env (e.g.
conda create -n langchain python=3.9
) - Install Poetry (see above)
- Tell Poetry to use the virtualenv python environment (
poetry config virtualenvs.prefer-active-python true
) - Continue with the following steps.
To install requirements:
make install
This will install all requirements for running the package, examples, linting, formatting, tests, and coverage.
❗Note: If you're running Poetry 1.4.1 and receive a WheelFileValidationError
for debugpy
during installation, you can try either downgrading to Poetry 1.4.0 or disabling "modern installation" (poetry config installer.modern-installation false
) and re-install requirements. See this debugpy
issue for more details.
Now, you should be able to run the common tasks in the following section.
Type make
for a list of common tasks.
Formatting for this project is done via a combination of Black and isort via pre-commit.
To run formatting for this project:
make pre-commit
To run unit tests:
make test
If you add new logic, please add a unit test.
TBD