FortuneT commited on
Commit
6b9c8bf
·
verified ·
1 Parent(s): b516402

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,8 +4,8 @@ import requests
4
  from llama_cpp import Llama
5
 
6
  # Define model URL & local path
7
- MODEL_URL = "https://huggingface.co/TheBloke/Llama-2-7B-GGML/resolve/main/llama-7B.ggmlv3.q4_0.bin"
8
- MODEL_PATH = "/home/user/app/llama-7B.ggmlv3.q4_0.bin" # Local storage path
9
 
10
  # Function to download model if not present
11
  def download_model():
 
4
  from llama_cpp import Llama
5
 
6
  # Define model URL & local path
7
+ MODEL_URL = "https://huggingface.co/TheBloke/Llama-2-7B-GGUF/resolve/main/llama-2-7b.Q5_K_S.gguf"
8
+ MODEL_PATH = "/home/user/app/llama-2-7b.Q5_K_S.gguf" # Local storage path
9
 
10
  # Function to download model if not present
11
  def download_model():