when i use gpt4all==0.2.3 got error below (.venv) PS D:\Projects\owngpt> python gpt.py load INSTRUCTOR_Transformer max_seq_length 512 loading indexes loading indexes Traceback (most recent call last): File "D:\Projects\owngpt\gpt.py", line 29, in llm = GPT4All( File "D:\Projects\owngpt.venv\lib\site-packages\langchain\load\serializable.py", line 97, in init super().init(**kwargs) File "D:\Projects\owngpt.venv\lib\site-packages\pydantic\v1\main.py", line 341, in init raise validation_error pydantic.v1.error_wrappers.ValidationError: 1 validation error for GPT4All root GPT4All.init() got an unexpected keyword argument 'device' (type=type_error)
when i use gpt4all==2.0.0 got error below (.venv) PS D:\Projects\owngpt> python gpt.py load INSTRUCTOR_Transformer max_seq_length 512 loading indexes gguf_init_from_file: invalid magic number 67676a74 gguf_init_from_file: invalid magic number 67676a74 gguf_init_from_file: invalid magic number 67676a74 Traceback (most recent call last): File "D:\Projects\owngpt\gpt.py", line 23, in llm = GPT4All( File "D:\Projects\owngpt.venv\lib\site-packages\langchain\load\serializable.py", line 97, in init super().init(**kwargs) File "D:\Projects\owngpt.venv\lib\site-packages\pydantic\v1\main.py", line 341, in init raise validation_error pydantic.v1.error_wrappers.ValidationError: 1 validation error for GPT4All root Unable to instantiate model: code=129, Model format not supported (no matching implementation found) (type=value_error)
There was a problem with the model format in your code.
gpt4all
wanted the GGUF model format.Below is the fixed code.
Dependencies:
Fixed code:
Output is incorrect unfortunately.