@openclaw/llama-cpp-provider 2026.6.8-beta.1 → 2026.6.8-beta.2

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 ADDED
@@ -0,0 +1,27 @@
1
+ # @openclaw/llama-cpp-provider
2
+
3
+ Official llama.cpp embedding provider for OpenClaw.
4
+
5
+ This plugin runs local GGUF embedding models through `node-llama-cpp`.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ openclaw plugins install @openclaw/llama-cpp-provider
11
+ ```
12
+
13
+ Restart the Gateway after installing or updating the plugin. Use Node 24 for
14
+ native installs and updates.
15
+
16
+ ## Configure
17
+
18
+ Set `agents.defaults.memorySearch.provider` to `local`. By default, the plugin
19
+ downloads and uses the EmbeddingGemma GGUF model. Configure
20
+ `agents.defaults.memorySearch.local.modelPath` to use another local path, Hugging
21
+ Face model URI, or HTTPS model URL.
22
+
23
+ ## Package
24
+
25
+ - Plugin id: `llama-cpp`
26
+ - Package: `@openclaw/llama-cpp-provider`
27
+ - Minimum OpenClaw host: `2026.6.2`
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/llama-cpp-provider",
3
- "version": "2026.6.8-beta.1",
3
+ "version": "2026.6.8-beta.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/llama-cpp-provider",
9
- "version": "2026.6.8-beta.1",
9
+ "version": "2026.6.8-beta.2",
10
10
  "dependencies": {
11
11
  "node-llama-cpp": "3.18.1"
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/llama-cpp-provider",
3
- "version": "2026.6.8-beta.1",
3
+ "version": "2026.6.8-beta.2",
4
4
  "description": "OpenClaw llama.cpp embedding provider plugin",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,10 +23,10 @@
23
23
  "minHostVersion": ">=2026.6.2"
24
24
  },
25
25
  "compat": {
26
- "pluginApi": ">=2026.6.8-beta.1"
26
+ "pluginApi": ">=2026.6.8-beta.2"
27
27
  },
28
28
  "build": {
29
- "openclawVersion": "2026.6.8-beta.1"
29
+ "openclawVersion": "2026.6.8-beta.2"
30
30
  },
31
31
  "release": {
32
32
  "bundleRuntimeDependencies": false,
@@ -40,10 +40,11 @@
40
40
  "files": [
41
41
  "dist/**",
42
42
  "openclaw.plugin.json",
43
- "npm-shrinkwrap.json"
43
+ "npm-shrinkwrap.json",
44
+ "README.md"
44
45
  ],
45
46
  "peerDependencies": {
46
- "openclaw": ">=2026.6.8-beta.1"
47
+ "openclaw": ">=2026.6.8-beta.2"
47
48
  },
48
49
  "peerDependenciesMeta": {
49
50
  "openclaw": {