Changed the name of the forced model

This file loads gpt4all-lora-quantized.bin instead of gpt4all-lora-quantized-ggml.bin which is what the installer downloads
This commit is contained in:
arroyoquiel 2023-04-08 00:04:40 -06:00 committed by GitHub
parent 5a711de8d0
commit da95046a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
app.py
View File

@ -468,7 +468,7 @@ if __name__ == "__main__":
)
parser.add_argument(
"-m", "--model", type=str, default="gpt4all-lora-quantized.bin", help="Force using a specific model."
"-m", "--model", type=str, default="gpt4all-lora-quantized-ggml.bin", help="Force using a specific model."
)
parser.add_argument(
"--temp", type=float, default=0.1, help="Temperature parameter for the model."