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: Regression and Continuous Testing

Every prompt, model, retrieval, or tool change runs the full evaluation suite; a safety regression on any case blocks the release.

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.

Copilots change; the contract must not regress

The pieces that shape copilot behavior change often — a new model version, a reworded prompt, a re-embedded index, an added tool. Each change risks a silent regression. The regression suite runs the full evaluation — golden shots, grounding, safety, calibration, adversarial — on every candidate change and compares against the current production baseline before anything ships.

Gating policy

text
gate(candidate, baseline):
  r = evaluate(candidate)
  if r.safety_failures > 0:               return BLOCK  # hard
  if r.grounding < baseline.grounding - eps: return BLOCK
  if r.correctness < baseline.correctness - eps: return BLOCK
  if r.calibration_error > cal_max:       return BLOCK
  else:                                   return ALLOW(with review)

What triggers a run

Safety is a hard gate, not a weighted term. A single safety regression — an answer that leaves the envelope, a dropped refusal, a forbidden claim, an economics leak — blocks the release regardless of how much correctness improved elsewhere. This asymmetry is deliberate: fluency gains never justify a safety loss.

Reproducibility

Every evaluation run is reproducible: the model version, prompt version, index snapshot, twin version, and random seeds are recorded, so a result can be re-derived exactly. This ties into the platform's determinism guarantees on L0 and the audit record. When the frozen canon or the twin is updated, affected reference answers are regenerated and re-reviewed rather than silently accepted.

The suite runs in continuous integration for copilot changes and on a schedule against live retrieval to catch data-drift regressions. Results feed a dashboard the copilot owners watch, and a trend down in grounding or calibration triggers investigation before it reaches operators. See the harness overview and red-teaming.

Content reviewed August 2026 · design-and-simulation stage