@xdarkicex/openclaw-memory-libravdb 1.4.42 → 1.4.43

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/dist/sidecar.js CHANGED
@@ -373,9 +373,7 @@ export function buildSidecarEnv(cfg) {
373
373
  if (cfg.embeddingRuntimePath) {
374
374
  env.LIBRAVDB_ONNX_RUNTIME = cfg.embeddingRuntimePath;
375
375
  }
376
- if (cfg.onnxDevice) {
377
- env.LIBRAVDB_ONNX_DEVICE = cfg.onnxDevice;
378
- }
376
+ env.LIBRAVDB_ONNX_DEVICE = cfg.onnxDevice ?? "cpu";
379
377
  if (cfg.embeddingBackend) {
380
378
  env.LIBRAVDB_EMBEDDING_BACKEND = cfg.embeddingBackend;
381
379
  }
@@ -2,7 +2,7 @@
2
2
  "id": "libravdb-memory",
3
3
  "name": "LibraVDB Memory",
4
4
  "description": "Persistent vector memory with three-tier hybrid scoring",
5
- "version": "1.4.42",
5
+ "version": "1.4.43",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
@@ -77,6 +77,7 @@
77
77
  "directml",
78
78
  "openvino"
79
79
  ],
80
+ "default": "cpu",
80
81
  "description": "Optional ONNX execution provider override passed to libravdbd. Use cpu to bypass CoreML/MPS on Intel Macs."
81
82
  },
82
83
  "embeddingBackend": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.4.42",
3
+ "version": "1.4.43",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",