Spaces:
Configuration error
Configuration error
File size: 14,988 Bytes
6733714 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | """
4-Layer Query Cache
===================
Layer 1 β Exact hash cache : SHA-256(normalized_query) β answer (<5ms)
Layer 2 β Semantic cache : embed(query) β cosine search in Redis (<50ms)
Layer 3 β Anthropic prompt : handled in synthesizer.py via cache_control
Layer 4 β Full RAG pipeline : fallback, result stored back into L1+L2
Accuracy guarantee:
- Cached answers only served when similarity >= CACHE_SIMILARITY_THRESHOLD
- Answers only stored when confidence >= CACHE_MIN_CONFIDENCE
- Legal content TTL = 48h (GST/tax rules change; stale answers are dangerous)
"""
import hashlib
import json
import logging
import re
import struct
import threading
import time
from typing import Optional
import faiss
import numpy as np
from app.config import (
REDIS_URL,
CACHE_SIMILARITY_THRESHOLD,
CACHE_MIN_CONFIDENCE,
CACHE_TTL_SECONDS,
VECTOR_DIM,
PROMPT_VERSION,
)
logger = logging.getLogger(__name__)
# ββ Redis client (lazy, optional β app works without Redis) ββββββββββββββββββ
_redis_client = None
_redis_failed_until: float = 0.0 # circuit-breaker timestamp
# ββ DiskCache fallback (used when Redis is unavailable) ββββββββββββββββββββββ
# Works with the local filesystem β ephemeral per container session but still
# saves repeated calls within the same deployment (team asking the same query).
_disk_cache = None
def _get_disk_cache():
global _disk_cache
if _disk_cache is not None:
return _disk_cache
try:
import diskcache
_disk_cache = diskcache.Cache(".diskcache_v5")
logger.info("DiskCache fallback active (Redis unavailable)")
except Exception as e:
logger.warning(f"DiskCache also unavailable: {e}")
_disk_cache = None
return _disk_cache
def _get_redis():
"""Returns a connected Redis client, or None if Redis is unavailable.
Circuit-breaker: after a connection failure, waits 60 s before retrying
so the 2-second socket_connect_timeout is not paid on every call within
the same request (would add ~16 s when Redis is down).
"""
global _redis_client, _redis_failed_until
if _redis_client is not None:
return _redis_client
if time.monotonic() < _redis_failed_until:
return None
try:
import redis
client = redis.from_url(REDIS_URL, decode_responses=False, socket_connect_timeout=2)
client.ping()
_redis_client = client
logger.info(f"Redis connected: {REDIS_URL}")
except Exception as e:
logger.warning(f"Redis unavailable β falling back to DiskCache: {e}")
_redis_client = None
_redis_failed_until = time.monotonic() + 60.0
return _redis_client
# ββ Key helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _exact_key(query: str) -> str:
normalized = " ".join(query.lower().strip().split())
digest = hashlib.sha256(normalized.encode()).hexdigest()
return f"leta:{PROMPT_VERSION}:exact:{digest}"
def _embedding_key(query: str) -> str:
digest = hashlib.sha256(query.lower().strip().encode()).hexdigest()
return f"leta:{PROMPT_VERSION}:emb:{digest}"
def _semantic_index_key() -> str:
return f"leta:{PROMPT_VERSION}:semantic:index"
# ββ Vector serialization (compact binary, no extra deps) ββββββββββββββββββββ
def _vec_to_bytes(vec: np.ndarray) -> bytes:
arr = vec.astype(np.float32).flatten()
return struct.pack(f"{len(arr)}f", *arr)
def _bytes_to_vec(data: bytes) -> np.ndarray:
n = len(data) // 4
return np.array(struct.unpack(f"{n}f", data), dtype=np.float32)
def _cosine_similarity(a: np.ndarray, b: np.ndarray) -> float:
denom = (np.linalg.norm(a) * np.linalg.norm(b))
if denom == 0:
return 0.0
return float(np.dot(a, b) / denom)
# ββ Layer 1: Exact Hash Cache ββββββββββββββββββββββββββββββββββββββββββββββββ
def get_exact(query: str):
key = _exact_key(query)
# Try Redis first
r = _get_redis()
if r is not None:
try:
data = r.get(key)
if data:
payload = json.loads(data)
logger.info(f"Cache L1 HIT (Redis) | q={query[:60]}")
return (payload["answer"], payload.get("sources", []))
except Exception as e:
logger.warning(f"Cache L1 Redis get error: {e}")
# Fallback to DiskCache
dc = _get_disk_cache()
if dc is not None:
try:
payload = dc.get(key)
if payload:
logger.info(f"Cache L1 HIT (DiskCache) | q={query[:60]}")
return (payload["answer"], payload.get("sources", []))
except Exception as e:
logger.warning(f"Cache L1 DiskCache get error: {e}")
return None
def set_exact(query: str, answer: str, confidence: float, sources: list = None) -> None:
if confidence < CACHE_MIN_CONFIDENCE:
logger.debug(f"Cache L1 SKIP (low confidence {confidence:.2f}) | q={query[:60]}")
return
key = _exact_key(query)
payload = {"answer": answer, "confidence": confidence, "sources": sources or [], "ts": time.time()}
# Try Redis first
r = _get_redis()
if r is not None:
try:
r.setex(key, CACHE_TTL_SECONDS, json.dumps(payload).encode())
logger.debug(f"Cache L1 SET (Redis) | q={query[:60]}")
return
except Exception as e:
logger.warning(f"Cache L1 Redis set error: {e}")
# Fallback to DiskCache
dc = _get_disk_cache()
if dc is not None:
try:
dc.set(key, payload, expire=CACHE_TTL_SECONDS)
logger.debug(f"Cache L1 SET (DiskCache) | q={query[:60]}")
except Exception as e:
logger.warning(f"Cache L1 DiskCache set error: {e}")
# ββ Embedding Cache (query text β embedding vector) βββββββββββββββββββββββββ
def get_cached_embedding(query: str) -> Optional[np.ndarray]:
r = _get_redis()
if r is None:
return None
try:
data = r.get(_embedding_key(query))
if data:
vec = _bytes_to_vec(data)
if len(vec) == VECTOR_DIM:
return vec
except Exception as e:
logger.warning(f"Embedding cache get error: {e}")
return None
def set_cached_embedding(query: str, vec: np.ndarray) -> None:
r = _get_redis()
if r is None:
return
try:
# Embedding TTL = 7 days (vectors don't become stale)
r.setex(_embedding_key(query), 7 * 24 * 3600, _vec_to_bytes(vec))
except Exception as e:
logger.warning(f"Embedding cache set error: {e}")
# ββ Layer 2: Semantic Cache ββββββββββββββββββββββββββββββββββββββββββββββββββ
# We use a 2-Tiered Semantic Cache:
# Tier 1: Local FAISS Index (In-memory, O(log N) search)
# Tier 2: Redis Hash Index (Persistent storage, O(N) but used for sync)
MAX_SEMANTIC_ENTRIES = 2000 # keep memory bounded
_faiss_index = None
_faiss_metadata = [] # Stores [answer, query_text, confidence]
_faiss_lock = threading.Lock()
def _refresh_faiss_index():
"""Syncs the local FAISS index from Redis data."""
global _faiss_index, _faiss_metadata
r = _get_redis()
if r is None:
return
try:
index_key = _semantic_index_key()
all_entries = r.hgetall(index_key)
if not all_entries:
return
vectors = []
metadata = []
for _, raw in all_entries.items():
try:
entry = json.loads(raw)
vec = _bytes_to_vec(bytes.fromhex(entry["vec_hex"]))
vectors.append(vec)
metadata.append({
"answer": entry["answer"],
"query_text": entry.get("query_text", ""), # for guard check
"confidence": entry["confidence"]
})
except Exception:
continue
if vectors:
with _faiss_lock:
# Use IndexFlatIP for Cosine Similarity (vectors are normalized in Retriever)
dim = len(vectors[0])
new_index = faiss.IndexFlatIP(dim)
new_index.add(np.array(vectors).astype('float32'))
_faiss_index = new_index
_faiss_metadata = metadata
logger.info(f"FAISS Cache Index rebuilt: {len(metadata)} entries")
except Exception as e:
logger.error(f"Failed to refresh FAISS cache: {e}")
def verify_cache_hit(query: str, cached_metadata: dict) -> bool:
"""
Accuracy Guard: Ensures the cached answer is truly relevant.
Checks for high-priority legal keyword overlap.
"""
q_lower = query.lower()
# Extract sections like "Sec 17", "Section 17(5)"
q_sections = set(re.findall(r'\bsec(?:tion)?\s*\d+', q_lower))
if not q_sections:
return True # General query, rely on embedding similarity
ans_text = (cached_metadata.get("answer", "") + " " + cached_metadata.get("query_text", "")).lower()
# If the query specifies a section, the answer MUST contain it
for sec in q_sections:
# Normalize: "Sec 17" -> "17"
sec_num = re.search(r'\d+', sec).group()
if sec_num not in ans_text:
logger.warning(f"Accuracy Guard REJECTED cache hit: Query mentions Sec {sec_num} but answer does not.")
return False
return True
def get_semantic(query_vec: np.ndarray, query_text: str = ""):
"""
Returns (answer, sources) tuple if cosine similarity >= threshold and passes accuracy guard.
"""
global _faiss_index
if _faiss_index is None:
_refresh_faiss_index()
if _faiss_index is None:
return None
try:
query_vec_np = np.array([query_vec]).astype('float32')
D, I = _faiss_index.search(query_vec_np, 1)
if len(I[0]) > 0:
idx = I[0][0]
similarity = D[0][0]
if idx != -1 and similarity >= CACHE_SIMILARITY_THRESHOLD:
meta = _faiss_metadata[idx]
if query_text and not verify_cache_hit(query_text, meta):
return None
logger.info(f"Cache L2 HIT (FAISS) | similarity={similarity:.3f}")
return (meta["answer"], meta.get("sources", []))
except Exception as e:
logger.warning(f"Cache L2 (FAISS) search error: {e}")
return _get_semantic_slow(query_vec)
return None
def _get_semantic_slow(query_vec: np.ndarray):
"""Legacy slow scan as fallback."""
r = _get_redis()
if r is None: return None
try:
index_key = _semantic_index_key()
all_entries = r.hgetall(index_key)
for _, raw in all_entries.items():
entry = json.loads(raw)
sim = _cosine_similarity(query_vec, _bytes_to_vec(bytes.fromhex(entry["vec_hex"])))
if sim >= CACHE_SIMILARITY_THRESHOLD:
return (entry["answer"], entry.get("sources", []))
except: pass
return None
def set_semantic(query_vec: np.ndarray, answer: str, confidence: float, query_text: str = "", sources: list = None) -> None:
if confidence < CACHE_MIN_CONFIDENCE:
return
r = _get_redis()
if r is None:
return
try:
index_key = _semantic_index_key()
current_count = r.hlen(index_key)
if current_count >= MAX_SEMANTIC_ENTRIES:
keys_to_delete = list(r.hkeys(index_key))[:MAX_SEMANTIC_ENTRIES // 10]
if keys_to_delete:
r.hdel(index_key, *keys_to_delete)
entry_key = hashlib.sha256(
(answer[:100] + query_text[:50]).encode()
).hexdigest()[:16]
entry = {
"vec_hex": _vec_to_bytes(query_vec).hex(),
"answer": answer,
"query_text": query_text,
"confidence": confidence,
"sources": sources or [],
"ts": time.time(),
}
r.hset(index_key, entry_key, json.dumps(entry))
r.expire(index_key, CACHE_TTL_SECONDS)
with _faiss_lock:
if _faiss_index is not None:
_faiss_index.add(np.array([query_vec]).astype('float32'))
_faiss_metadata.append({
"answer": answer,
"query_text": query_text,
"confidence": confidence,
"sources": sources or [],
})
logger.debug(f"Cache L2 SET | entries~={current_count + 1}")
except Exception as e:
logger.warning(f"Cache L2 set error: {e}")
# ββ Combined lookup / store (used by retriever + app.py) ββββββββββββββββββββ
def cache_lookup(query: str, query_vec: Optional[np.ndarray] = None):
"""
Check L1 (exact) then L2 (semantic).
Returns (answer, sources) tuple or None on miss.
sources is a list of {title, page, url, score} dicts (may be empty list).
"""
result = get_exact(query)
if result:
return result
if query_vec is not None:
result = get_semantic(query_vec, query_text=query)
if result:
return result
return None
def cache_store(
query: str,
query_vec: Optional[np.ndarray],
answer: str,
confidence: float,
sources: list = None,
) -> None:
"""Store answer + sources in both L1 (exact) and L2 (semantic) if confidence is sufficient."""
set_exact(query, answer, confidence, sources=sources or [])
if query_vec is not None:
set_semantic(query_vec, answer, confidence, query_text=query, sources=sources or [])
# ββ Health check βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def cache_health() -> dict:
r = _get_redis()
if r is None:
return {"status": "unavailable", "url": REDIS_URL}
try:
info = r.info("memory")
semantic_entries = r.hlen(_semantic_index_key())
return {
"status": "connected",
"url": REDIS_URL,
"used_memory_human": info.get("used_memory_human", "?"),
"semantic_entries": semantic_entries,
"similarity_threshold": CACHE_SIMILARITY_THRESHOLD,
"min_confidence_to_cache": CACHE_MIN_CONFIDENCE,
"ttl_hours": CACHE_TTL_SECONDS // 3600,
}
except Exception as e:
return {"status": "error", "detail": str(e)}
|