Fix default model to llama3.1:latest

This commit is contained in:
2026-03-15 15:57:33 -07:00
parent 1c91c336a9
commit d57f009b10

2
app.py
View File

@@ -49,7 +49,7 @@ OLLAMA_BASE = "http://localhost:11434"
SEARXNG_BASE = "http://localhost:8888" SEARXNG_BASE = "http://localhost:8888"
BASE_DIR = Path(__file__).parent BASE_DIR = Path(__file__).parent
DB_PATH = BASE_DIR / "jarvischat.db" DB_PATH = BASE_DIR / "jarvischat.db"
DEFAULT_MODEL = "deepseek-coder:6.7b" DEFAULT_MODEL = "llama3.1:latest"
# --- Templates and Static Files --- # --- Templates and Static Files ---
templates = Jinja2Templates(directory=str(BASE_DIR / "templates")) templates = Jinja2Templates(directory=str(BASE_DIR / "templates"))