@axlsdk/studio 0.18.0 → 0.18.1

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.
@@ -22,8 +22,8 @@
22
22
  }
23
23
  })();
24
24
  </script>
25
- <script type="module" crossorigin src="./assets/index-B90nxXYQ.js"></script>
26
- <link rel="stylesheet" crossorigin href="./assets/index-BgDbwM46.css">
25
+ <script type="module" crossorigin src="./assets/index-CyKf66AB.js"></script>
26
+ <link rel="stylesheet" crossorigin href="./assets/index-CxBvTZU2.css">
27
27
  </head>
28
28
  <body>
29
29
  <div id="root"></div>
@@ -141,7 +141,10 @@ function redactEvalItem(item) {
141
141
  detailsOut[name] = {
142
142
  score: detail.score,
143
143
  ...detail.duration !== void 0 ? { duration: detail.duration } : {},
144
- ...detail.cost !== void 0 ? { cost: detail.cost } : {}
144
+ ...detail.cost !== void 0 ? { cost: detail.cost } : {},
145
+ // `skipped` is a structural boolean (the `applies` predicate verdict),
146
+ // not user/LLM content — preserve it so the client's N/A chip renders.
147
+ ...detail.skipped !== void 0 ? { skipped: detail.skipped } : {}
145
148
  // metadata deliberately omitted — may contain LLM scorer reasoning
146
149
  };
147
150
  }