Spaces:
Sleeping
Sleeping
File size: 36,658 Bytes
7644eac |
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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 |
"""
Vector database interface for the AI Learning Path Generator.
Handles document storage, retrieval, and semantic search.
Optimizations:
- Singleton pattern for connection pooling
- Batch operations for efficiency
- Query optimization and caching
- Relevance score filtering (>0.7)
- Performance logging
"""
import os
import time
import hashlib
import sqlite3
import json
from typing import List, Dict, Any, Optional
from pathlib import Path
import threading
import chromadb
from chromadb.config import Settings
from chromadb.utils import embedding_functions
from langchain.schema import Document
from src.utils.config import (
VECTOR_DB_PATH,
OPENAI_API_KEY,
EMBEDDING_MODEL,
# Advanced RAG config
ENABLE_SEMANTIC_CACHE,
QUERY_REWRITE_ENABLED,
RERANK_ENABLED,
CONTEXTUAL_COMPRESSION_ENABLED,
USE_LOCAL_RERANKER,
COHERE_API_KEY,
COHERE_RERANK_MODEL,
LOCAL_RERANKER_MODEL,
QUERY_REWRITE_MODEL,
QUERY_REWRITE_MAX_TOKENS,
COMPRESSION_MODEL,
COMPRESSION_MAX_TOKENS,
RERANK_TOP_K,
HYBRID_TOP_K,
BM25_K1,
BM25_B,
REDIS_URL,
REDIS_HOST,
REDIS_PORT,
REDIS_PASSWORD,
REDIS_DB,
SEMANTIC_CACHE_TTL,
SEMANTIC_CACHE_THRESHOLD
)
from src.utils.cache import cache
# Singleton instance and lock for thread-safe initialization
_instance = None
_lock = threading.Lock()
class DocumentStore:
"""
Enhanced document retrieval using ChromaDB vector database with connection pooling.
Features:
- Singleton pattern for connection reuse
- Batch operations for efficiency
- Query optimization and caching
- Relevance score filtering (>0.7)
- Performance logging
"""
# Class-level client for connection pooling
_shared_client = None
_shared_embedding_function = None
def __new__(cls, db_path: Optional[str] = None):
"""Singleton pattern: ensure only one instance exists."""
global _instance
if _instance is None:
with _lock:
if _instance is None:
_instance = super(DocumentStore, cls).__new__(cls)
_instance._initialized = False
return _instance
def __init__(self, db_path: Optional[str] = None):
"""
Initialize the document store with connection pooling.
Args:
db_path: Optional path to the vector database
"""
# Skip if already initialized (singleton pattern)
if self._initialized:
return
print(f"--- DocumentStore.__init__ started (db_path: {db_path or VECTOR_DB_PATH}) ---")
self.db_path = db_path or VECTOR_DB_PATH
# Performance tracking
self.search_count = 0
self.cache_hits = 0
# Ensure the directory exists
os.makedirs(self.db_path, exist_ok=True)
print(f"--- DocumentStore.__init__: Ensured directory exists: {self.db_path} ---")
# Initialize shared client (connection pooling)
if DocumentStore._shared_client is None:
print("--- DocumentStore.__init__: Initializing shared chromadb.Client ---")
try:
DocumentStore._shared_client = chromadb.Client(
Settings(
chroma_db_impl="duckdb+parquet",
persist_directory=self.db_path,
anonymized_telemetry=False,
allow_reset=True
)
)
print("โ
Shared ChromaDB client initialized (connection pooling active)")
except Exception as e:
print(f"โ ๏ธ Failed to initialize ChromaDB client: {e}")
raise
self.client = DocumentStore._shared_client
# Initialize shared embedding function (reuse across requests)
if DocumentStore._shared_embedding_function is None:
print(f"--- DocumentStore.__init__: Initializing custom embedding function ---")
try:
# Use free local embedding function if OpenAI API key not available
if OPENAI_API_KEY:
# Create custom embedding function compatible with OpenAI v1.x
from openai import OpenAI
class CustomOpenAIEmbedding:
def __init__(self, api_key, model_name="text-embedding-ada-002"):
self.client = OpenAI(api_key=api_key)
self.model_name = model_name
def __call__(self, texts):
"""Generate embeddings for a list of texts."""
if isinstance(texts, str):
texts = [texts]
response = self.client.embeddings.create(
input=texts,
model=self.model_name
)
return [item.embedding for item in response.data]
DocumentStore._shared_embedding_function = CustomOpenAIEmbedding(
api_key=OPENAI_API_KEY,
model_name=EMBEDDING_MODEL
)
print("โ
Shared embedding function initialized (OpenAI)")
else:
# Use free sentence-transformers embedding (no API key needed)
print("Using free local embeddings (sentence-transformers)...")
DocumentStore._shared_embedding_function = embedding_functions.SentenceTransformerEmbeddingFunction(
model_name="all-MiniLM-L6-v2"
)
print("โ
Shared embedding function initialized (Local SentenceTransformer)")
except Exception as e:
print(f"โ ๏ธ Failed to initialize embedding function: {e}")
raise
self.embedding_function = DocumentStore._shared_embedding_function
# Create or get the collections
print("--- DocumentStore.__init__: Getting/creating 'learning_resources' collection ---")
self.resources_collection = self._initialize_collection(
name="learning_resources",
metadata={"description": "Educational resources and materials"}
)
print("--- DocumentStore.__init__: 'learning_resources' collection obtained ---")
print("--- DocumentStore.__init__: Getting/creating 'learning_paths' collection ---")
self.paths_collection = self._initialize_collection(
name="learning_paths",
metadata={"description": "Generated learning paths"}
)
print("--- DocumentStore.__init__: 'learning_paths' collection obtained ---")
# Mark as initialized
self._initialized = True
print("--- DocumentStore.__init__ finished ---")
def add_document(
self,
content: str,
metadata: Dict[str, Any],
collection_name: str = "learning_resources",
document_id: Optional[str] = None
) -> str:
"""
Add a document to the vector database.
Args:
content: Document content
metadata: Document metadata
collection_name: Name of the collection to add to
document_id: Optional ID for the document
Returns:
ID of the added document
"""
# Generate a document ID if not provided
doc_id = document_id or f"doc_{len(content) % 10000}_{hash(content) % 1000000}"
# Get the appropriate collection
collection = self._initialize_collection(name=collection_name)
# Add the document
collection.add(
documents=[content],
metadatas=[metadata],
ids=[doc_id]
)
return doc_id
def add_documents(
self,
documents: List[Document],
collection_name: str = "learning_resources"
) -> List[str]:
"""
Add multiple documents to the vector database.
Args:
documents: List of Document objects
collection_name: Name of the collection to add to
Returns:
List of document IDs
"""
if not documents:
return []
# Get the appropriate collection
collection = self._initialize_collection(name=collection_name)
# Prepare document data
contents = [doc.page_content for doc in documents]
metadatas = [doc.metadata for doc in documents]
ids = [f"doc_{i}_{hash(doc.page_content) % 1000000}" for i, doc in enumerate(documents)]
# Add documents in batches (ChromaDB has limits)
batch_size = 100
for i in range(0, len(documents), batch_size):
batch_end = min(i + batch_size, len(documents))
collection.add(
documents=contents[i:batch_end],
metadatas=metadatas[i:batch_end],
ids=ids[i:batch_end]
)
return ids
def search_documents(
self,
query: str,
collection_name: str = "learning_resources",
filters: Optional[Dict[str, Any]] = None,
top_k: int = 5,
offset: int = 0
) -> List[Document]:
"""
Search for documents using semantic similarity with pagination.
Args:
query: Search query
collection_name: Collection to search in
filters: Optional metadata filters
top_k: Number of results to return (default: 5)
offset: Number of results to skip for pagination (default: 0)
Returns:
List of relevant Document objects
"""
# Get the collection
try:
collection = self._initialize_collection(name=collection_name)
except Exception:
# Collection doesn't exist
return []
# Prepare filter if provided
where = {}
if filters:
for key, value in filters.items():
if isinstance(value, list):
# For list values, we need to use the $in operator
where[key] = {"$in": value}
else:
where[key] = value
# Execute the search (get more results for pagination)
try:
result = collection.query(
query_texts=[query],
n_results=top_k + offset, # Get enough results for pagination
where=where if where else None
)
except Exception as e:
print(f"โ ๏ธ Search failed: {e}")
print(f"๐ง Attempting schema repair for error: {type(e).__name__}")
# Try to repair schema and retry once
if self._try_repair_collection_schema(e):
print(f"๐ Schema repaired, retrying query...")
try:
result = collection.query(
query_texts=[query],
n_results=top_k + offset,
where=where if where else None
)
print(f"โ
Query retry successful after schema repair")
except Exception as retry_error:
print(f"โ ๏ธ Search retry failed: {retry_error}")
return []
else:
print(f"โ Schema repair not applicable for this error")
return []
# Convert results to Document objects
documents = []
if result and result.get("documents"):
# Apply offset for pagination
start_idx = offset
end_idx = offset + top_k
for i in range(start_idx, min(end_idx, len(result["documents"][0]))):
content = result["documents"][0][i]
metadata = result["metadatas"][0][i] if result.get("metadatas") and result["metadatas"][0] else {}
distance = result["distances"][0][i] if result.get("distances") and result["distances"][0] else 1.0
# Add relevance score to metadata
metadata["relevance_score"] = 1.0 - (distance / 2.0) # Convert distance to relevance (0-1)
documents.append(Document(
page_content=content,
metadata=metadata
))
return documents
def hybrid_search(
self,
query: str,
collection_name: str = "learning_resources",
filters: Optional[Dict[str, Any]] = None,
top_k: int = 5,
min_relevance: float = 0.7,
use_cache: bool = True
) -> List[Document]:
"""
Perform optimized hybrid search with caching and relevance filtering.
Optimizations:
- Query truncation to 500 chars
- Stop word removal
- Result caching (1 hour)
- Relevance score filtering (>0.7)
- Performance logging
Args:
query: Search query
collection_name: Collection to search in
filters: Optional metadata filters
top_k: Number of results to return (default: 5)
min_relevance: Minimum relevance score (default: 0.7)
use_cache: Whether to use cached results (default: True)
Returns:
List of relevant Document objects
"""
start_time = time.time()
self.search_count += 1
# Optimize query: truncate to 500 chars
optimized_query = query[:500] if len(query) > 500 else query
# Remove common stop words to focus on meaningful keywords
stop_words = {'the', 'a', 'an', 'and', 'or', 'but', 'in', 'on', 'at', 'to', 'for', 'of', 'with', 'by'}
query_words = optimized_query.lower().split()
filtered_words = [w for w in query_words if w not in stop_words]
optimized_query = ' '.join(filtered_words) if filtered_words else optimized_query
# Check cache first
if use_cache:
cache_key = cache.cache_key(
"hybrid_search",
optimized_query,
collection_name,
str(filters),
top_k,
min_relevance
)
cached_results = cache.get(cache_key)
if cached_results:
self.cache_hits += 1
elapsed = time.time() - start_time
print(f"๐ฐ Cache hit! Search completed in {elapsed*1000:.1f}ms (saved API call)")
return cached_results
# Perform semantic search
semantic_results = self.search_documents(
query=optimized_query,
collection_name=collection_name,
filters=filters,
top_k=top_k * 2 # Get more results for reranking
)
# Prepare keyword results for simple matching
keyword_docs = []
try:
# Get all documents matching the filters
collection = self._initialize_collection(name=collection_name)
# Prepare filter for keyword search
where = {}
if filters:
where.update(filters)
# Get documents matching the filter
result = collection.get(where=where if where else None)
if result and result.get("documents"):
# Simple keyword matching
query_terms = set(query.lower().split())
for i, content in enumerate(result["documents"]):
# Count matching terms in content
content_lower = content.lower()
match_count = sum(1 for term in query_terms if term in content_lower)
if match_count > 0:
metadata = result["metadatas"][i] if result.get("metadatas") else {}
# Score based on ratio of matching terms
metadata["relevance_score"] = match_count / len(query_terms)
keyword_docs.append(Document(
page_content=content,
metadata=metadata
))
except Exception:
# Keyword search failed, continue with semantic results only
pass
# Combine results, removing duplicates
all_docs = {}
# Add semantic results
for doc in semantic_results:
doc_key = hash(doc.page_content)
all_docs[doc_key] = doc
# Add keyword results that don't duplicate semantic results
for doc in keyword_docs:
doc_key = hash(doc.page_content)
if doc_key not in all_docs:
all_docs[doc_key] = doc
# Sort by relevance score
sorted_docs = sorted(
all_docs.values(),
key=lambda x: x.metadata.get("relevance_score", 0),
reverse=True
)
# Filter by minimum relevance score
filtered_docs = [
doc for doc in sorted_docs
if doc.metadata.get("relevance_score", 0) >= min_relevance
]
# Take top_k results
results = filtered_docs[:top_k]
# Performance logging
elapsed = time.time() - start_time
print(f"๐ Search completed in {elapsed*1000:.1f}ms - Found {len(results)}/{len(sorted_docs)} results (min_relevance={min_relevance})")
# Cache the results for 1 hour
if use_cache and results:
cache.set(cache_key, results, ttl=3600)
return results
def delete_document(
self,
document_id: str,
collection_name: str = "learning_resources"
) -> bool:
"""
Delete a document from the vector database.
Args:
document_id: ID of the document to delete
collection_name: Collection to delete from
Returns:
Success status
"""
try:
collection = self._initialize_collection(name=collection_name)
collection.delete(ids=[document_id])
return True
except Exception:
return False
def clear_collection(self, collection_name: str) -> bool:
"""
Clear all documents from a collection.
Args:
collection_name: Collection to clear
Returns:
Success status
"""
try:
self.client.delete_collection(collection_name)
self._initialize_collection(name=collection_name)
return True
except Exception:
return False
def add_documents_batch(
self,
documents: List[Document],
collection_name: str = "learning_resources",
batch_size: int = 100
) -> List[str]:
"""
Add documents in batches to avoid memory issues.
Args:
documents: List of Document objects
collection_name: Collection to add to
batch_size: Number of documents per batch (default: 100)
Returns:
List of document IDs
"""
if not documents:
return []
print(f"๐ฆ Adding {len(documents)} documents in batches of {batch_size}")
start_time = time.time()
try:
collection = self._initialize_collection(name=collection_name)
all_ids = []
for i in range(0, len(documents), batch_size):
batch_end = min(i + batch_size, len(documents))
batch = documents[i:batch_end]
# Prepare batch data
contents = [doc.page_content for doc in batch]
metadatas = [doc.metadata for doc in batch]
ids = [f"doc_{i+j}_{hash(doc.page_content) % 1000000}" for j, doc in enumerate(batch)]
# Add batch
collection.add(
documents=contents,
metadatas=metadatas,
ids=ids
)
all_ids.extend(ids)
print(f" โ
Batch {i//batch_size + 1}/{(len(documents)-1)//batch_size + 1} added ({len(batch)} docs)")
elapsed = time.time() - start_time
print(f"โ
Added {len(documents)} documents in {elapsed:.2f}s ({len(documents)/elapsed:.1f} docs/sec)")
return all_ids
except Exception as e:
print(f"โ ๏ธ Batch add failed: {e}")
return []
def get_collection_stats(self, collection_name: str = "learning_resources") -> Dict[str, Any]:
"""
Get statistics about a collection.
Args:
collection_name: Collection to get stats for
Returns:
Dictionary with collection statistics
"""
try:
collection = self._initialize_collection(name=collection_name)
# Get collection count
count = collection.count()
# Get sample documents to estimate size
sample = collection.get(limit=10)
avg_doc_size = 0
if sample and sample.get("documents"):
total_size = sum(len(doc) for doc in sample["documents"])
avg_doc_size = total_size / len(sample["documents"])
return {
"collection_name": collection_name,
"document_count": count,
"avg_document_size_bytes": avg_doc_size,
"estimated_total_size_kb": (count * avg_doc_size) / 1024,
"search_count": self.search_count,
"cache_hits": self.cache_hits,
"cache_hit_rate": f"{(self.cache_hits / self.search_count * 100):.1f}%" if self.search_count > 0 else "0%"
}
except Exception as e:
print(f"โ ๏ธ Failed to get collection stats: {e}")
return {"error": str(e)}
def cleanup_old_embeddings(
self,
collection_name: str = "learning_resources",
days_old: int = 30
) -> int:
"""
Clean up old or unused embeddings to save space.
Args:
collection_name: Collection to clean up
days_old: Delete documents older than this many days
Returns:
Number of documents deleted
"""
try:
collection = self._initialize_collection(name=collection_name)
# Get all documents
result = collection.get()
if not result or not result.get("metadatas"):
return 0
# Find old documents
import datetime
cutoff_time = time.time() - (days_old * 24 * 60 * 60)
old_ids = []
for i, metadata in enumerate(result["metadatas"]):
created_at = metadata.get("created_at", time.time())
if created_at < cutoff_time:
old_ids.append(result["ids"][i])
# Delete old documents
if old_ids:
collection.delete(ids=old_ids)
print(f"๐๏ธ Cleaned up {len(old_ids)} old documents from {collection_name}")
return len(old_ids)
except Exception as e:
print(f"โ ๏ธ Cleanup failed: {e}")
return 0
def advanced_rag_search(
self,
query: str,
collection_name: str = "learning_resources",
filters: Optional[Dict[str, Any]] = None,
top_k: int = 5,
use_cache: bool = True
) -> List[Document]:
"""
Advanced RAG pipeline with all optimizations.
Pipeline:
1. Semantic cache check (Redis)
2. Query rewriting (LLM)
3. Hybrid retrieval (BM25 + Semantic)
4. Reciprocal rank fusion
5. Reranking (Cohere/Cross-encoder)
6. Contextual compression (LLM)
Args:
query: Search query
collection_name: Collection to search
filters: Optional metadata filters
top_k: Final number of results
use_cache: Whether to use semantic caching
Returns:
Optimized, relevant documents
"""
print(f"\n๐ Advanced RAG Pipeline Started")
print(f"Query: '{query}'")
# Step 1: Check semantic cache
cached_result = None
if ENABLE_SEMANTIC_CACHE and use_cache:
try:
from src.utils.semantic_cache import SemanticCache
cache_client = SemanticCache(
redis_url=REDIS_URL,
redis_host=REDIS_HOST,
redis_port=REDIS_PORT,
redis_password=REDIS_PASSWORD,
redis_db=REDIS_DB,
ttl=SEMANTIC_CACHE_TTL,
similarity_threshold=SEMANTIC_CACHE_THRESHOLD
)
cached_result = cache_client.get(query)
if cached_result:
print("๐ฐ Cache hit! Returning cached results")
return cached_result
except Exception as e:
print(f"โ ๏ธ Semantic cache check failed: {e}")
# Step 2: Query rewriting
original_query = query
if QUERY_REWRITE_ENABLED:
try:
from src.ml.query_rewriter import QueryRewriter
rewriter = QueryRewriter(
model=QUERY_REWRITE_MODEL,
max_tokens=QUERY_REWRITE_MAX_TOKENS
)
query = rewriter.rewrite_if_needed(query)
except Exception as e:
print(f"โ ๏ธ Query rewriting failed: {e}")
# Step 3: Hybrid retrieval
try:
from src.data.bm25_retriever import BM25Retriever, reciprocal_rank_fusion
# Get all documents for BM25 indexing
try:
collection = self.client.get_collection(
name=collection_name,
embedding_function=self.embedding_function
)
all_docs_result = collection.get()
if all_docs_result and all_docs_result.get("documents"):
all_documents = [
Document(
page_content=doc,
metadata=all_docs_result["metadatas"][i] if all_docs_result.get("metadatas") else {}
)
for i, doc in enumerate(all_docs_result["documents"])
]
else:
all_documents = []
except Exception:
all_documents = []
# BM25 search
bm25_results = []
if all_documents:
bm25 = BM25Retriever(k1=BM25_K1, b=BM25_B)
bm25.index_documents(all_documents)
bm25_results = bm25.search(query, top_k=HYBRID_TOP_K)
# Semantic search
semantic_docs = self.search_documents(
query=query,
collection_name=collection_name,
filters=filters,
top_k=HYBRID_TOP_K
)
semantic_results = [
{
'document': doc,
'score': doc.metadata.get('relevance_score', 0.5),
'rank': i + 1
}
for i, doc in enumerate(semantic_docs)
]
# Fusion
if bm25_results and semantic_results:
fused_results = reciprocal_rank_fusion([bm25_results, semantic_results])
print(f"๐ Fused {len(bm25_results)} BM25 + {len(semantic_results)} semantic results")
elif bm25_results:
fused_results = bm25_results
else:
fused_results = semantic_results
# Extract documents from fused results
candidate_docs = [r['document'] for r in fused_results[:HYBRID_TOP_K]]
except Exception as e:
print(f"โ ๏ธ Hybrid retrieval failed: {e}. Falling back to semantic only.")
candidate_docs = self.search_documents(
query=query,
collection_name=collection_name,
filters=filters,
top_k=HYBRID_TOP_K
)
# Step 4: Reranking
if RERANK_ENABLED and candidate_docs:
try:
from src.ml.reranker import Reranker
reranker = Reranker(
use_local=USE_LOCAL_RERANKER,
cohere_api_key=COHERE_API_KEY,
cohere_model=COHERE_RERANK_MODEL,
local_model=LOCAL_RERANKER_MODEL
)
reranked_results = reranker.rerank(query, candidate_docs, top_k=RERANK_TOP_K)
candidate_docs = [r['document'] for r in reranked_results]
except Exception as e:
print(f"โ ๏ธ Reranking failed: {e}")
candidate_docs = candidate_docs[:RERANK_TOP_K]
else:
candidate_docs = candidate_docs[:top_k]
# Step 5: Contextual compression
final_docs = candidate_docs
if CONTEXTUAL_COMPRESSION_ENABLED and candidate_docs:
try:
from src.ml.context_compressor import ContextCompressor
compressor = ContextCompressor(
model=COMPRESSION_MODEL,
max_tokens=COMPRESSION_MAX_TOKENS
)
final_docs = compressor.compress(query, candidate_docs)
except Exception as e:
print(f"โ ๏ธ Compression failed: {e}")
# Cache the results
if ENABLE_SEMANTIC_CACHE and use_cache and final_docs:
try:
cache_client.set(original_query, final_docs)
except Exception as e:
print(f"โ ๏ธ Cache set failed: {e}")
print(f"โ
Advanced RAG Complete: {len(final_docs)} optimized documents\n")
return final_docs
def _initialize_collection(self, name: str, metadata: Optional[Dict[str, Any]] = None):
"""Safely get or create a Chroma collection, repairing schema if needed."""
try:
return self.client.get_or_create_collection(
name=name,
embedding_function=self.embedding_function,
metadata=metadata
)
except Exception as exc:
if self._try_repair_collection_schema(exc):
return self.client.get_or_create_collection(
name=name,
embedding_function=self.embedding_function,
metadata=metadata
)
raise
def _try_repair_collection_schema(self, error: Exception) -> bool:
"""Attempt to repair missing columns in any Chroma table."""
message = str(error)
missing_prefix = "no such column: "
if missing_prefix not in message:
return False
# Extract table name and column name from error message
# Format: "no such column: table_name.column_name"
try:
parts = message.split(missing_prefix, 1)[1].split()[0].strip('"`[]')
if '.' not in parts:
return False
table_name, column_name = parts.split('.', 1)
except (IndexError, ValueError):
return False
# Validate table and column names (only alphanumeric and underscore)
safe_table = ''.join(ch for ch in table_name if ch.isalnum() or ch == '_')
safe_column = ''.join(ch for ch in column_name if ch.isalnum() or ch == '_')
if safe_table != table_name or safe_column != column_name:
return False
db_file = Path(self.db_path) / "chroma.sqlite3"
if not db_file.exists():
return False
try:
with sqlite3.connect(str(db_file)) as conn:
conn.execute(f"ALTER TABLE {safe_table} ADD COLUMN {safe_column} TEXT")
conn.commit()
print(f"โ
Added missing '{safe_table}.{safe_column}' column to Chroma DB")
return True
except sqlite3.OperationalError as alter_err:
print(f"โ ๏ธ Failed to add column {safe_table}.{safe_column}: {alter_err}")
return False
def get_cached_path(self, key: str) -> Optional[Dict[str, Any]]:
"""Get a cached learning path from Redis."""
try:
import redis
# Use REDIS_URL if available and valid (for Upstash, Render, etc.)
if REDIS_URL and REDIS_URL.strip() and REDIS_URL.startswith(('redis://', 'rediss://', 'unix://')):
redis_client = redis.from_url(
REDIS_URL,
decode_responses=True,
ssl_cert_reqs=None
)
else:
# Build Redis connection params
redis_params = {
'host': REDIS_HOST,
'port': REDIS_PORT,
'db': REDIS_DB,
'decode_responses': True
}
# Only add password if it's not empty (strip whitespace)
password = (REDIS_PASSWORD or '').strip()
if password:
redis_params['password'] = password
redis_client = redis.Redis(**redis_params)
cached_data = redis_client.get(f"path_cache:{key}")
if cached_data:
return json.loads(cached_data)
return None
except Exception as e:
print(f"โ ๏ธ Path cache GET failed: {e}")
return None
def cache_path(self, key: str, path: Dict[str, Any], ttl: int = 3600):
"""Cache a learning path in Redis."""
try:
import redis
# Use REDIS_URL if available and valid (for Upstash, Render, etc.)
if REDIS_URL and REDIS_URL.strip() and REDIS_URL.startswith(('redis://', 'rediss://', 'unix://')):
redis_client = redis.from_url(
REDIS_URL,
decode_responses=True,
ssl_cert_reqs=None
)
else:
# Build Redis connection params
redis_params = {
'host': REDIS_HOST,
'port': REDIS_PORT,
'db': REDIS_DB,
'decode_responses': True
}
# Only add password if it's not empty (strip whitespace)
password = (REDIS_PASSWORD or '').strip()
if password:
redis_params['password'] = password
redis_client = redis.Redis(**redis_params)
redis_client.setex(f"path_cache:{key}", ttl, json.dumps(path))
print(f"๐พ Cached learning path: {key[:8]}... (TTL: {ttl}s)")
except Exception as e:
print(f"โ ๏ธ Path cache SET failed: {e}")
@classmethod
def shutdown(cls):
"""Gracefully shutdown the shared client connection."""
if cls._shared_client is not None:
print("๐ Shutting down ChromaDB connection...")
cls._shared_client = None
cls._shared_embedding_function = None
print("โ
Connection closed")
|