From 19d099f17ae7d46ec2c4b910e4f560f9e2d10f4c Mon Sep 17 00:00:00 2001 From: gramps Date: Mon, 13 Jul 2026 09:01:08 -0700 Subject: [PATCH] v0.17.4: remove redundant context thermometer; default to qwen2.5-7b-instruct --- config.py | 2 +- templates/index.html | 300 +++++++++++++++++++------------------------ 2 files changed, 133 insertions(+), 169 deletions(-) diff --git a/config.py b/config.py index 0ca63e8..1c6acf4 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ VERSION = "v0.17.2" OLLAMA_BASE = os.environ.get("OLLAMA_BASE", "http://localhost:11434") LLAMA_SERVER_BASE = os.environ.get("LLAMA_SERVER_BASE", "http://192.168.50.108:8081") SEARXNG_BASE = "http://localhost:8888" -DEFAULT_MODEL = "llama3.1:latest" +DEFAULT_MODEL = "qwen2.5-7b-instruct" COMPLETIONS_API_KEY = os.environ.get("CAIC_COMPLETIONS_API_KEY", "caic-sk-" + os.urandom(24).hex()) MODEL_CONTEXT_LENGTH = 4096 diff --git a/templates/index.html b/templates/index.html index 5a53883..a2204ad 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,84 +11,91 @@