A Simple Prototype for an LLM Enabled Todo List (With Flask as the Front End, and GPT-4-All as the LLM)
Clone the repository and navigate to it:
git clone https://github.com/wastella/gpt4all-todo-list.git && cd gpt4all-todo-list
Get GPT-4-All Model in GGJT Format (ggjt-model.bin
)
Install requirements.txt
(pip install -r requirements.txt
)
Run app.py
with your model path as the one and only argument (python3 app.py ./ggjt-model.bin
)
pyllamacpp - Python Bindings for Gpt4All
Flask Todo List Tutorial - UI is Mostly Taken from Here (Great Tutorial!)