File size: 17,720 Bytes
c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 97b3013 b65c098 aaf4565 c8cf81d b65c098 c8cf81d b65c098 3fa51a8 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 aaf4565 b65c098 aaf4565 b65c098 1997432 b65c098 3fa51a8 b65c098 c8cf81d b65c098 c8cf81d 1997432 b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d 1997432 c8cf81d b65c098 c8cf81d aaf4565 c8cf81d b65c098 c8cf81d b65c098 c8cf81d 1997432 b65c098 c8cf81d b65c098 c8cf81d b65c098 c8cf81d b65c098 1997432 c8cf81d b65c098 1997432 c8cf81d aaf4565 c8cf81d b65c098 aaf4565 b65c098 c8cf81d b65c098 c8cf81d b65c098 | 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 | """
core/database.py β Fendt PESTEL-EL Sentinel: Astra DB Vector Store
===================================================================
Production-grade serverless vector store backed by DataStax Astra DB.
Embeddings are generated automatically via Astra Vectorize (Nvidia
NV-Embed-QA, 1024 dims, cosine similarity) β no local GPU or API key
overhead required at insert/query time.
Architecture
------------
SignalDB β thin faΓ§ade: insert / upsert / query / delete
Signal β canonical Pydantic v2 data model (unchanged)
PESTELDimension β strict enum prevents tag drift
_build_document() β deterministic text sent to Astra Vectorize
Signal._to_astra_doc() β Signal β Astra document dict
Signal._from_astra_doc() β Astra document dict β Signal
Similarity convention
---------------------
Astra returns `$similarity` in [0.0, 1.0] (higher = more similar).
All existing call sites expect distance semantics (lower = more
similar). SignalDB.search() converts: distance = 1.0 β similarity.
Environment
-----------
ASTRA_DB_TOKEN β Application token from Astra DB console (required)
ASTRA_DB_ENDPOINT β Astra DB API endpoint URL (required)
"""
from __future__ import annotations
import json
import os
import uuid
from datetime import datetime, timezone
from enum import Enum
from typing import Optional
from astrapy import DataAPIClient
from astrapy.constants import VectorMetric
from astrapy.info import (
CollectionDefinition,
CollectionVectorOptions,
VectorServiceOptions,
)
from pydantic import BaseModel, Field, field_validator, model_validator
# βββ Constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_COLLECTION_NAME = "pestel_signals"
# Astra Vectorize provider / model (no separate API key needed)
_VECTORIZE_PROVIDER = "nvidia"
_VECTORIZE_MODEL = "NV-Embed-QA"
# βββ Enums ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PESTELDimension(str, Enum):
POLITICAL = "POLITICAL"
ECONOMIC = "ECONOMIC"
SOCIAL = "SOCIAL"
TECHNOLOGICAL = "TECHNOLOGICAL"
ENVIRONMENTAL = "ENVIRONMENTAL"
LEGAL = "LEGAL"
# βββ Core Data Model ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Signal(BaseModel):
"""
Canonical representation of one intelligence signal.
Scores are normalised to [0.0, 1.0]:
impact_score β how much disruption this signal may cause
novelty_score β how new / unexpected the information is
velocity_score β rate of change / momentum (temporal)
"""
id: str = Field(
default_factory=lambda: str(uuid.uuid4()),
description="Stable UUID for deduplication",
)
title: str = Field(..., min_length=5, max_length=300)
pestel_dimension: PESTELDimension
content: str = Field(..., min_length=20)
source_url: str = Field(..., description="Verbatim provenance URL")
impact_score: float = Field(..., ge=0.0, le=1.0)
novelty_score: float = Field(..., ge=0.0, le=1.0)
velocity_score: float = Field(..., ge=0.0, le=1.0)
date_ingested: datetime = Field(
default_factory=lambda: datetime.now(timezone.utc)
)
entities: list[str] = Field(default_factory=list)
themes: list[str] = Field(default_factory=list)
# ββ derived βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@property
def disruption_score(self) -> float:
"""Composite score: ImpactΓ0.5 + NoveltyΓ0.3 + VelocityΓ0.2."""
return round(
self.impact_score * 0.5
+ self.novelty_score * 0.3
+ self.velocity_score * 0.2,
4,
)
# ββ validators ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@field_validator("source_url")
@classmethod
def url_must_have_scheme(cls, v: str) -> str:
if not (v.startswith("http://") or v.startswith("https://")):
raise ValueError(f"source_url must start with http(s)://: {v!r}")
return v
@model_validator(mode="after")
def title_not_in_content(self) -> Signal:
if self.content.strip() == self.title.strip():
raise ValueError("content must differ from title")
return self
# ββ graph-engine serialisation (JSON-safe flat dict) βββββββββββββββββββββ
# Used by core/graph_engine.py LangGraph state β must stay stable.
def to_metadata(self) -> dict:
"""Flat dict safe for LangGraph state (strings/ints/floats/bools only)."""
return {
"id": self.id,
"title": self.title,
"pestel_dimension": self.pestel_dimension.value,
"content": self.content,
"source_url": self.source_url,
"impact_score": self.impact_score,
"novelty_score": self.novelty_score,
"velocity_score": self.velocity_score,
"disruption_score": self.disruption_score,
"date_ingested": self.date_ingested.isoformat(),
"entities": json.dumps(self.entities),
"themes": json.dumps(self.themes),
}
@classmethod
def from_metadata(cls, metadata: dict) -> Signal:
"""Reconstruct a Signal from a to_metadata() dict (graph engine use)."""
return cls(
id=metadata["id"],
title=metadata["title"],
pestel_dimension=PESTELDimension(metadata["pestel_dimension"]),
content=metadata["content"],
source_url=metadata["source_url"],
impact_score=float(metadata["impact_score"]),
novelty_score=float(metadata["novelty_score"]),
velocity_score=float(metadata["velocity_score"]),
date_ingested=datetime.fromisoformat(metadata["date_ingested"]),
entities=json.loads(metadata.get("entities", "[]")),
themes=json.loads(metadata.get("themes", "[]")),
)
# ββ Astra DB document serialisation ββββββββββββββββββββββββββββββββββββββ
def _to_astra_doc(self) -> dict:
"""
Convert to an Astra DB document.
The ``$vectorize`` field is passed to Astra Vectorize (Nvidia
NV-Embed-QA) which generates the embedding server-side.
Entities and themes are stored as native lists (Astra supports
rich types; JSON-stringification is not required here).
"""
return {
"_id": self.id,
"$vectorize": _build_document(self),
"title": self.title,
"pestel_dimension": self.pestel_dimension.value,
"content": self.content,
"source_url": self.source_url,
"impact_score": self.impact_score,
"novelty_score": self.novelty_score,
"velocity_score": self.velocity_score,
"disruption_score": self.disruption_score,
"date_ingested": self.date_ingested.isoformat(),
"entities": self.entities,
"themes": self.themes,
}
@classmethod
def _from_astra_doc(cls, doc: dict) -> Signal:
"""Reconstruct a Signal from an Astra DB document."""
entities = doc.get("entities") or []
themes = doc.get("themes") or []
# Accept both native lists and legacy JSON strings (migration safety)
if isinstance(entities, str):
entities = json.loads(entities)
if isinstance(themes, str):
themes = json.loads(themes)
return cls(
id=doc["_id"],
title=doc["title"],
pestel_dimension=PESTELDimension(doc["pestel_dimension"]),
content=doc["content"],
source_url=doc["source_url"],
impact_score=float(doc["impact_score"]),
novelty_score=float(doc["novelty_score"]),
velocity_score=float(doc["velocity_score"]),
date_ingested=datetime.fromisoformat(doc["date_ingested"]),
entities=entities,
themes=themes,
)
# βββ Vectorize document builder βββββββββββββββββββββββββββββββββββββββββββββββ
def _build_document(signal: Signal) -> str:
"""
Deterministic text sent to Astra Vectorize (Nvidia NV-Embed-QA).
Concatenates the semantically richest fields so similarity search
works across titles, content, entities, and themes.
"""
parts = [
f"[{signal.pestel_dimension.value}]",
signal.title,
signal.content,
]
if signal.entities:
parts.append("Entities: " + ", ".join(signal.entities))
if signal.themes:
parts.append("Themes: " + ", ".join(signal.themes))
return " | ".join(parts)
# βββ SignalDB βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class SignalDB:
"""
Thin faΓ§ade over an Astra DB collection with Astra Vectorize.
The collection is lazily created on first instantiation if it does
not yet exist. Embeddings are generated automatically by the Nvidia
NV-Embed-QA model hosted inside Astra β no local model or external
embedding API call is made by this class.
Usage
-----
>>> db = SignalDB()
>>> db.insert(signal)
>>> results = db.search("EU tractor subsidies", n_results=5)
"""
def __init__(self) -> None:
token = os.getenv("ASTRA_DB_TOKEN", "")
endpoint = os.getenv("ASTRA_DB_ENDPOINT", "")
if not token:
raise RuntimeError(
"ASTRA_DB_TOKEN is not set. "
"Add it to your .env file and restart the app."
)
if not endpoint:
raise RuntimeError(
"ASTRA_DB_ENDPOINT is not set. "
"Add it to your .env file and restart the app."
)
try:
client = DataAPIClient(token=token)
self._db = client.get_database(endpoint)
# This triggers a network call to verify the token/endpoint
self._col = self._get_or_create_collection()
except Exception as exc:
# Handle 401 Unauthorized and other connection errors gracefully
# so the dashboard can still start in "offline/no-data" mode.
from core.logger import get_logger
get_logger(__name__).error("Astra DB connection failed: %s", exc)
self._db = None
self._col = None
# ββ collection bootstrap βββββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_or_create_collection(self):
"""Return the existing collection or create it with Astra Vectorize."""
existing_names = {c.name for c in self._db.list_collections()}
if _COLLECTION_NAME in existing_names:
return self._db.get_collection(_COLLECTION_NAME)
return self._db.create_collection(
_COLLECTION_NAME,
definition=CollectionDefinition(
vector=CollectionVectorOptions(
metric=VectorMetric.COSINE,
service=VectorServiceOptions(
provider=_VECTORIZE_PROVIDER,
model_name=_VECTORIZE_MODEL,
),
)
),
)
# ββ write ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def insert(self, signal: Signal) -> str:
"""
Upsert a Signal by its UUID.
Returns the signal id.
"""
if self._col is None:
raise RuntimeError("Database not connected. Check ASTRA_DB_TOKEN.")
doc = signal._to_astra_doc()
self._col.find_one_and_replace(
{"_id": signal.id},
doc,
upsert=True,
)
return signal.id
def insert_many(self, signals: list[Signal]) -> list[str]:
"""
Batch upsert. Each signal is individually replaced/inserted so
Astra Vectorize can embed each ``$vectorize`` field.
Returns list of ids.
"""
if not signals:
return []
for s in signals:
self.insert(s)
return [s.id for s in signals]
# ββ read βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def search(
self,
query: str,
n_results: int = 5,
dimension_filter: Optional[PESTELDimension] = None,
) -> list[tuple[Signal, float]]:
if self._col is None:
return []
"""
Semantic similarity search powered by Astra Vectorize.
The query string is embedded server-side using Nvidia NV-Embed-QA;
the top-k most similar signals are returned.
Parameters
----------
query : natural-language query string
n_results : how many signals to return
dimension_filter: restrict results to one PESTEL dimension
Returns
-------
List of (Signal, distance) tuples, sorted by distance ascending
(lower = more similar). Distance = 1.0 β Astra similarity score.
"""
filter_: dict = {}
if dimension_filter:
filter_["pestel_dimension"] = dimension_filter.value
cursor = self._col.find(
filter_,
sort={"$vectorize": query},
limit=n_results,
include_similarity=True,
projection={"$vector": False}, # omit raw embedding bytes
)
results: list[tuple[Signal, float]] = []
for doc in cursor:
similarity = float(doc.pop("$similarity", 0.0))
distance = round(1.0 - similarity, 4)
sig = Signal._from_astra_doc(doc)
results.append((sig, distance))
return results
def get_by_id(self, signal_id: str) -> Optional[Signal]:
"""Exact fetch by UUID."""
if self._col is None:
return None
doc = self._col.find_one(
{"_id": signal_id},
projection={"$vector": False},
)
if doc is None:
return None
return Signal._from_astra_doc(doc)
def get_all(self) -> list[Signal]:
"""
Return every signal in the collection (up to 2 000).
For dashboard and export use. Signals are returned in arbitrary
order; callers are responsible for sorting.
"""
if self._col is None:
return []
try:
cursor = self._col.find(
{},
projection={"$vector": False},
limit=2_000,
)
return [Signal._from_astra_doc(doc) for doc in cursor]
except Exception:
return []
# ββ stats ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def count(self) -> int:
"""Fast estimated document count (no full scan)."""
if self._col is None:
return 0
try:
return self._col.count_documents({}, upper_bound=10_000)
except Exception:
return 0
def stats(self) -> dict:
all_signals = self.get_all()
by_dim: dict[str, int] = {}
for s in all_signals:
by_dim[s.pestel_dimension.value] = by_dim.get(s.pestel_dimension.value, 0) + 1
endpoint = os.getenv("ASTRA_DB_ENDPOINT", "")
return {
"total_signals": self.count(),
"by_dimension": by_dim,
"collection": _COLLECTION_NAME,
"endpoint": endpoint,
"vectorize": f"{_VECTORIZE_PROVIDER}/{_VECTORIZE_MODEL}",
}
# ββ delete βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def delete(self, signal_id: str) -> None:
self._col.delete_one({"_id": signal_id})
def clear(self) -> None:
"""Drop and recreate the collection. Use with caution."""
self._db.drop_collection(_COLLECTION_NAME)
self._col = self._get_or_create_collection()
|