Sohrabfx commited on
Commit
98d22f5
1 Parent(s): 0ffa964

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,8 +14,8 @@ def download_file(file_link, filename):
14
 
15
 
16
  # Dowloading GGML model from HuggingFace
17
- ggml_model_path = "https://huggingface.co/TheBloke/CodeLlama-7B-Instruct-GGML/blob/main/codellama-7b-instruct.ggmlv3.Q5_1.bin"
18
- filename = "codellama-7b-instruct.ggmlv3.Q5_1.bin"
19
 
20
  download_file(ggml_model_path, filename)
21
 
 
14
 
15
 
16
  # Dowloading GGML model from HuggingFace
17
+ ggml_model_path = "https://huggingface.co/TheBloke/CodeLlama-7B-Instruct-GGML/resolve/main/codellama-7b-instruct.ggmlv3.Q4_1.bin"
18
+ filename = "codellama-7b-instruct.ggmlv3.Q4_1.bin"
19
 
20
  download_file(ggml_model_path, filename)
21