phisinger commited on
Commit
c6393e9
·
1 Parent(s): 7d6d012

update download path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from langchain.llms import GPT4All
12
 
13
  modelPath = "/home/phisinger/Programmieren/wahlprogramm_analyse/models/mistral-7b-openorca.Q4_0.gguf"
14
  if (os.path.exists(modelPath) == False):
15
- url = "https://huggingface.co/TheBloke/Mistral-7B-OpenOrca-GGUF/raw/main/mistral-7b-openorca.Q4_0.gguf?download=true"
16
  response = requests.get(url)
17
  with open("./model.gguf", mode="wb") as file:
18
  file.write(response.content)
 
12
 
13
  modelPath = "/home/phisinger/Programmieren/wahlprogramm_analyse/models/mistral-7b-openorca.Q4_0.gguf"
14
  if (os.path.exists(modelPath) == False):
15
+ url = "https://huggingface.co/TheBloke/Mistral-7B-OpenOrca-GGUF/resolve/main/mistral-7b-openorca.Q4_K_M.gguf"
16
  response = requests.get(url)
17
  with open("./model.gguf", mode="wb") as file:
18
  file.write(response.content)