offgrid-ai 0.3.18 → 0.3.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "offgrid-ai",
3
- "version": "0.3.18",
3
+ "version": "0.3.19",
4
4
  "description": "Privacy-first CLI for running local LLMs — discover, configure, run, benchmark",
5
5
  "author": "Eeshan Srivastava (https://eeshans.com)",
6
6
  "type": "module",
package/src/cli.mjs CHANGED
@@ -408,7 +408,7 @@ function capabilitySummary(caps) {
408
408
  if (caps.quant) parts.push(caps.quant);
409
409
  if (caps.mtp) parts.push("MTP");
410
410
  if (caps.qat) parts.push("QAT");
411
- if (caps.imatrix) parts.push("imatrix");
411
+
412
412
  if (caps.thinking) parts.push("thinking");
413
413
  if (caps.vision) parts.push("vision");
414
414
  return parts.length > 0 ? parts.join(" · ") : "standard GGUF";
@@ -418,7 +418,7 @@ function capabilityBadges(caps) {
418
418
  const badges = [];
419
419
  if (caps.mtp) badges.push(pc.blue("[MTP]"));
420
420
  if (caps.qat) badges.push(pc.green("[QAT]"));
421
- if (caps.imatrix) badges.push(pc.dim("[imatrix]"));
421
+
422
422
  if (caps.thinking) badges.push(pc.magenta("[thinking]"));
423
423
  if (caps.vision) badges.push(pc.cyan("[vision]"));
424
424
  return badges.join(" ");
@@ -46,11 +46,10 @@ export async function configureLocalProfile(prompt, profile) {
46
46
  configured = useMtp ? applyMtpDefaults(configured) : removeMtpDefaults(configured);
47
47
  }
48
48
 
49
- if (caps.qat || caps.imatrix) {
49
+ if (caps.qat) {
50
50
  console.log("");
51
- console.log(renderSection("Quantization note", renderRows([
52
- ["QAT", caps.qat ? "yes" : "no"],
53
- ["imatrix", caps.imatrix ? "yes" : "no"],
51
+ console.log(renderSection("Detected QAT model", renderRows([
52
+ ["Meaning", "quantization-aware trained"],
54
53
  ["Runtime flags", "none required"],
55
54
  ])));
56
55
  }
@@ -186,7 +185,7 @@ function detectionSummary(caps) {
186
185
  if (caps.quant) parts.push(caps.quant);
187
186
  if (caps.mtp) parts.push("MTP");
188
187
  if (caps.qat) parts.push("QAT");
189
- if (caps.imatrix) parts.push("imatrix");
188
+
190
189
  if (caps.thinking) parts.push("thinking");
191
190
  if (caps.vision) parts.push("vision");
192
191
  return parts.length > 0 ? parts.join(" · ") : "standard GGUF";