Spaces:
Runtime error
Runtime error
Commit
·
2c6a6a2
1
Parent(s):
048277f
Update app.py
Browse files
app.py
CHANGED
@@ -6,9 +6,9 @@ os.environ["CMAKE_ARGS"] = "-DLLAMA_CUBLAS=on"
|
|
6 |
os.system('CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python[server]')
|
7 |
|
8 |
import argparse
|
9 |
-
model_file = "
|
10 |
if not os.path.isfile(model_file):
|
11 |
-
os.system("wget -c https://huggingface.co/
|
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-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 |
|