@hackerrank/astra-cli 0.1.21 → 0.1.22

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hackerrank/astra-cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
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
@@ -196,7 +196,7 @@
196
196
  (function renderKpis() {
197
197
  var k = DATA.kpis || {};
198
198
  var cards = [
199
- ["Model–reasoning configurations", fmt(k.models)],
199
+ ["Solutions", fmt(k.models)],
200
200
  ["Average score", k.average_score == null ? "n/a" : fmt1(k.average_score) + "%"],
201
201
  ["Average duration", fmtDuration(k.runs ? k.elapsed_seconds / k.runs : 0)],
202
202
  ["Total cost", fmtUsd(k.cost_usd) + (k.cost_source === "estimated" ? "~" : "")],