aklai commited on
Commit
e33d078
·
1 Parent(s): 6c67aaa

Added models folder

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,11 +12,11 @@ from langchain_chroma import Chroma
12
  from langchain_community.llms import GPT4All
13
  from huggingface_hub import hf_hub_download
14
 
15
- """
16
  model_path = "models"
17
  model_name = "bling-phi-3.gguf"
18
  hf_hub_download(repo_id="llmware/bling-phi-3-gguf", filename=model_name, local_dir=model_path)
19
- """
20
 
21
  llm = GPT4All(model="./models/bling-phi-3.gguf")
22
 
 
12
  from langchain_community.llms import GPT4All
13
  from huggingface_hub import hf_hub_download
14
 
15
+
16
  model_path = "models"
17
  model_name = "bling-phi-3.gguf"
18
  hf_hub_download(repo_id="llmware/bling-phi-3-gguf", filename=model_name, local_dir=model_path)
19
+
20
 
21
  llm = GPT4All(model="./models/bling-phi-3.gguf")
22