Spaces:
Sleeping
Sleeping
File size: 10,023 Bytes
66bd94a | 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 | """ChromaDB snapshot manager.
Every call to add_documents():
1. Detects which docs are new / changed / unchanged (SHA-256).
2. Creates a new ChromaDB collection ``kb_v{N}`` for the new snapshot.
3. Copies unchanged chunks from the previous snapshot (no re-embedding).
4. Embeds and indexes only the changed/new chunks.
5. Points ``latest`` at the new version in SQLite.
Rollback is a single SQLite write β no data is ever deleted.
"""
from __future__ import annotations
import os
os.environ.setdefault("ANONYMIZED_TELEMETRY", "False")
import chromadb
from chromadb.config import Settings
from config import PATHS
from versioning.change_detector import ChangeReport, detect_changes
from versioning.document_store import DocumentStore
_CHROMA_BATCH = 256
def _client() -> chromadb.PersistentClient:
PATHS["chroma_dir"].mkdir(parents=True, exist_ok=True)
return chromadb.PersistentClient(
path=str(PATHS["chroma_dir"]),
settings=Settings(anonymized_telemetry=False),
)
def _collection_name(version: int) -> str:
return f"kb_v{version}"
class RAGVersionManager:
"""Versioned knowledge-base layer on top of ChromaDB."""
def __init__(self) -> None:
self.store = DocumentStore()
# ββ public API βββββββββββββββββββββββββββββββββββββββββββββββββββ
def add_documents(
self,
chunks_by_doc: dict,
batch_name: str = "",
reason: str = "manual ingest",
) -> dict:
"""
Index a batch of documents, only re-embedding what changed.
Parameters
----------
chunks_by_doc:
``{doc_id: {"chunks": [Chunk, ...], "source_path": str, "title": str}}``
batch_name:
Human-readable label for this batch (e.g. ``"initial_14_papers"``).
reason:
Short description of why this version was created.
Returns
-------
dict with version, new, changed, unchanged counts.
"""
from ingestion.embedder import embed_texts
client = _client()
# ββ 1. change detection ββββββββββββββββββββββββββββββββββββββ
doc_meta = [
{"doc_id": did, "source_path": info["source_path"], "title": info["title"]}
for did, info in chunks_by_doc.items()
]
report: ChangeReport = detect_changes(doc_meta, self.store)
if not report.has_changes:
print(f" No changes detected ({report.summary()}) β index unchanged.")
return {
"version": self.store.get_latest(),
"new": 0,
"changed": 0,
"unchanged": len(report.unchanged_docs),
}
current_version = self.store.get_latest() or 0
new_version = self.store.bump_version()
new_coll_name = _collection_name(new_version)
print(f" Change summary: {report.summary()}")
print(f" Creating snapshot {new_coll_name}β¦")
new_coll = client.get_or_create_collection(
name=new_coll_name,
metadata={"hnsw:space": "cosine"},
)
# ββ 2. copy unchanged chunks from previous snapshot ββββββββββ
if current_version > 0 and report.unchanged_docs:
prev_name = _collection_name(current_version)
try:
prev_coll = client.get_collection(prev_name)
unchanged_ids = {d["doc_id"] for d in report.unchanged_docs}
copied = self._copy_chunks(prev_coll, new_coll, unchanged_ids)
print(f" Copied {copied} chunks from {prev_name} (unchanged docs).")
except Exception as exc:
print(f" Warning: could not copy from v{current_version}: {exc}")
# ββ 3. embed + index new/changed chunks ββββββββββββββββββββββ
to_index_ids = {d["doc_id"] for d in report.new_docs + report.changed_docs}
new_chunks = [
c
for did, info in chunks_by_doc.items()
if did in to_index_ids
for c in info["chunks"]
]
if new_chunks:
ids = [c.chunk_id for c in new_chunks]
texts = [c.text for c in new_chunks]
metas = [
{
"doc_id": c.doc_id,
"source_path": c.source_path,
"title": c.title,
"page_start": c.page_start,
"page_end": c.page_end,
}
for c in new_chunks
]
print(f" Embedding {len(new_chunks)} chunks for {len(to_index_ids)} doc(s)β¦")
embeddings = embed_texts(texts)
for i in range(0, len(ids), _CHROMA_BATCH):
new_coll.upsert(
ids=ids[i : i + _CHROMA_BATCH],
documents=texts[i : i + _CHROMA_BATCH],
metadatas=metas[i : i + _CHROMA_BATCH],
embeddings=embeddings[i : i + _CHROMA_BATCH],
)
# ββ 4. persist metadata ββββββββββββββββββββββββββββββββββββββ
for d in report.new_docs:
self.store.add_doc(d["doc_id"], new_version, d["checksum"],
"active", d["source_path"], d["title"])
for d in report.changed_docs:
self.store.add_doc(d["doc_id"], new_version, d["checksum"],
"active", d["source_path"], d["title"])
for d in report.unchanged_docs:
self.store.add_doc(d["doc_id"], new_version, d["checksum"],
"active", d["source_path"], d["title"])
self.store.log_version(
version=new_version,
batch_name=batch_name,
docs_added=len(report.new_docs),
docs_changed=len(report.changed_docs),
docs_unchanged=len(report.unchanged_docs),
reason=reason,
collection_name=new_coll_name,
)
self.store.set_latest(new_version)
print(
f" β Created {new_coll_name} β "
f"{len(report.new_docs)} new, {len(report.changed_docs)} changed, "
f"{len(report.unchanged_docs)} unchanged"
)
return {
"version": new_version,
"new": len(report.new_docs),
"changed": len(report.changed_docs),
"unchanged": len(report.unchanged_docs),
"collection": new_coll_name,
}
def rollback(self, to_version: int) -> None:
"""Point 'latest' at a previous snapshot (metadata-only, instant)."""
known = {v["version"] for v in self.store.get_history()}
if to_version not in known:
raise ValueError(f"Version {to_version} not found. Known: {sorted(known)}")
self.store.set_latest(to_version)
print(f" Rolled back to v{to_version}")
def list_versions(self) -> list[dict]:
return self.store.get_history()
def get_collection(self, version: str | int = "latest") -> chromadb.Collection:
client = _client()
v = self.store.get_latest() if version == "latest" else int(version)
if v is None:
raise RuntimeError("No versioned snapshots exist yet. Run ingest first.")
return client.get_collection(_collection_name(v))
def collection_exists(self, version: str | int = "latest") -> bool:
try:
self.get_collection(version)
return True
except Exception:
return False
def query(
self,
text: str,
version: str | int = "latest",
k: int = 12,
) -> list:
"""Dense search against a specific snapshot. Returns list[Hit]."""
from ingestion.embedder import embed_query
from retrieval.dense import Hit
coll = self.get_collection(version)
qv = embed_query(text)
res = coll.query(
query_embeddings=[qv],
n_results=min(k, coll.count()),
include=["documents", "metadatas", "distances"],
)
hits = []
for r, (cid, doc, meta, dist) in enumerate(
zip(res["ids"][0], res["documents"][0],
res["metadatas"][0], res["distances"][0])
):
hits.append(
Hit(
chunk_id=cid,
text=doc,
metadata=dict(meta),
score=max(0.0, 1.0 - float(dist)),
rank=r,
)
)
return hits
# ββ internal helpers βββββββββββββββββββββββββββββββββββββββββββββ
def _copy_chunks(
self,
src: chromadb.Collection,
dst: chromadb.Collection,
doc_ids: set[str],
) -> int:
"""Copy all chunks whose doc_id is in *doc_ids* from src β dst."""
if not doc_ids:
return 0
where = (
{"doc_id": {"$in": list(doc_ids)}}
if len(doc_ids) > 1
else {"doc_id": list(doc_ids)[0]}
)
res = src.get(where=where, include=["documents", "metadatas", "embeddings"])
if not res["ids"]:
return 0
ids, docs, metas, embs = (
res["ids"], res["documents"], res["metadatas"], res["embeddings"]
)
for i in range(0, len(ids), _CHROMA_BATCH):
dst.upsert(
ids=ids[i : i + _CHROMA_BATCH],
documents=docs[i : i + _CHROMA_BATCH],
metadatas=metas[i : i + _CHROMA_BATCH],
embeddings=embs[i : i + _CHROMA_BATCH],
)
return len(ids)
|