@xynogen/pix-core 0.2.3 → 0.2.4

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/ui/footer.ts +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xynogen/pix-core",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Pi extension — core UI/UX bundle (welcome banner, footer, model picker, self-update)",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
package/src/ui/footer.ts CHANGED
@@ -208,10 +208,11 @@ function renderModel(
208
208
  minimal: "min",
209
209
  low: "low",
210
210
  medium: "med",
211
- high: "hgh",
212
- xhigh: "xhg",
211
+ high: "high",
212
+ xhigh: "xhigh",
213
+ off: "off",
213
214
  };
214
- if (thinking && thinking !== "off") {
215
+ if (thinking) {
215
216
  const abbr = THINK_ABBR[thinking] ?? thinking.slice(0, 3);
216
217
  out += theme.fg("muted", " · ") + theme.fg("warning", abbr);
217
218
  }