make QDRANT_URL, EMBED_URL, AMQP_SECRET_PATH env-overridable; document single-node/WSL deployment

This commit is contained in:
gramps
2026-07-14 14:33:54 -07:00
parent e584e4983c
commit 3f64bed485
3 changed files with 21 additions and 3 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ cAIc - RAG pipeline: Qdrant vector search + system prompt assembly.
"""
import asyncio
import logging
import os
from datetime import datetime, timezone
import httpx
@@ -15,7 +16,7 @@ from config import MAX_SKILL_PROMPT_CHARS, QDRANT_URL, RAG_COLLECTION
log = logging.getLogger("caic")
EMBED_URL = "http://192.168.50.210:11434"
EMBED_URL = os.environ.get("CAIC_EMBED_URL", "http://192.168.50.210:11434")
EMBED_MODEL = "mxbai-embed-large"
RAG_SCORE_THRESHOLD = 0.25