Post

privateGPT

privateGPT

Installation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# clone Repo
git clone https://github.com/imartinez/privateGPT.git

# enter Repo
cd privateGPT

# virtuelle Umgebung erstellen
python3 -m privateGPT venv

# umgebung betretten
source privateGPT/bin/active

# Requirements installieren
pip3 install -r requirements.txt

# download model
mkdir models
cd models
curl -O https://gpt4all.io/models/ggml-gpt4all-j-v1.3-groovy.bin

# config 
cp example.env .env

# read documents
python3 ingest.py

# start gpt
python3 privateGPT.py

source

This post is licensed under CC BY 4.0 by the author.