v0.21.0 — perplexity persistence, env-overridable config, scroll/DOM fixes, single-node docs

This commit is contained in:
gramps
2026-07-14 14:39:30 -07:00
parent 3f64bed485
commit 7acea605ac
9 changed files with 74 additions and 16 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ from pathlib import Path
import httpx
import psutil
from config import LLAMA_SERVER_BASE, SEARXNG_BASE
from config import LLAMA_SERVER_BASE, SEARXNG_BASE, QDRANT_URL
log = logging.getLogger("caic")
@@ -95,7 +95,7 @@ async def assess_hardware() -> dict:
qdrant_collections = []
try:
async with httpx.AsyncClient(timeout=3) as client:
resp = await client.get("http://192.168.50.108:6333/collections")
resp = await client.get(f"{QDRANT_URL}/collections")
if resp.status_code == 200:
qdrant_reachable = True
data = resp.json()