Spaces:
Sleeping
Sleeping
Samuel L Meyers commited on
Commit ·
4f3dfdd
1
Parent(s): 2205003
Fix app
Browse files- code/app.py +1 -1
code/app.py
CHANGED
|
@@ -14,7 +14,7 @@ from huggingface_hub import hf_hub_download
|
|
| 14 |
|
| 15 |
model_path = "./starling-lm-7b-alpha.Q6_K.gguf"
|
| 16 |
|
| 17 |
-
mdlpath = hf_hub_download(repo_id="TheBloke/Starling-LM-7B-alpha-GGUF", filename=model_path)
|
| 18 |
|
| 19 |
lcpp_model = Llama(model_path=model_path)
|
| 20 |
|
|
|
|
| 14 |
|
| 15 |
model_path = "./starling-lm-7b-alpha.Q6_K.gguf"
|
| 16 |
|
| 17 |
+
mdlpath = hf_hub_download(repo_id="TheBloke/Starling-LM-7B-alpha-GGUF", filename=model_path, local_dir="./")
|
| 18 |
|
| 19 |
lcpp_model = Llama(model_path=model_path)
|
| 20 |
|