bindings: replace references to GGMLv3 models with GGUF (#1547)

This commit is contained in:
cebtenzzre
2023-10-22 11:58:28 -04:00
committed by GitHub
parent c25dc51935
commit 37b007603a
7 changed files with 29 additions and 34 deletions

View File

@@ -9,7 +9,7 @@ GPT4All software is optimized to run inference of 3-13 billion parameter large l
=== "GPT4All Example"
``` py
from gpt4all import GPT4All
model = GPT4All("orca-mini-3b.ggmlv3.q4_0.bin")
model = GPT4All("orca-mini-3b-gguf2-q4_0.gguf")
output = model.generate("The capital of France is ", max_tokens=3)
print(output)
```