Kal1510 commited on
Commit
9d83d90
·
verified ·
1 Parent(s): 7d0b9ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -37,11 +37,13 @@ import subprocess
37
 
38
  try:
39
  subprocess.run([
40
- "huggingface-cli", "download",
41
- "microsoft/Phi-3-mini-4k-instruct-gguf",
42
- "--local-dir", "./models",
43
- "--local-dir-use-symlinks", "False"
44
- ], check=True)
 
 
45
  except subprocess.CalledProcessError as e:
46
  print("Error occurred:", e)
47
 
 
37
 
38
  try:
39
  subprocess.run([
40
+ "huggingface-cli", "download",
41
+ "TheBloke/Phi-3-mini-4k-instruct-GGUF",
42
+ "phi-3-mini-4k-instruct.Q4_K_M.gguf",
43
+ "--local-dir", "./models",
44
+ "--local-dir-use-symlinks", "False"
45
+ ], check=True)
46
+
47
  except subprocess.CalledProcessError as e:
48
  print("Error occurred:", e)
49