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 +1 -1
- package/src/cli.mjs +2 -2
- package/src/profile-setup.mjs +4 -5
package/package.json
CHANGED
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
|
-
|
|
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
|
-
|
|
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(" ");
|
package/src/profile-setup.mjs
CHANGED
|
@@ -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
|
|
49
|
+
if (caps.qat) {
|
|
50
50
|
console.log("");
|
|
51
|
-
console.log(renderSection("
|
|
52
|
-
["
|
|
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
|
-
|
|
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";
|