Spaces:
Build error
Build error
Update main.py
Browse files
main.py
CHANGED
|
@@ -7,8 +7,15 @@ from llama_cpp import Llama
|
|
| 7 |
app = FastAPI()
|
| 8 |
|
| 9 |
# --- CONFIGURATION ---
|
| 10 |
-
REPO_ID = "CoolShotSystems/Axiom-3.1-Sovereign"
|
| 11 |
-
FILENAME = "Meta-Llama-3.1-8B.Q4_K_M.gguf"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# Global Model Variable
|
| 14 |
axiom_model = None
|
|
|
|
| 7 |
app = FastAPI()
|
| 8 |
|
| 9 |
# --- CONFIGURATION ---
|
| 10 |
+
# REPO_ID = "CoolShotSystems/Axiom-3.1-Sovereign"
|
| 11 |
+
# FILENAME = "Meta-Llama-3.1-8B.Q4_K_M.gguf"
|
| 12 |
+
|
| 13 |
+
# --- CONFIGURATION ---
|
| 14 |
+
# OLD (Slow): "CoolShotSystems/Axiom-3.1-Sovereign"
|
| 15 |
+
# NEW (Fast): "hugging-quants/Llama-3.2-3B-Instruct-Q4_K_M-GGUF"
|
| 16 |
+
|
| 17 |
+
REPO_ID = "hugging-quants/Llama-3.2-3B-Instruct-Q4_K_M-GGUF"
|
| 18 |
+
FILENAME = "llama-3.2-3b-instruct-q4_k_m.gguf"
|
| 19 |
|
| 20 |
# Global Model Variable
|
| 21 |
axiom_model = None
|