Update app.py
Browse files
app.py
CHANGED
|
@@ -13,8 +13,11 @@ from pathlib import Path
|
|
| 13 |
|
| 14 |
|
| 15 |
# ---------------------- Download Model ----------------------
|
| 16 |
-
MODEL_URL = "https://huggingface.co/
|
| 17 |
-
MODEL_PATH = "
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
if not Path(MODEL_PATH).exists():
|
| 20 |
print("📥 Downloading Unsloth LLaMA 3.2 1B Q8_0 model...")
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
# ---------------------- Download Model ----------------------
|
| 16 |
+
# MODEL_URL = "https://huggingface.co/datasets/psy7743/llama3-8b-instruct-Q8_0.gguf/resolve/main/llama3-8b-instruct-Q8_0.gguf"
|
| 17 |
+
# MODEL_PATH = "llama3-8b-instruct-Q8_0.gguf"
|
| 18 |
+
|
| 19 |
+
MODEL_URL = "https://huggingface.co/datasets/psy7743/llama3-8b-instruct-Q8_0.gguf/resolve/main/Llama-3.2-1B-Instruct-Q8_0.gguf"
|
| 20 |
+
MODEL_PATH = "llama3-8b-instruct-Q8_0.gguf"
|
| 21 |
|
| 22 |
if not Path(MODEL_PATH).exists():
|
| 23 |
print("📥 Downloading Unsloth LLaMA 3.2 1B Q8_0 model...")
|