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

Evaluation: Grounding and Hallucination Detection

Automated checks that every factual claim in an answer is supported by a cited source that actually entails it — catching both missing and misleading citations.

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.

Measuring grounding directly

Grounding is the property that every factual claim is supported by a real, cited source. The evaluation measures it in two dimensions: coverage (does every factual claim carry a citation) and entailment (does the cited source actually support the claim). A claim with no citation, or with a citation that does not entail it, is a grounding defect — the operational definition of a hallucination in this system.

The two checks

text
grounding_eval(answer, trace):
  claims = extract_factual_claims(answer)
  coverage  = mean(has_citation(c) for c in claims)
  entail = mean(entails(cite(c), c) for c in claims if has_citation(c))
  # entailment judged by NLI model + physics/canon rule checks
  score = harmonic_mean(coverage, entail)
  flag any claim where cite exists but entailment fails  # worst case
  return score, flagged_claims

Entailment for physical claims

Entailment for engineering prose uses a natural-language-inference model, but physical and canonical claims get a stricter, rule-based check. A claim that states a canonical number (Q_sci 3.076, 85.0 MW, 26.49 T plug) must cite the frozen canon and match it exactly; a numeric claim about a shot must match the cited twin run or record within tolerance. This prevents a plausible-but-wrong number from passing an NLI check that only sees surface similarity.

A citation that looks authoritative but does not support its claim is more dangerous than an obviously unsupported statement, because it defeats the operator's spot-check. The harness therefore treats mis-citation as the most severe grounding defect and blocks release on any occurrence in the safety-relevant golden set. The economics prohibition is checked here too: any monetary figure or market framing in an output is an automatic failure.

Grounding scores are tracked per copilot and per task type over time, so a slow degradation from a model or embedding change is caught early. The check builds directly on the citation-grounding contract and runs inside the regression suite.

Content reviewed August 2026 · design-and-simulation stage