bkoz commited on
Commit
dc28d56
·
unverified ·
1 Parent(s): 030372e

added model download

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ def download_model():
18
 
19
  print(f'Downloading model {REPO_ID}/{FILENAME}')
20
  m = hf_hub_download(repo_id=REPO_ID, filename=FILENAME)
21
- print(m)
22
-
23
  def load_model():
24
  from llama_cpp import Llama, LlamaGrammar
25
  model_file="llama-2-7b.Q5_K_S.gguf"
 
18
 
19
  print(f'Downloading model {REPO_ID}/{FILENAME}')
20
  m = hf_hub_download(repo_id=REPO_ID, filename=FILENAME)
21
+ print(f'status: {m}')
22
+
23
  def load_model():
24
  from llama_cpp import Llama, LlamaGrammar
25
  model_file="llama-2-7b.Q5_K_S.gguf"