@hackerrank/astra-cli 0.1.13 → 0.1.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/report.html +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hackerrank/astra-cli",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Minimal zero-dependency AI coding agent for the HackerRank AI Gateway.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/report.html CHANGED
@@ -285,9 +285,6 @@
285
285
  { key: "slug", label: "Model · reasoning", render: function (r) { return esc(r.slug); } },
286
286
  { key: "runs", label: "Runs", render: function (r) { return fmt(r.runs); } },
287
287
  { key: "average_score", label: "Score", render: function (r) { return r.average_score == null ? '<span class="n-a">n/a</span>' : fmt1(r.average_score) + "%"; } },
288
- { key: "criteria_pass_rate", label: "Test cases", render: function (r) { return r.criteria_pass_rate == null ? '<span class="n-a">n/a</span>' : pct(r.criteria_pass_rate); } },
289
- { key: "verification_runs", label: "Verified", render: function (r) { return fmt(r.verification_runs) + " / " + fmt(r.runs); } },
290
- { key: "hard_passes", label: "Hard passes", render: function (r) { return fmt(r.hard_passes); } },
291
288
  { key: "sum_steps", label: "Total steps", render: function (r) { return fmt(r.sum_steps); } },
292
289
  { key: "sum_elapsed_seconds", label: "Time taken", render: function (r) { return fmt(r.sum_elapsed_seconds) + "s"; } },
293
290
  { key: "sum_tokens", label: "Tokens", render: function (r) { return fmt(r.sum_tokens); } },