Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › L2 · Data Fabric
L2 · Data Fabric

The RAG-Ready Vector Database

A vector database indexes embeddings of shots, diagnostics, and documents so copilots retrieve the most relevant context by meaning, not keyword.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L2 · DATA FABRICTelemetry, validation, and the machine's memory.160+ Port Telemetrysensor bus2Signal Validationrange & sanity3Feature Engineeringderived signals4Time-Series Archivefull history5Feature Storetraining-ready6Vector DBembeddings for RAGMACHINE TIEIngests from diagnostics; serves the twin (L3) and copilots (L5).KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORDATA FABRICSHEET 04REV. 2026-08L2 · AI-NATIVE STACK
L2 · Data Fabric — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Retrieval by meaning

The copilots reason over a large corpus: past shots, diagnostic traces, engineering documents, procedures, and the schema registry. A vector database stores embeddings of these items so a query is answered by semantic similarity — the copilot retrieves the shots and documents closest in meaning, then reasons over them. This is the retrieval half of retrieval-augmented generation.

What is embedded

How retrieval works

python
import numpy as np
def top_k(query_vec, index, k=5):
    # cosine similarity retrieval over normalized embeddings
    sims = index @ (query_vec/np.linalg.norm(query_vec))
    return np.argsort(-sims)[:k]

Grounded and governed

Retrieval keeps the copilots grounded in the plant's real data rather than free-associating. Every retrieved item carries its lineage, so a copilot's answer can be traced to the exact shots and documents it rested on — essential for a safety-relevant system. The vector database is built from the same governed corpus as the archive and registry (see document & schema registry), and it is a design specification for the AI stack serving both machines.

Content reviewed August 2026 · design-and-simulation stage