Merge pull request #16 from DennisStanistan/main

fix model path in install.sh
This commit is contained in:
Andriy Mulyar 2023-04-07 00:28:51 -04:00 committed by GitHub
commit 0351e02ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@ if [ $? -ne 0 ]; then
fi
echo Downloading latest model
wget -P model/ https://the-eye.eu/public/AI/models/nomic-ai/gpt4all/gpt4all-lora-quantized-ggml.bin
wget -P models/ https://the-eye.eu/public/AI/models/nomic-ai/gpt4all/gpt4all-lora-quantized-ggml.bin
if [ $? -ne 0 ]; then
echo "Failed to download model. Please check your `wget` dependency, internet connection and try again."
exit 1