Odysseus v1.0
This commit is contained in:
496
src/rag_vector.py
Normal file
496
src/rag_vector.py
Normal file
@@ -0,0 +1,496 @@
|
||||
"""
|
||||
rag_vector.py
|
||||
|
||||
Vector-based RAG using ChromaDB for storage and API-based embeddings.
|
||||
Features: persistent storage, hybrid search (vector + keyword), sentence-aware chunking,
|
||||
configurable embedding endpoint via EMBEDDING_URL env var.
|
||||
"""
|
||||
|
||||
import os
|
||||
import re
|
||||
import logging
|
||||
import numpy as np
|
||||
from typing import List, Dict, Any, Optional, Set
|
||||
from pathlib import Path
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
DEFAULT_FILE_EXTENSIONS: Set[str] = {
|
||||
'.txt', '.md', '.py', '.json', '.yaml', '.yml',
|
||||
'.csv', '.html', '.css', '.js', '.pdf'
|
||||
}
|
||||
|
||||
VECTOR_WEIGHT = 0.7
|
||||
KEYWORD_WEIGHT = 0.3
|
||||
|
||||
COLLECTION_NAME = "odysseus_rag"
|
||||
|
||||
|
||||
class VectorRAG:
|
||||
"""RAG system using ChromaDB vector storage with hybrid search."""
|
||||
|
||||
def __init__(self, persist_directory: str = "data/chroma"):
|
||||
self.persist_directory = persist_directory
|
||||
self._collection = None
|
||||
self._model = None
|
||||
self._healthy = False
|
||||
|
||||
Path(self.persist_directory).mkdir(parents=True, exist_ok=True)
|
||||
self._initialize_system()
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Initialization
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def _initialize_system(self) -> bool:
|
||||
try:
|
||||
from src.chroma_client import get_chroma_client
|
||||
from src.embeddings import get_embedding_client
|
||||
|
||||
self._model = get_embedding_client()
|
||||
if self._model is None:
|
||||
raise RuntimeError("No embedding backend available")
|
||||
logger.info(f"Embedding: {self._model.url} model={self._model.model}")
|
||||
|
||||
client = get_chroma_client()
|
||||
self._collection = client.get_or_create_collection(
|
||||
name=COLLECTION_NAME,
|
||||
metadata={"hnsw:space": "cosine"},
|
||||
)
|
||||
|
||||
count = self._collection.count()
|
||||
logger.info(f"VectorRAG ready ({count} docs)")
|
||||
self._healthy = True
|
||||
return True
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"VectorRAG init failed: {e}")
|
||||
self._healthy = False
|
||||
return False
|
||||
|
||||
def _embed(self, texts: List[str]) -> List[List[float]]:
|
||||
vecs = self._model.encode(texts, normalize_embeddings=True)
|
||||
return np.array(vecs, dtype=np.float32).tolist()
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Properties
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
@property
|
||||
def healthy(self) -> bool:
|
||||
return self._healthy and self._collection is not None
|
||||
|
||||
@property
|
||||
def collection(self):
|
||||
"""Expose the ChromaDB collection for direct access by personal_routes etc."""
|
||||
return self._collection
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Document operations
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def add_document(self, text: str, metadata: Dict[str, Any]) -> bool:
|
||||
if not self.healthy:
|
||||
logger.error("Collection not initialized")
|
||||
return False
|
||||
if not text or not isinstance(text, str):
|
||||
return False
|
||||
if not metadata or not isinstance(metadata, dict):
|
||||
return False
|
||||
|
||||
try:
|
||||
doc_id = f"doc_{hash(text) % 10**16}"
|
||||
# Check if already exists
|
||||
existing = self._collection.get(ids=[doc_id])
|
||||
if existing["ids"]:
|
||||
return True # already exists
|
||||
embeddings = self._embed([text])
|
||||
self._collection.add(
|
||||
ids=[doc_id],
|
||||
embeddings=embeddings,
|
||||
documents=[text],
|
||||
metadatas=[metadata],
|
||||
)
|
||||
return True
|
||||
except Exception as e:
|
||||
logger.error(f"add_document failed: {e}")
|
||||
return False
|
||||
|
||||
def add_documents_batch(self, docs: List[tuple]) -> Dict[str, Any]:
|
||||
if not self.healthy:
|
||||
return {"success": False, "message": "Collection not initialized"}
|
||||
if not docs:
|
||||
return {"success": False, "message": "Empty document list"}
|
||||
|
||||
valid = [
|
||||
(t, m) for t, m in docs
|
||||
if t and isinstance(t, str) and m and isinstance(m, dict)
|
||||
]
|
||||
if not valid:
|
||||
return {"success": False, "message": "No valid documents"}
|
||||
|
||||
try:
|
||||
# Get existing IDs to avoid duplicates
|
||||
new_texts = []
|
||||
new_metas = []
|
||||
new_ids = []
|
||||
for t, m in valid:
|
||||
doc_id = f"doc_{hash(t) % 10**16}"
|
||||
existing = self._collection.get(ids=[doc_id])
|
||||
if not existing["ids"]:
|
||||
new_texts.append(t)
|
||||
new_metas.append(m)
|
||||
new_ids.append(doc_id)
|
||||
|
||||
if new_texts:
|
||||
# Batch in chunks of 100
|
||||
for i in range(0, len(new_texts), 100):
|
||||
batch_texts = new_texts[i:i + 100]
|
||||
batch_ids = new_ids[i:i + 100]
|
||||
batch_metas = new_metas[i:i + 100]
|
||||
embeddings = self._embed(batch_texts)
|
||||
self._collection.add(
|
||||
ids=batch_ids,
|
||||
embeddings=embeddings,
|
||||
documents=batch_texts,
|
||||
metadatas=batch_metas,
|
||||
)
|
||||
|
||||
return {
|
||||
"success": True,
|
||||
"added_count": len(new_texts),
|
||||
"total_count": len(docs),
|
||||
"failed_count": len(docs) - len(valid),
|
||||
}
|
||||
except Exception as e:
|
||||
logger.error(f"add_documents_batch failed: {e}")
|
||||
return {"success": False, "message": str(e)}
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Search — hybrid: vector similarity + keyword overlap
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def search(self, query: str, k: int = 5, owner: Optional[str] = None) -> List[Dict[str, Any]]:
|
||||
if not self.healthy:
|
||||
return []
|
||||
if not query or not isinstance(query, str):
|
||||
return []
|
||||
if self._collection.count() == 0:
|
||||
return []
|
||||
|
||||
try:
|
||||
# Fetch extra candidates when owner-filtering
|
||||
fetch_k = min(k * 3, max(k, 20), self._collection.count())
|
||||
if owner:
|
||||
fetch_k = min(fetch_k * 2, self._collection.count())
|
||||
|
||||
query_embeddings = self._embed([query])
|
||||
|
||||
# Use ChromaDB where filter for owner if specified
|
||||
where_filter = {"owner": owner} if owner else None
|
||||
|
||||
results = self._collection.query(
|
||||
query_embeddings=query_embeddings,
|
||||
n_results=fetch_k,
|
||||
where=where_filter,
|
||||
include=["documents", "metadatas", "distances"],
|
||||
)
|
||||
|
||||
query_words = set(query.lower().split())
|
||||
candidates = []
|
||||
|
||||
for idx in range(len(results["ids"][0])):
|
||||
doc_id = results["ids"][0][idx]
|
||||
distance = results["distances"][0][idx]
|
||||
doc_text = results["documents"][0][idx]
|
||||
meta = results["metadatas"][0][idx]
|
||||
|
||||
# ChromaDB cosine distance = 1 - cosine_similarity
|
||||
vector_sim = 1.0 - distance
|
||||
|
||||
# Keyword overlap score
|
||||
doc_words = set(doc_text.lower().split())
|
||||
overlap = len(query_words & doc_words)
|
||||
keyword_score = overlap / len(query_words) if query_words else 0.0
|
||||
|
||||
hybrid_score = (VECTOR_WEIGHT * vector_sim) + (KEYWORD_WEIGHT * keyword_score)
|
||||
|
||||
candidates.append({
|
||||
"id": doc_id,
|
||||
"document": doc_text,
|
||||
"metadata": meta,
|
||||
"distance": round(distance, 4),
|
||||
"similarity": round(hybrid_score, 4),
|
||||
"vector_similarity": round(vector_sim, 4),
|
||||
"keyword_score": round(keyword_score, 4),
|
||||
})
|
||||
|
||||
candidates.sort(key=lambda c: c["similarity"], reverse=True)
|
||||
top = candidates[:k]
|
||||
logger.info(f"Hybrid search for '{query[:60]}': {len(top)} results")
|
||||
return top
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"search failed: {e}")
|
||||
return self._keyword_search_fallback(query, k, owner=owner)
|
||||
|
||||
def _keyword_search_fallback(self, query: str, k: int = 5, owner: Optional[str] = None) -> List[Dict[str, Any]]:
|
||||
try:
|
||||
if self._collection.count() == 0:
|
||||
return []
|
||||
|
||||
# Fetch all documents for keyword search fallback
|
||||
all_docs = self._collection.get(include=["documents", "metadatas"])
|
||||
if not all_docs["ids"]:
|
||||
return []
|
||||
|
||||
query_words = query.lower().split()
|
||||
scored = []
|
||||
for i, doc in enumerate(all_docs["documents"]):
|
||||
meta = all_docs["metadatas"][i]
|
||||
if owner:
|
||||
doc_owner = meta.get("owner")
|
||||
if doc_owner and doc_owner != owner:
|
||||
continue
|
||||
doc_lower = doc.lower()
|
||||
score = sum(1 for w in query_words if w in doc_lower)
|
||||
if score > 0:
|
||||
scored.append({
|
||||
"id": all_docs["ids"][i],
|
||||
"document": doc,
|
||||
"metadata": meta,
|
||||
"distance": 0,
|
||||
"similarity": score,
|
||||
"search_type": "keyword_fallback",
|
||||
})
|
||||
|
||||
scored.sort(key=lambda x: x["similarity"], reverse=True)
|
||||
return scored[:k]
|
||||
except Exception as e:
|
||||
logger.error(f"keyword fallback failed: {e}")
|
||||
return []
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Index management
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def rebuild_index(self) -> bool:
|
||||
try:
|
||||
from src.chroma_client import get_chroma_client
|
||||
client = get_chroma_client()
|
||||
try:
|
||||
client.delete_collection(COLLECTION_NAME)
|
||||
except Exception:
|
||||
pass
|
||||
self._collection = client.get_or_create_collection(
|
||||
name=COLLECTION_NAME,
|
||||
metadata={"hnsw:space": "cosine"},
|
||||
)
|
||||
self._healthy = True
|
||||
return True
|
||||
except Exception as e:
|
||||
logger.error(f"rebuild_index failed: {e}")
|
||||
self._healthy = False
|
||||
return False
|
||||
|
||||
def get_stats(self) -> Dict[str, Any]:
|
||||
if not self.healthy:
|
||||
return {"error": "Collection not initialized"}
|
||||
try:
|
||||
return {
|
||||
"document_count": self._collection.count(),
|
||||
"embedding_model": f"{self._model.model} @ {self._model.url}" if self._model else "N/A",
|
||||
"persist_directory": self.persist_directory,
|
||||
"collection_name": COLLECTION_NAME,
|
||||
"healthy": True,
|
||||
}
|
||||
except Exception as e:
|
||||
logger.error(f"get_stats failed: {e}")
|
||||
return {"error": str(e), "healthy": False}
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Directory indexing
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def index_personal_documents(
|
||||
self, directory: str, file_extensions: Optional[set] = None, owner: Optional[str] = None
|
||||
) -> Dict[str, Any]:
|
||||
if file_extensions is None:
|
||||
file_extensions = DEFAULT_FILE_EXTENSIONS
|
||||
|
||||
indexed = 0
|
||||
failed = 0
|
||||
|
||||
try:
|
||||
for root, _, files in os.walk(directory):
|
||||
for fname in files:
|
||||
fpath = os.path.join(root, fname)
|
||||
ext = Path(fname).suffix.lower()
|
||||
if ext not in file_extensions:
|
||||
continue
|
||||
|
||||
try:
|
||||
if ext == '.pdf':
|
||||
from src.personal_docs import extract_pdf_text
|
||||
content = extract_pdf_text(fpath)
|
||||
else:
|
||||
with open(fpath, 'r', encoding='utf-8') as f:
|
||||
content = f.read()
|
||||
|
||||
if not content or not content.strip():
|
||||
continue
|
||||
|
||||
meta = {
|
||||
'source': fpath,
|
||||
'filename': fname,
|
||||
'directory': root,
|
||||
'type': ext,
|
||||
}
|
||||
if owner:
|
||||
meta['owner'] = owner
|
||||
|
||||
for i, chunk in enumerate(self._split_into_chunks(content)):
|
||||
if self.add_document(chunk, {**meta, 'chunk_id': i}):
|
||||
indexed += 1
|
||||
else:
|
||||
failed += 1
|
||||
except Exception as e:
|
||||
logger.error(f"index {fpath}: {e}")
|
||||
failed += 1
|
||||
|
||||
return {
|
||||
'success': True,
|
||||
'indexed_count': indexed,
|
||||
'failed_count': failed,
|
||||
'message': f'Indexed {indexed} chunks from {directory}',
|
||||
}
|
||||
except Exception as e:
|
||||
logger.error(f"index_personal_documents {directory}: {e}")
|
||||
return {'success': False, 'indexed_count': indexed, 'failed_count': failed, 'message': str(e)}
|
||||
|
||||
def remove_directory(self, directory: str) -> Dict[str, Any]:
|
||||
"""Remove all chunks from a directory. O(1) per chunk via ChromaDB."""
|
||||
if not self.healthy:
|
||||
return {"success": False, "message": "Collection not initialized"}
|
||||
try:
|
||||
# Use ChromaDB where filter to find all docs from this directory
|
||||
results = self._collection.get(
|
||||
where={"source": {"$contains": directory}} if "/" in directory else {"directory": directory},
|
||||
include=["metadatas"],
|
||||
)
|
||||
if not results['ids']:
|
||||
return {"success": True, "removed_count": 0, "message": "No docs found"}
|
||||
|
||||
self._collection.delete(ids=results['ids'])
|
||||
n = len(results['ids'])
|
||||
logger.info(f"Removed {n} chunks from {directory}")
|
||||
return {"success": True, "removed_count": n, "message": f"Removed {n} chunks"}
|
||||
except Exception as e:
|
||||
logger.error(f"remove_directory {directory}: {e}")
|
||||
return {"success": False, "message": str(e)}
|
||||
|
||||
def reindex_directory(
|
||||
self, directory: str, file_extensions: Optional[set] = None
|
||||
) -> Dict[str, Any]:
|
||||
remove_result = self.remove_directory(directory)
|
||||
if not remove_result.get("success"):
|
||||
return remove_result
|
||||
index_result = self.index_personal_documents(directory, file_extensions)
|
||||
return {
|
||||
"success": index_result.get("success", False),
|
||||
"message": (
|
||||
f"Re-index for {directory}: removed {remove_result.get('removed_count', 0)}, "
|
||||
f"{index_result.get('message', '')}"
|
||||
),
|
||||
"removed_count": remove_result.get("removed_count", 0),
|
||||
"indexed_count": index_result.get("indexed_count", 0),
|
||||
"failed_count": index_result.get("failed_count", 0),
|
||||
}
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Sentence-boundary-aware chunking
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def _split_into_chunks(
|
||||
self, text: str, chunk_size: int = 1000, overlap: int = 200
|
||||
) -> List[str]:
|
||||
if not text:
|
||||
return []
|
||||
if len(text) <= chunk_size:
|
||||
return [text]
|
||||
|
||||
# Split into sentences first
|
||||
sentences = re.split(r'(?<=[.!?])\s+|\n{2,}', text)
|
||||
sentences = [s.strip() for s in sentences if s.strip()]
|
||||
|
||||
chunks: List[str] = []
|
||||
current_chunk: List[str] = []
|
||||
current_len = 0
|
||||
|
||||
for sentence in sentences:
|
||||
sent_len = len(sentence)
|
||||
|
||||
# If a single sentence exceeds chunk_size, split it by character
|
||||
if sent_len > chunk_size:
|
||||
# Flush current chunk first
|
||||
if current_chunk:
|
||||
chunks.append(' '.join(current_chunk))
|
||||
current_chunk = []
|
||||
current_len = 0
|
||||
|
||||
# Hard-split the long sentence
|
||||
for start in range(0, sent_len, chunk_size - overlap):
|
||||
chunks.append(sentence[start:start + chunk_size])
|
||||
continue
|
||||
|
||||
if current_len + sent_len + 1 > chunk_size and current_chunk:
|
||||
chunks.append(' '.join(current_chunk))
|
||||
# Keep last few sentences for overlap
|
||||
overlap_sentences: List[str] = []
|
||||
overlap_len = 0
|
||||
for s in reversed(current_chunk):
|
||||
if overlap_len + len(s) > overlap:
|
||||
break
|
||||
overlap_sentences.insert(0, s)
|
||||
overlap_len += len(s) + 1
|
||||
current_chunk = overlap_sentences
|
||||
current_len = sum(len(s) for s in current_chunk) + max(0, len(current_chunk) - 1)
|
||||
|
||||
current_chunk.append(sentence)
|
||||
current_len += sent_len + (1 if current_len > 0 else 0)
|
||||
|
||||
if current_chunk:
|
||||
chunks.append(' '.join(current_chunk))
|
||||
|
||||
return chunks if chunks else [text]
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Delete by metadata
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def delete_by_source(self, source: str) -> int:
|
||||
"""Remove all chunks whose metadata['source'] matches *source*.
|
||||
Returns the number of removed chunks."""
|
||||
if not self.healthy:
|
||||
return 0
|
||||
try:
|
||||
results = self._collection.get(
|
||||
where={"source": source},
|
||||
include=[],
|
||||
)
|
||||
ids = results.get("ids", [])
|
||||
if not ids:
|
||||
return 0
|
||||
self._collection.delete(ids=ids)
|
||||
logger.info(f"Deleted {len(ids)} chunks for source={source}")
|
||||
return len(ids)
|
||||
except Exception as e:
|
||||
logger.error(f"delete_by_source failed: {e}")
|
||||
return 0
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Convenience
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
def retrieve(self, query: str, k: int = 5) -> List[str]:
|
||||
return [r['document'] for r in self.search(query, k)]
|
||||
Reference in New Issue
Block a user