CoruNethron commited on
Commit
07099ff
·
verified ·
1 Parent(s): fe86ead

Update olapp.py

Browse files
Files changed (1) hide show
  1. olapp.py +7 -7
olapp.py CHANGED
@@ -6,18 +6,18 @@ from huggingface_hub.file_download import http_get
6
  from llama_cpp import Llama
7
 
8
 
9
- directory = "./model/"
10
  model_url = "https://huggingface.co/IlyaGusev/saiga_mistral_7b_gguf/resolve/main/model-q8_0.gguf"
11
  model_name = "model-q8_0.gguf"
12
  final_model_path = os.path.join(directory, model_name)
13
 
14
  print("Downloading all files...")
15
- rm_files = [os.path.join(directory, f) for f in os.listdir(directory)]
16
- for f in rm_files:
17
- if os.path.isfile(f):
18
- os.remove(f)
19
- else:
20
- shutil.rmtree(f)
21
 
22
  if not os.path.exists(final_model_path):
23
  with open(final_model_path, "wb") as f:
 
6
  from llama_cpp import Llama
7
 
8
 
9
+ directory = "."
10
  model_url = "https://huggingface.co/IlyaGusev/saiga_mistral_7b_gguf/resolve/main/model-q8_0.gguf"
11
  model_name = "model-q8_0.gguf"
12
  final_model_path = os.path.join(directory, model_name)
13
 
14
  print("Downloading all files...")
15
+ #rm_files = [os.path.join(directory, f) for f in os.listdir(directory)]
16
+ #for f in rm_files:
17
+ # if os.path.isfile(f):
18
+ # os.remove(f)
19
+ # else:
20
+ # shutil.rmtree(f)
21
 
22
  if not os.path.exists(final_model_path):
23
  with open(final_model_path, "wb") as f: