Pulp

Results 132 comments of Pulp

Your `.env` should be something like: ``` PERSIST_DIRECTORY=db MODEL_TYPE=GPT4All MODEL_PATH=models/ggml-gpt4all-j-v1.3-groovy.bin EMBEDDINGS_MODEL_NAME=all-MiniLM-L6-v2 MODEL_N_CTX=1000 ``` See https://github.com/imartinez/privateGPT/blob/main/example.env

Follow the instruction in the [README](https://github.com/imartinez/privateGPT#environment-setup). Make sure to set the proper path to your model in your `.env` file.

Tested and works. IMHO the `does_vectorstore_exist` function implementation is too fragile/hardcoded. I think even just checking if `persist_directory` is empty or not may be enough and much cleaner, but I'm...

@recursionbane `ggml-gpt4all-l13b-snoozy.bin` works if you change line 30 in `privateGPT.py` Change this line `llm = GPT4All(model=model_path, n_ctx=model_n_ctx, backend='gptj', callbacks=callbacks, verbose=False)` to `llm = GPT4All(model=model_path, n_ctx=model_n_ctx, backend='llama', callbacks=callbacks, verbose=False)` I.e., change...

@lilinwang To be clear, you only changed `backend=` right? And can you confirm the default configuration works for you with the default model? You can always remove that change and...

See https://github.com/imartinez/privateGPT/issues/180 and https://github.com/imartinez/privateGPT/issues/214 This is a duplicate of many other issues.

Is it the same as https://github.com/imartinez/privateGPT/issues/281?

If you google for `fatal error C1083: cannot open include file: 'crtdbg.h': No such file or directory` or `Failed building wheel for hnswlib Failed to build hnswlib ERROR: Could not...

This is a duplicate of https://github.com/imartinez/privateGPT/issues/104 https://github.com/imartinez/privateGPT/issues/170 https://github.com/imartinez/privateGPT/issues/181

@mdeweerd You meant #299?