Update gpt4all example with model param (#2499)

I am pretty sure that the documentation here should point to `model`
instead of `model_path` based on the documentation here:


https://github.com/hwchase17/langchain/blob/master/langchain/llms/gpt4all.py#L26
doc
Jimmy Comfort 1 year ago committed by GitHub
parent 270384fb44
commit 1dfb6a2a44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,7 +49,7 @@
"source": [
"# You'll need to download a compatible model and convert it to ggml.\n",
"# See: https://github.com/nomic-ai/gpt4all for more information.\n",
"llm = GPT4All(model_path=\"./models/gpt4all-model.bin\")"
"llm = GPT4All(model=\"./models/gpt4all-model.bin\")"
]
},
{

Loading…
Cancel
Save