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 › L5 · Applications & Copilots
L5 · Applications & Copilots

Retrieval-Augmented Generation Over the L2 Data Fabric

Copilots ground every claim by retrieving from the L2 data fabric — shot histories, design documents, fault records — rather than relying on parametric memory.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L5 · APPLICATIONS & COPILOTSAgentic copilots that reason over the machine.1Plasma Copilotscenario design2Engineering Copilotsubsystem analysis3Operations Copilotrunbooks & procedures4Agentic Toolsbounded action-taking5Knowledge BaseRAG over the fabric6Guardrailssafety-boundedMACHINE TIEReads the twin and fabric; proposes actions that route through L4.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORAPPLICATIONS & COPILOTSSHEET 07REV. 2026-08L5 · AI-NATIVE STACK
L5 · Applications & Copilots — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Grounding over recall

Kronos copilots do not answer from a model's parametric memory where facts matter. They retrieve. Retrieval-augmented generation (RAG) over the L2 data fabric pulls the specific shot histories, design documents, calibration records, fault logs, and procedure templates relevant to a request, and the copilot reasons over that retrieved evidence with citations. This is what keeps advice tied to the actual machine and its canon rather than to a plausible-sounding hallucination.

What is indexed

Retrieval spans two indices: a structured query path into the L2 shot database and feature store for exact, filterable facts, and a vector index for semantic recall over documents. A copilot typically issues both — structured retrieval for numbers, vector retrieval for the surrounding engineering rationale.

text
retrieve(query, machine):
  facts = L2.sql(structured_filter(query, machine))   # exact
  docs  = vector_db.search(embed(query), k, filter=machine)
  ctx   = rerank(facts + docs, query)[:budget]
  return ctx with provenance ids for citation

Provenance is mandatory

Every retrieved item carries a provenance identifier through the whole loop, so the final answer can cite the exact source. An unsourced assertion is treated as a defect by the grounding evaluation. Retrieval also respects data lineage and access scope from L2 — a copilot cannot retrieve what it is not authorized to see, and confidential material is firewalled from public-facing outputs.

Because both machines are design-and-simulation studies, much of what is retrieved today is twin runs and design documents rather than real-shot data. As the breeder is commissioned toward FOAK, real shot histories enter the same fabric and the same retrieval path, with no change to the copilots' grounding contract. See chunking and embedding and citation grounding.

Content reviewed August 2026 · design-and-simulation stage