liang-huggingface commited on
Commit
0b39415
1 Parent(s): 665590c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,9 +6,9 @@ from pathlib import Path
6
  #os.system('CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python[server]')
7
 
8
  import argparse
9
- model_file = "Leo-Mistral-Hessianai-7B-Chat-GGUF"
10
  if not os.path.isfile(model_file):
11
- os.system("wget -c https://huggingface.co/TheBloke/Leo-Mistral-Hessianai-7B-Chat-GGUF")
12
 
13
  DEFAULT_MODEL_PATH = model_file
14
 
 
6
  #os.system('CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python[server]')
7
 
8
  import argparse
9
+ model_file = "leo-mistral-hessianai-7b-chat.Q4_K_M.gguf"
10
  if not os.path.isfile(model_file):
11
+ os.system("wget -c https://huggingface.co/TheBloke/Leo-Mistral-Hessianai-7B-Chat-GGUF/blob/main/leo-mistral-hessianai-7b-chat.Q4_K_M.gguf")
12
 
13
  DEFAULT_MODEL_PATH = model_file
14