create-op-node 0.10.10 → 0.10.11
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/README.md +12 -7
- package/dist/cli.js +4 -4
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,15 +31,20 @@ Configures macOS power settings, installs Homebrew + the CLI tool list, sets up
|
|
|
31
31
|
### Choosing the LLM model
|
|
32
32
|
|
|
33
33
|
When you run `bootstrap` interactively (no `-y`, no `--llm-model` flag),
|
|
34
|
-
you'll get a curated picker
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- `
|
|
40
|
-
|
|
34
|
+
you'll get a curated picker that **pre-selects** a model based on the
|
|
35
|
+
Studio's detected unified memory:
|
|
36
|
+
|
|
37
|
+
- `qwen2.5:72b` — 72B, ~50 GB Ollama RAM. Pre-selected on 96 GB+ Studios.
|
|
38
|
+
Best Spanish + multilingual quality.
|
|
39
|
+
- `qwen2.5:32b` — 32B, ~22 GB Ollama RAM. Pre-selected on 48–95 GB Studios
|
|
40
|
+
(e.g. 64 GB).
|
|
41
|
+
- `qwen3.5:9b` — 9B, ~8 GB Ollama RAM. Pre-selected on smaller Studios
|
|
42
|
+
(< 48 GB), and the default for non-interactive `-y` runs (see below).
|
|
41
43
|
- `Other…` — any Ollama model name you specify.
|
|
42
44
|
|
|
45
|
+
(If memory detection fails, the picker falls back to pre-selecting
|
|
46
|
+
`qwen2.5:72b`.)
|
|
47
|
+
|
|
43
48
|
The picker is Qwen-only because the Opus Populi platform serves
|
|
44
49
|
Spanish-speaking civic users and Qwen has the strongest Spanish (and
|
|
45
50
|
broader multilingual) capability of the open-weight models in this
|
package/dist/cli.js
CHANGED
|
@@ -2697,17 +2697,17 @@ var LLM_MODEL_CHOICES = [
|
|
|
2697
2697
|
{
|
|
2698
2698
|
value: "qwen2.5:72b",
|
|
2699
2699
|
label: "qwen2.5:72b",
|
|
2700
|
-
hint: "72B, ~50 GB Ollama RAM.
|
|
2700
|
+
hint: "72B, ~50 GB Ollama RAM. Pre-selected on 96 GB+ Studios. Best Spanish + multilingual quality. Pull ~40 GB, 30\u201360 min."
|
|
2701
2701
|
},
|
|
2702
2702
|
{
|
|
2703
2703
|
value: "qwen2.5:32b",
|
|
2704
2704
|
label: "qwen2.5:32b",
|
|
2705
|
-
hint: "32B, ~22 GB Ollama RAM.
|
|
2705
|
+
hint: "32B, ~22 GB Ollama RAM. Pre-selected on 48\u201395 GB Studios. Solid Spanish, faster than 72B. Pull ~20 GB, 15\u201330 min."
|
|
2706
2706
|
},
|
|
2707
2707
|
{
|
|
2708
2708
|
value: "qwen3.5:9b",
|
|
2709
2709
|
label: "qwen3.5:9b",
|
|
2710
|
-
hint: "9B, ~8 GB Ollama RAM.
|
|
2710
|
+
hint: "9B, ~8 GB Ollama RAM. Pre-selected on smaller Studios (< 48 GB); also the -y / scripted default. Pull ~5 GB, 3\u20135 min."
|
|
2711
2711
|
}
|
|
2712
2712
|
];
|
|
2713
2713
|
var OTHER_SENTINEL = "__OTHER__";
|
|
@@ -4784,7 +4784,7 @@ async function looksLikeRegionsRepo(dir) {
|
|
|
4784
4784
|
}
|
|
4785
4785
|
|
|
4786
4786
|
// src/cli.ts
|
|
4787
|
-
var VERSION = "0.10.
|
|
4787
|
+
var VERSION = "0.10.11";
|
|
4788
4788
|
var program = new Command();
|
|
4789
4789
|
program.name("create-op-node").description(
|
|
4790
4790
|
"Interactive bootstrap for an Opus Populi federation node.\nCloudflare infrastructure \u2192 Mac Studio \u2192 live public API."
|