File size: 15,275 Bytes
c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf 8a58104 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b 8a23fcf c32102b ef02f17 8a23fcf ef02f17 c32102b 8a23fcf c32102b 8a23fcf | 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 | """
Rhodawk AI β Embedding-Based Memory Engine v3
==============================================
Dual-backend semantic retrieval:
- Default (v2 SQLite): sentence-transformers all-MiniLM-L6-v2 + cosine similarity
- Enhanced (v3 Qdrant+CodeBERT): microsoft/codebert-base embeddings stored in
an in-process Qdrant vector database for ANN retrieval with HNSW indexing
CodeBERT understands programming language syntax at the token level, giving
significantly better semantic similarity for code-related failure traces than
generic sentence-transformer models.
Backend selection:
RHODAWK_EMBEDDING_BACKEND=sqlite # default β no extra deps, works everywhere
RHODAWK_EMBEDDING_BACKEND=qdrant # requires: qdrant-client, transformers, torch
The public API (retrieve_similar_fixes_v2, rebuild_embedding_index,
record_fix_outcome) is unchanged β all callers continue to work.
"""
import hashlib
import os
import re
import sqlite3
import threading
from typing import Optional
import numpy as np
from training_store import DB_PATH
EMBEDDING_DB_PATH = os.getenv("RHODAWK_EMBEDDING_DB", "/data/embedding_memory.db")
MODEL_NAME = os.getenv("RHODAWK_EMBEDDING_MODEL", "all-MiniLM-L6-v2")
CODEBERT_MODEL = os.getenv("RHODAWK_CODEBERT_MODEL", "microsoft/codebert-base")
BACKEND = os.getenv("RHODAWK_EMBEDDING_BACKEND", "sqlite").lower()
QDRANT_COLLECTION = "rhodawk_fixes"
QDRANT_DIM = 768 # codebert-base hidden size
_model_lock = threading.Lock()
_MINILM_MODEL = None
_CODEBERT_TOKENIZER = None
_CODEBERT_MODEL = None
_QDRANT_CLIENT = None
_qdrant_lock = threading.Lock()
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MiniLM backend (v2, default)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_minilm():
global _MINILM_MODEL
with _model_lock:
if _MINILM_MODEL is None:
from sentence_transformers import SentenceTransformer
_MINILM_MODEL = SentenceTransformer(MODEL_NAME)
return _MINILM_MODEL
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CodeBERT backend (v3, optional)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_codebert():
global _CODEBERT_TOKENIZER, _CODEBERT_MODEL
with _model_lock:
if _CODEBERT_MODEL is None:
from transformers import AutoTokenizer, AutoModel
_CODEBERT_TOKENIZER = AutoTokenizer.from_pretrained(CODEBERT_MODEL)
_CODEBERT_MODEL = AutoModel.from_pretrained(CODEBERT_MODEL)
_CODEBERT_MODEL.eval()
return _CODEBERT_TOKENIZER, _CODEBERT_MODEL
def _embed_codebert(text: str) -> np.ndarray:
import torch
tokenizer, model = _get_codebert()
inputs = tokenizer(
text[:512],
return_tensors="pt",
truncation=True,
padding=True,
max_length=512,
)
with torch.no_grad():
outputs = model(**inputs)
# Mean-pool over token dimension
vec = outputs.last_hidden_state.mean(dim=1).squeeze().numpy()
norm = np.linalg.norm(vec)
return (vec / norm) if norm > 0 else vec
def _get_qdrant():
global _QDRANT_CLIENT
with _qdrant_lock:
if _QDRANT_CLIENT is None:
from qdrant_client import QdrantClient
from qdrant_client.models import Distance, VectorParams
client = QdrantClient(path="/data/qdrant_store")
existing = [c.name for c in client.get_collections().collections]
if QDRANT_COLLECTION not in existing:
client.create_collection(
collection_name=QDRANT_COLLECTION,
vectors_config=VectorParams(size=QDRANT_DIM, distance=Distance.COSINE),
)
_QDRANT_CLIENT = client
return _QDRANT_CLIENT
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Shared utilities
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _normalize_failure(failure_output: str) -> str:
text = re.sub(r'File "[^"]+", line \d+', "File <path>, line <n>", failure_output)
text = re.sub(r"/[\w./-]+", "<path>", text)
text = re.sub(r"\b\d+\b", "<num>", text)
return text[:4000]
def embed_failure(failure_output: str) -> np.ndarray:
"""Embed a failure string using the configured backend model."""
normalized = _normalize_failure(failure_output)
if BACKEND == "qdrant":
try:
return _embed_codebert(normalized)
except Exception:
pass
return _get_minilm().encode(normalized, normalize_embeddings=True)
def pre_warm_model() -> bool:
"""Pre-warm the embedding model at startup. Returns True on success."""
try:
embed_failure("test warmup")
return True
except Exception:
return False
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SQLite backend (v2)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _ensure_schema() -> None:
os.makedirs(os.path.dirname(EMBEDDING_DB_PATH), exist_ok=True)
with sqlite3.connect(EMBEDDING_DB_PATH) as conn:
conn.execute("""
CREATE TABLE IF NOT EXISTS fix_embeddings (
failure_signature TEXT PRIMARY KEY,
embedding BLOB NOT NULL,
fix_diff TEXT NOT NULL,
success_rate TEXT NOT NULL,
sample_failure TEXT NOT NULL,
updated_at TEXT DEFAULT CURRENT_TIMESTAMP
)
""")
def _rebuild_sqlite(limit: int) -> int:
_ensure_schema()
with sqlite3.connect(DB_PATH) as source:
source.row_factory = sqlite3.Row
rows = source.execute("""
SELECT fp.failure_signature, fp.fix_diff, fp.success_count, fp.attempt_count,
fa.failure_output as sample_failure
FROM fix_patterns fp
LEFT JOIN fix_attempts fa ON fa.failure_signature = fp.failure_signature
AND fa.success_signal = 1
WHERE fp.success_count > 0
ORDER BY fp.success_count DESC
LIMIT ?
""", (limit,)).fetchall()
with sqlite3.connect(EMBEDDING_DB_PATH) as target:
for row in rows:
sample = row["sample_failure"] or row["failure_signature"]
emb = embed_failure(sample).astype(np.float32).tobytes()
attempts = row["attempt_count"] or 1
success_rate = f"{(row['success_count'] / attempts * 100):.0f}%"
target.execute("""
INSERT INTO fix_embeddings
(failure_signature, embedding, fix_diff, success_rate, sample_failure)
VALUES (?, ?, ?, ?, ?)
ON CONFLICT(failure_signature) DO UPDATE SET
embedding=excluded.embedding,
fix_diff=excluded.fix_diff,
success_rate=excluded.success_rate,
sample_failure=excluded.sample_failure,
updated_at=CURRENT_TIMESTAMP
""", (row["failure_signature"], emb, row["fix_diff"], success_rate, sample))
return len(rows)
def _retrieve_sqlite(failure_output: str, top_k: int, min_similarity: float) -> list[dict]:
_ensure_schema()
with sqlite3.connect(EMBEDDING_DB_PATH) as conn:
count = conn.execute("SELECT COUNT(*) FROM fix_embeddings").fetchone()[0]
if count == 0:
try:
rebuilt = _rebuild_sqlite(1000)
if rebuilt == 0:
return []
except Exception:
return []
query_vec = embed_failure(failure_output).astype(np.float32)
with sqlite3.connect(EMBEDDING_DB_PATH) as conn:
conn.row_factory = sqlite3.Row
rows = conn.execute(
"SELECT failure_signature, embedding, fix_diff, success_rate FROM fix_embeddings"
).fetchall()
results = []
for row in rows:
vec = np.frombuffer(row["embedding"], dtype=np.float32)
if vec.size != query_vec.size:
continue
sim = float(np.dot(query_vec, vec))
if sim >= min_similarity:
results.append({
"failure_signature": row["failure_signature"],
"fix_diff": row["fix_diff"],
"success_rate": row["success_rate"],
"similarity": round(sim, 3),
})
results.sort(key=lambda item: item["similarity"], reverse=True)
return results[:top_k]
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Qdrant backend (v3)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _point_id(failure_signature: str) -> int:
"""Stable integer ID from signature hash β Qdrant requires int or UUID."""
h = hashlib.md5(failure_signature.encode()).hexdigest()
return int(h[:16], 16) % (2**63)
def _rebuild_qdrant(limit: int) -> int:
client = _get_qdrant()
from qdrant_client.models import PointStruct
with sqlite3.connect(DB_PATH) as source:
source.row_factory = sqlite3.Row
rows = source.execute("""
SELECT fp.failure_signature, fp.fix_diff, fp.success_count, fp.attempt_count,
fa.failure_output as sample_failure
FROM fix_patterns fp
LEFT JOIN fix_attempts fa ON fa.failure_signature = fp.failure_signature
AND fa.success_signal = 1
WHERE fp.success_count > 0
ORDER BY fp.success_count DESC
LIMIT ?
""", (limit,)).fetchall()
points = []
for row in rows:
sample = row["sample_failure"] or row["failure_signature"]
try:
vec = _embed_codebert(sample).tolist()
except Exception:
continue
attempts = row["attempt_count"] or 1
success_rate = f"{(row['success_count'] / attempts * 100):.0f}%"
points.append(PointStruct(
id=_point_id(row["failure_signature"]),
vector=vec,
payload={
"failure_signature": row["failure_signature"],
"fix_diff": row["fix_diff"],
"success_rate": success_rate,
}
))
if len(points) >= 64:
client.upsert(collection_name=QDRANT_COLLECTION, points=points)
points = []
if points:
client.upsert(collection_name=QDRANT_COLLECTION, points=points)
return len(rows)
def _retrieve_qdrant(failure_output: str, top_k: int, min_similarity: float) -> list[dict]:
try:
client = _get_qdrant()
vec = _embed_codebert(_normalize_failure(failure_output)).tolist()
hits = client.search(
collection_name=QDRANT_COLLECTION,
query_vector=vec,
limit=top_k,
score_threshold=min_similarity,
)
return [
{
"failure_signature": h.payload.get("failure_signature", ""),
"fix_diff": h.payload.get("fix_diff", ""),
"success_rate": h.payload.get("success_rate", "?"),
"similarity": round(h.score, 3),
}
for h in hits
]
except Exception:
return []
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Public API (unchanged signature)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def rebuild_embedding_index(limit: int = 1000) -> int:
"""
Rebuild the embedding index from training_store.
Uses Qdrant+CodeBERT if RHODAWK_EMBEDDING_BACKEND=qdrant, otherwise SQLite.
Returns number of records indexed.
"""
if BACKEND == "qdrant":
try:
return _rebuild_qdrant(limit)
except Exception:
pass
return _rebuild_sqlite(limit)
def retrieve_similar_fixes_v2(
failure_output: str,
top_k: int = 5,
min_similarity: float = 0.55,
) -> list[dict]:
"""
Retrieve semantically similar past fixes for a given failure output.
Returns list of dicts with keys:
failure_signature, fix_diff, success_rate, similarity
"""
if BACKEND == "qdrant":
try:
results = _retrieve_qdrant(failure_output, top_k, min_similarity)
if results is not None:
return results
except Exception:
pass
return _retrieve_sqlite(failure_output, top_k, min_similarity)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Alias used by app.py / memory_engine.py
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def record_fix_outcome(failure_output: str, test_path: str, diff_text: str, success: bool) -> None:
"""
Persist a fix outcome to the training store and update the embedding index.
This is the thin wrapper used by app.py's process_failing_test.
"""
try:
from training_store import record_fix_attempt
record_fix_attempt(failure_output, test_path, diff_text, success)
except Exception:
pass
if success:
try:
rebuild_embedding_index(limit=1)
except Exception:
pass
def get_memory_stats() -> dict:
"""Return basic stats about the embedding index."""
try:
_ensure_schema()
with sqlite3.connect(EMBEDDING_DB_PATH) as conn:
total = conn.execute("SELECT COUNT(*) FROM fix_embeddings").fetchone()[0]
return {"patterns_stored": total, "successful_patterns": total, "backend": BACKEND}
except Exception:
return {"patterns_stored": 0, "successful_patterns": 0, "backend": BACKEND}
|