offgrid-ai 0.11.1 → 0.11.3

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/runtime.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "offgrid-ai",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
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/runtime.mjs CHANGED
@@ -26,7 +26,7 @@ export async function offerManagedLlamaRuntimeUpdate(prompt, { fetchImpl = globa
26
26
  ["Source", "official GitHub release binary"],
27
27
  ]), { formatBorder: pc.cyan }));
28
28
 
29
- const shouldInstall = await prompt.yesNo(installed ? "Update llama.cpp runtime?" : "Install llama.cpp runtime?", true);
29
+ const shouldInstall = await prompt.yesNo(installed ? "Update llama.cpp runtime?" : "Install llama.cpp runtime?", false);
30
30
  if (!shouldInstall) return false;
31
31
 
32
32
  await installLlamaRelease(latest, { fetchImpl });