feat(playground): wire WasmIML methods into debug probe

Add evalLoss, inferBatch, and getLayerStats to the window.__nisps
debug probe so Playwright tests and dev console can access the new
WasmIML capabilities. InputHeatmap (Phase 3) is not yet wired into
a-app.js, so batch inference heatmap integration is deferred.
This commit is contained in:
w1n5t0n 2026-04-03 17:17:59 +01:00
parent f225c7c2a6
commit c646872e42

View file

@ -914,6 +914,9 @@ async function init() {
updateStatus();
},
saveState: () => saveState(),
evalLoss: () => iml.evalLoss(),
inferBatch: (points) => iml.inferBatch(points),
getLayerStats:() => iml.getLayerStats(),
};
}