@openclawbrain/cli 0.4.27 → 0.4.29

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/dist/src/cli.js +5 -0
  2. package/package.json +1 -1
package/dist/src/cli.js CHANGED
@@ -33,14 +33,19 @@ const OPENCLAWBRAIN_EMBEDDER_MODEL_ENV = "OPENCLAWBRAIN_EMBEDDER_MODEL";
33
33
  const OPENCLAWBRAIN_INSTALL_SKIP_EMBEDDER_PROVISION_ENV = "OPENCLAWBRAIN_INSTALL_SKIP_EMBEDDER_PROVISION";
34
34
  const LEGACY_COMPAT_PACKAGE_NAME = "@jonathangu/openclawbrain";
35
35
  const INSTALL_COMPATIBLE_LOCAL_TEACHER_MODEL_PREFIXES = [
36
+ "gemma4:31b",
37
+ "gemma4:27b",
38
+ "gemma4:12b",
36
39
  "unsloth-qwen3.5-27b:q4_k_m",
37
40
  "unsloth-qwen3.5-27b",
41
+ "qwen3.5:35b-a3b",
38
42
  "qwen3.5:32b",
39
43
  "qwen3.5:27b",
40
44
  "qwen3.5:14b",
41
45
  "qwen3.5:9b",
42
46
  "qwen3.5:8b",
43
47
  "qwen3:8b",
48
+ "qwen2.5:32b-instruct",
44
49
  "qwen2.5:7b"
45
50
  ];
46
51
  const DEFAULT_BOUNDED_JSONL_TAIL_BYTES = 4 * 1024 * 1024;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawbrain/cli",
3
- "version": "0.4.27",
3
+ "version": "0.4.29",
4
4
  "description": "OpenClawBrain operator CLI package with install/status helpers, daemon controls, and import/export tooling.",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",