Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,9 +2,9 @@ import gradio as gr
|
|
2 |
import os
|
3 |
from pathlib import Path
|
4 |
import argparse
|
5 |
-
model_file = "
|
6 |
if not os.path.isfile(model_file):
|
7 |
-
os.system("wget -c https://huggingface.co/TheBloke/
|
8 |
|
9 |
DEFAULT_MODEL_PATH = model_file
|
10 |
|
|
|
2 |
import os
|
3 |
from pathlib import Path
|
4 |
import argparse
|
5 |
+
model_file = "openhermes-2-mistral-7b.Q4_0.gguf"
|
6 |
if not os.path.isfile(model_file):
|
7 |
+
os.system("wget -c https://huggingface.co/TheBloke/OpenHermes-2-Mistral-7B-GGUF/resolve/main/openhermes-2-mistral-7b.Q4_0.gguf")
|
8 |
|
9 |
DEFAULT_MODEL_PATH = model_file
|
10 |
|