@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.
- package/dist/{chunk-CY4BTXRZ.js → chunk-RLG3DDQZ.js} +5 -2
- package/dist/chunk-RLG3DDQZ.js.map +1 -0
- package/dist/cli.cjs +4 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/client/assets/{index-BgDbwM46.css → index-CxBvTZU2.css} +1 -1
- package/dist/client/assets/index-CyKf66AB.js +313 -0
- package/dist/client/index.html +2 -2
- package/dist/middleware.cjs +4 -1
- package/dist/middleware.cjs.map +1 -1
- package/dist/middleware.js +1 -1
- package/dist/server/index.cjs +4 -1
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-CY4BTXRZ.js.map +0 -1
- package/dist/client/assets/index-B90nxXYQ.js +0 -313
package/dist/middleware.js
CHANGED
package/dist/server/index.cjs
CHANGED
|
@@ -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
|
}
|