This is a chat bot that uses AI-generated responses using the GPT4ALL data-set.
Download the gpt4all-lora-quantized.bin
file from Direct Link or [Torrent-Magnet].
Ensure the model is in the main directory! Along with binary
If you're using a different platform ensure you use the correct binary for your OS from:
- GPT4ALL Then Adjust the code in index.js to fit:
let GPT = new GPT4('./ai/gpt4all-lora-quantized-win64'); //Windows
let GPT = new GPT4('./ai/gpt4all-lora-quantized-OSX-m1'); //M1 Mac/OSX
let GPT = new GPT4('./ai/gpt4all-lora-quantized-OSX-intel'); //Intel Mac/OSX
let GPT = new GPT4('./ai/gpt4all-lora-quantized-linux-x86'); //Linux
- npm i
- node index.js
Related Repos: - GPT4ALL - Unmodified gpt4all Wrapper