- Clone project
- Create a virtual environment. This can be done in the likes of PyCharm or via the command line by running
python3 -m venv venv
- Activate the venv by running
source venv/bin/activate
- Ensure your Python interpreter is pointing to your venv folder by checking project settings in your IDE
- Run
pip install -r requirements.txt
to install the projects python packages - Download the model for local use from HuggingFace - openchat-3.5-1210.Q4_0.gguf
- Run the
cv-generator.py
main method
Updates to python packages requires updating the projects requirements.txt
file.
To do this run pip freeze > requirements.txt
in the command line and commit the changes using Git.