@axlsdk/studio 0.18.0 → 0.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createServer,
3
3
  handleWsMessage
4
- } from "./chunk-CY4BTXRZ.js";
4
+ } from "./chunk-RLG3DDQZ.js";
5
5
 
6
6
  // src/middleware.ts
7
7
  import { resolve as resolve2, dirname } from "path";
@@ -137,7 +137,10 @@ function redactEvalItem(item) {
137
137
  detailsOut[name] = {
138
138
  score: detail.score,
139
139
  ...detail.duration !== void 0 ? { duration: detail.duration } : {},
140
- ...detail.cost !== void 0 ? { cost: detail.cost } : {}
140
+ ...detail.cost !== void 0 ? { cost: detail.cost } : {},
141
+ // `skipped` is a structural boolean (the `applies` predicate verdict),
142
+ // not user/LLM content — preserve it so the client's N/A chip renders.
143
+ ...detail.skipped !== void 0 ? { skipped: detail.skipped } : {}
141
144
  // metadata deliberately omitted — may contain LLM scorer reasoning
142
145
  };
143
146
  }