Spaces:
Running
Running
File size: 21,809 Bytes
d5a6f3e 61d5f0d d5a6f3e 003b415 d5a6f3e 61d5f0d d5a6f3e 19ccf32 d5a6f3e 7106701 003b415 d5a6f3e 61d5f0d 19ccf32 02df9f5 61d5f0d d5a6f3e 61d5f0d 19ccf32 02df9f5 d5a6f3e 61d5f0d 02df9f5 d5a6f3e 61d5f0d 02df9f5 61d5f0d 02df9f5 d5a6f3e 19ccf32 d5a6f3e 19ccf32 d5a6f3e 19ccf32 d5a6f3e 61d5f0d 7106701 003b415 | 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 | """
SQLite database layer.
Tables
ββββββ
interactions β every user action (save, not_interested, click, view)
paper_qdrant_map β arxiv_id β integer Qdrant point ID (cached lazily)
paper_metadata β arXiv API response cache (title, abstract, β¦)
Phase 4.5 instrumentation columns (interactions table):
ranker_version β identifies which pipeline version served the paper
candidate_source β granular origin: 'cluster_0', 'exploration', 'ewma', etc.
cluster_id β which interest cluster served this paper (NULL if N/A)
"""
import aiosqlite
import hashlib
import json
import uuid as _uuid
from app.config import DB_PATH
# ββ DDL βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_SCHEMA = """
PRAGMA journal_mode=WAL;
PRAGMA synchronous=NORMAL;
CREATE TABLE IF NOT EXISTS interactions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id TEXT NOT NULL,
paper_id TEXT NOT NULL,
event_type TEXT NOT NULL, -- save | not_interested | click | view
source TEXT, -- search | recommendation
position INTEGER,
query_id TEXT,
ranker_version TEXT, -- Phase 4.5: pipeline version tag
candidate_source TEXT, -- Phase 4.5: 'cluster_0' | 'exploration' | 'ewma' | 'qdrant_recommend'
cluster_id INTEGER, -- Phase 4.5: interest cluster index (NULL if N/A)
timestamp TEXT NOT NULL DEFAULT (datetime('now'))
);
CREATE INDEX IF NOT EXISTS idx_ui_user_ts
ON interactions(user_id, timestamp DESC);
CREATE INDEX IF NOT EXISTS idx_ui_user_paper
ON interactions(user_id, paper_id);
-- Maps arxiv_id -> Qdrant integer point ID (populated lazily on first save)
CREATE TABLE IF NOT EXISTS paper_qdrant_map (
arxiv_id TEXT PRIMARY KEY,
qdrant_point_id INTEGER NOT NULL,
mapped_at TEXT NOT NULL DEFAULT (datetime('now'))
);
-- Cache of paper metadata fetched from the arXiv API
CREATE TABLE IF NOT EXISTS paper_metadata (
arxiv_id TEXT PRIMARY KEY,
title TEXT,
abstract TEXT,
authors TEXT, -- JSON array string
category TEXT,
published TEXT,
cached_at TEXT NOT NULL DEFAULT (datetime('now'))
);
-- Phase 2a: EWMA user profile embeddings (long_term, short_term, negative)
CREATE TABLE IF NOT EXISTS user_profiles (
user_id TEXT NOT NULL,
profile_type TEXT NOT NULL, -- 'long_term' | 'short_term' | 'negative'
vector BLOB NOT NULL, -- 4096 bytes (1024 Γ float32)
interaction_count INTEGER DEFAULT 0,
updated_at TEXT NOT NULL DEFAULT (datetime('now')),
PRIMARY KEY (user_id, profile_type)
);
-- Phase 2b: Ward clustering results (medoid paper IDs per interest cluster)
CREATE TABLE IF NOT EXISTS user_clusters (
user_id TEXT NOT NULL,
cluster_idx INTEGER NOT NULL,
medoid_paper_id TEXT NOT NULL,
importance REAL NOT NULL,
paper_ids TEXT NOT NULL, -- JSON array of arxiv_ids
medoid_embedding_blob BLOB, -- Phase 6.3: persisted medoid for zero-vector fallback
computed_at TEXT NOT NULL DEFAULT (datetime('now')),
PRIMARY KEY (user_id, cluster_idx)
);
-- Phase 5: Onboarding state and category selections
CREATE TABLE IF NOT EXISTS user_onboarding (
user_id TEXT PRIMARY KEY,
selected_categories TEXT, -- JSON array of group keys: ["nlp", "cv", "ml"]
onboarding_completed INTEGER DEFAULT 0, -- 0 = in progress, 1 = done
created_at TEXT NOT NULL DEFAULT (datetime('now')),
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
);
-- Phase 6.5 B3: Append-only cluster history (current-state still in user_clusters)
CREATE TABLE IF NOT EXISTS cluster_snapshots (
user_id TEXT NOT NULL,
snapshot_id TEXT NOT NULL, -- UUID, one per recluster event
cluster_idx INTEGER NOT NULL, -- stable index after Hungarian
medoid_paper_id TEXT NOT NULL,
importance REAL NOT NULL,
paper_ids TEXT NOT NULL, -- JSON array
medoid_embedding_blob BLOB,
snapshot_date TEXT NOT NULL DEFAULT (datetime('now')),
paper_ids_hash TEXT NOT NULL, -- sha256(sorted(paper_ids))[:16]
PRIMARY KEY (user_id, snapshot_id, cluster_idx)
);
CREATE INDEX IF NOT EXISTS idx_snap_user_date
ON cluster_snapshots(user_id, snapshot_date DESC);
CREATE INDEX IF NOT EXISTS idx_snap_hash
ON cluster_snapshots(paper_ids_hash);
"""
# ββ Phase 4.5: ALTER TABLE migration for existing DBs βββββββββββββββββββββββββ
# SQLite does not support IF NOT EXISTS for columns, so we try/except.
_MIGRATION_4_5 = [
"ALTER TABLE interactions ADD COLUMN ranker_version TEXT",
"ALTER TABLE interactions ADD COLUMN candidate_source TEXT",
"ALTER TABLE interactions ADD COLUMN cluster_id INTEGER",
]
# ββ Phase 6.3: Persist medoid embeddings for Bug B fallback βββββββββββββββββββ
_MIGRATION_6_3 = [
"ALTER TABLE user_clusters ADD COLUMN medoid_embedding_blob BLOB",
]
# ββ Phase 6.5 B2: Propensity + policy_id for counterfactual evaluation ββββββββ
_MIGRATION_6_5 = [
"ALTER TABLE interactions ADD COLUMN propensity REAL",
"ALTER TABLE interactions ADD COLUMN policy_id TEXT",
]
async def init_db() -> None:
"""Create tables if they don't exist. Called once at startup."""
async with aiosqlite.connect(DB_PATH) as db:
await db.executescript(_SCHEMA)
# Phase 4.5: add instrumentation columns to existing DBs
for stmt in _MIGRATION_4_5:
try:
await db.execute(stmt)
except Exception:
pass # Column already exists β safe to ignore
# Phase 6.3: add medoid embedding blob for Bug B fallback
for stmt in _MIGRATION_6_3:
try:
await db.execute(stmt)
except Exception:
pass # Column already exists β safe to ignore
# Phase 6.5 B2: add propensity + policy_id for SNIPS evaluation
for stmt in _MIGRATION_6_5:
try:
await db.execute(stmt)
except Exception:
pass # Column already exists β safe to ignore
await db.commit()
# ββ Interaction helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def log_interaction(
user_id: str,
paper_id: str,
event_type: str,
source: str | None = None,
position: int | None = None,
query_id: str | None = None,
ranker_version: str | None = None,
candidate_source: str | None = None,
cluster_id: int | None = None,
propensity: float | None = None,
policy_id: str | None = None,
) -> None:
async with aiosqlite.connect(DB_PATH) as db:
await db.execute(
"""INSERT INTO interactions
(user_id, paper_id, event_type, source, position, query_id,
ranker_version, candidate_source, cluster_id,
propensity, policy_id)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
(user_id, paper_id, event_type, source, position, query_id,
ranker_version, candidate_source, cluster_id,
propensity, policy_id),
)
await db.commit()
async def get_user_interactions(
user_id: str, event_types: list[str] | None = None, limit: int = 50
) -> list[dict]:
"""Return recent interactions for a user, optionally filtered by event type."""
async with aiosqlite.connect(DB_PATH) as db:
db.row_factory = aiosqlite.Row
if event_types:
placeholders = ",".join("?" * len(event_types))
cur = await db.execute(
f"""SELECT paper_id, event_type, timestamp
FROM interactions
WHERE user_id = ?
AND event_type IN ({placeholders})
ORDER BY timestamp DESC
LIMIT ?""",
[user_id, *event_types, limit],
)
else:
cur = await db.execute(
"""SELECT paper_id, event_type, timestamp
FROM interactions
WHERE user_id = ?
ORDER BY timestamp DESC
LIMIT ?""",
(user_id, limit),
)
rows = await cur.fetchall()
return [dict(r) for r in rows]
# ββ Qdrant map helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def get_qdrant_id(arxiv_id: str) -> int | None:
async with aiosqlite.connect(DB_PATH) as db:
cur = await db.execute(
"SELECT qdrant_point_id FROM paper_qdrant_map WHERE arxiv_id = ?",
(arxiv_id,),
)
row = await cur.fetchone()
return row[0] if row else None
async def save_qdrant_id(arxiv_id: str, qdrant_point_id: int) -> None:
async with aiosqlite.connect(DB_PATH) as db:
await db.execute(
"""INSERT OR REPLACE INTO paper_qdrant_map (arxiv_id, qdrant_point_id)
VALUES (?, ?)""",
(arxiv_id, qdrant_point_id),
)
await db.commit()
async def get_qdrant_ids_batch(arxiv_ids: list[str]) -> dict[str, int]:
"""Return {arxiv_id: qdrant_point_id} for all IDs found in cache."""
if not arxiv_ids:
return {}
async with aiosqlite.connect(DB_PATH) as db:
placeholders = ",".join("?" * len(arxiv_ids))
cur = await db.execute(
f"SELECT arxiv_id, qdrant_point_id FROM paper_qdrant_map WHERE arxiv_id IN ({placeholders})",
arxiv_ids,
)
rows = await cur.fetchall()
return {r[0]: r[1] for r in rows}
# ββ Metadata cache helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def get_cached_metadata(arxiv_id: str) -> dict | None:
async with aiosqlite.connect(DB_PATH) as db:
db.row_factory = aiosqlite.Row
cur = await db.execute(
"SELECT * FROM paper_metadata WHERE arxiv_id = ?", (arxiv_id,)
)
row = await cur.fetchone()
return dict(row) if row else None
async def cache_metadata(paper: dict) -> None:
"""Upsert paper metadata dict into cache. Expects 'arxiv_id' key."""
async with aiosqlite.connect(DB_PATH) as db:
await db.execute(
"""INSERT OR REPLACE INTO paper_metadata
(arxiv_id, title, abstract, authors, category, published)
VALUES (:arxiv_id, :title, :abstract, :authors, :category, :published)""",
paper,
)
await db.commit()
async def get_cached_metadata_batch(arxiv_ids: list[str]) -> dict[str, dict]:
"""Return {arxiv_id: metadata_dict} for all IDs found in cache."""
if not arxiv_ids:
return {}
async with aiosqlite.connect(DB_PATH) as db:
db.row_factory = aiosqlite.Row
placeholders = ",".join("?" * len(arxiv_ids))
cur = await db.execute(
f"SELECT * FROM paper_metadata WHERE arxiv_id IN ({placeholders})",
arxiv_ids,
)
rows = await cur.fetchall()
return {r["arxiv_id"]: dict(r) for r in rows}
# ββ User profile helpers (Phase 2a) ββββββββββββββββββββββββββββββββββββββββββ
async def get_user_profile(user_id: str, profile_type: str) -> dict | None:
"""Return profile row as dict, or None if not found."""
async with aiosqlite.connect(DB_PATH) as conn:
conn.row_factory = aiosqlite.Row
cur = await conn.execute(
"SELECT vector, interaction_count FROM user_profiles "
"WHERE user_id = ? AND profile_type = ?",
(user_id, profile_type),
)
row = await cur.fetchone()
return dict(row) if row else None
async def upsert_user_profile(
user_id: str,
profile_type: str,
vector: bytes,
interaction_count: int,
) -> None:
"""Insert or update a user profile embedding."""
async with aiosqlite.connect(DB_PATH) as conn:
await conn.execute(
"""INSERT INTO user_profiles
(user_id, profile_type, vector, interaction_count, updated_at)
VALUES (?, ?, ?, ?, datetime('now'))
ON CONFLICT(user_id, profile_type) DO UPDATE SET
vector = excluded.vector,
interaction_count = excluded.interaction_count,
updated_at = excluded.updated_at""",
(user_id, profile_type, vector, interaction_count),
)
await conn.commit()
# ββ User cluster helpers (Phase 2b) ββββββββββββββββββββββββββββββββββββββββββ
async def save_user_clusters(user_id: str, clusters: list[dict]) -> None:
"""Replace all clusters for a user with new ones."""
async with aiosqlite.connect(DB_PATH) as conn:
await conn.execute(
"DELETE FROM user_clusters WHERE user_id = ?", (user_id,)
)
for c in clusters:
await conn.execute(
"""INSERT INTO user_clusters
(user_id, cluster_idx, medoid_paper_id, importance, paper_ids,
medoid_embedding_blob)
VALUES (?, ?, ?, ?, ?, ?)""",
(user_id, c["cluster_idx"], c["medoid_paper_id"],
c["importance"], c["paper_ids"],
c.get("medoid_embedding_blob")),
)
await conn.commit()
async def get_user_clusters(user_id: str) -> list[dict]:
"""Return clusters for a user, ordered by importance desc."""
async with aiosqlite.connect(DB_PATH) as conn:
conn.row_factory = aiosqlite.Row
cur = await conn.execute(
"""SELECT cluster_idx, medoid_paper_id, importance, paper_ids,
medoid_embedding_blob, computed_at
FROM user_clusters
WHERE user_id = ?
ORDER BY importance DESC""",
(user_id,),
)
rows = await cur.fetchall()
return [dict(r) for r in rows]
# ββ Phase 4.3: Category suppression helpers βββββββββββββββββββββββββββββββββββ
async def cache_turso_metadata_batch(papers: list[dict]) -> None:
"""
Write Turso paper dicts to the paper_metadata SQLite cache.
Called after every Turso fetch so dismissal-category JOINs work.
Silently skips rows missing required fields.
"""
if not papers:
return
async with aiosqlite.connect(DB_PATH) as conn:
for paper in papers:
if not paper.get("arxiv_id"):
continue
try:
await conn.execute(
"""INSERT OR REPLACE INTO paper_metadata
(arxiv_id, title, abstract, authors, category, published)
VALUES (:arxiv_id, :title, :abstract, :authors, :category, :published)""",
{
"arxiv_id": paper.get("arxiv_id", ""),
"title": paper.get("title", ""),
"abstract": paper.get("abstract", ""),
"authors": paper.get("authors", "[]"),
"category": paper.get("category", ""),
"published": paper.get("published", ""),
},
)
except Exception:
pass
await conn.commit()
async def get_suppressed_categories(
user_id: str,
threshold: int = 3,
window_days: int = 14,
) -> set[str]:
"""
Return categories the user has strongly signalled disinterest in.
A category is suppressed when the user has dismissed β₯ threshold papers
in that category within the last window_days days.
Requires paper_metadata to be populated (via cache_turso_metadata_batch).
Returns an empty set if no suppressions are found.
"""
async with aiosqlite.connect(DB_PATH) as conn:
cur = await conn.execute(
"""SELECT pm.category, COUNT(*) AS cnt
FROM interactions i
JOIN paper_metadata pm ON i.paper_id = pm.arxiv_id
WHERE i.user_id = ?
AND i.event_type = 'not_interested'
AND i.timestamp >= datetime('now', ? || ' days')
AND pm.category != ''
GROUP BY pm.category
HAVING COUNT(*) >= ?""",
(user_id, f"-{window_days}", threshold),
)
rows = await cur.fetchall()
return {row[0] for row in rows}
# ββ Phase 5: Onboarding helpers βββββββββββββββββββββββββββββββββββββββββββββββ
async def save_onboarding_categories(
user_id: str, categories: list[str]
) -> None:
"""Save or update user's selected category groups."""
import json
cats_json = json.dumps(categories)
async with aiosqlite.connect(DB_PATH) as conn:
await conn.execute(
"""INSERT INTO user_onboarding (user_id, selected_categories, updated_at)
VALUES (?, ?, datetime('now'))
ON CONFLICT(user_id) DO UPDATE SET
selected_categories = excluded.selected_categories,
updated_at = datetime('now')""",
(user_id, cats_json),
)
await conn.commit()
async def get_onboarding_state(user_id: str) -> dict | None:
"""Fetch onboarding data for a user. Returns None if no row exists."""
import json
async with aiosqlite.connect(DB_PATH) as conn:
conn.row_factory = aiosqlite.Row
cur = await conn.execute(
"SELECT * FROM user_onboarding WHERE user_id = ?",
(user_id,),
)
row = await cur.fetchone()
if row is None:
return None
d = dict(row)
# Parse categories JSON
try:
d["selected_categories"] = json.loads(d["selected_categories"] or "[]")
except (json.JSONDecodeError, TypeError):
d["selected_categories"] = []
return d
async def complete_onboarding(user_id: str) -> None:
"""Mark user's onboarding as complete (upsert)."""
async with aiosqlite.connect(DB_PATH) as conn:
await conn.execute(
"""INSERT INTO user_onboarding (user_id, onboarding_completed, updated_at)
VALUES (?, 1, datetime('now'))
ON CONFLICT(user_id) DO UPDATE SET
onboarding_completed = 1,
updated_at = datetime('now')""",
(user_id,),
)
await conn.commit()
async def get_user_category_filter(user_id: str) -> set[str]:
"""Return the flat set of arXiv category codes for a user's selected groups."""
state = await get_onboarding_state(user_id)
if state is None:
return set()
from app.config import expand_category_groups
return expand_category_groups(state["selected_categories"])
# ββ Phase 6.5 B3: Cluster snapshot versioning βββββββββββββββββββββββββββββββββ
async def save_cluster_snapshot(user_id: str, clusters: list[dict]) -> str:
"""Append a new snapshot of the user's clusters. Returns snapshot_id.
This is purely additive history β current-state queries still hit
user_clusters. Retrospective queries hit cluster_snapshots.
Each cluster dict must have: cluster_idx, medoid_paper_id, importance,
paper_ids (list[str] or JSON string), optionally medoid_embedding_blob.
"""
snapshot_id = str(_uuid.uuid4())
async with aiosqlite.connect(DB_PATH) as conn:
for c in clusters:
paper_ids = c["paper_ids"]
if isinstance(paper_ids, str):
paper_ids = json.loads(paper_ids)
paper_ids_hash = hashlib.sha256(
json.dumps(sorted(paper_ids)).encode()
).hexdigest()[:16]
await conn.execute(
"""INSERT INTO cluster_snapshots
(user_id, snapshot_id, cluster_idx, medoid_paper_id,
importance, paper_ids, medoid_embedding_blob, paper_ids_hash)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)""",
(user_id, snapshot_id, c["cluster_idx"], c["medoid_paper_id"],
c["importance"], json.dumps(paper_ids),
c.get("medoid_embedding_blob"), paper_ids_hash),
)
await conn.commit()
return snapshot_id
async def prune_old_snapshots(retention_days: int = 30) -> int:
"""Delete cluster snapshots older than retention_days. Returns rows deleted."""
async with aiosqlite.connect(DB_PATH) as conn:
cur = await conn.execute(
"DELETE FROM cluster_snapshots WHERE snapshot_date < datetime('now', ?)",
(f"-{retention_days} days",),
)
await conn.commit()
return cur.rowcount
|