Use default Llama 2 supported by GPT4All

Remove custom logic to download custom Llama 2 model.
This was added as GPT4All didn't support Llama 2 when it was added to Khoj
This commit is contained in:
Debanjum Singh Solanky
2023-10-03 16:29:46 -07:00
parent 4a5ed7f06c
commit 13b16a4364
6 changed files with 7 additions and 79 deletions

View File

@@ -24,7 +24,7 @@ from khoj.processor.conversation.gpt4all.utils import download_model
from khoj.processor.conversation.utils import message_to_log
MODEL_NAME = "llama-2-7b-chat.ggmlv3.q4_K_S.bin"
MODEL_NAME = "llama-2-7b-chat.ggmlv3.q4_0.bin"
@pytest.fixture(scope="session")