offgrid-ai 0.4.3 → 0.4.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/scan.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "offgrid-ai",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
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/scan.mjs CHANGED
@@ -53,7 +53,7 @@ async function scanOneDir(root) {
53
53
  const meta = safeReadGgufMetadata(path);
54
54
  const architecture = typeof meta["general.architecture"] === "string" ? meta["general.architecture"] : null;
55
55
 
56
- if (architecture === "gemma4_assistant") {
56
+ if (architecture === "gemma4-assistant" || architecture === "gemma4_assistant") {
57
57
  // This is an MTP drafter model, not a main model
58
58
  drafters.push({
59
59
  path,