@xdarkicex/openclaw-memory-libravdb 1.4.2 → 1.4.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.
|
@@ -4,15 +4,14 @@ The plugin now supports a lightweight `embeddingProfile` setting for named local
|
|
|
4
4
|
|
|
5
5
|
Default selection baseline as of `2026-03-28`:
|
|
6
6
|
|
|
7
|
-
- default embedding profile: `
|
|
7
|
+
- default embedding profile: `all-minilm-l6-v2`
|
|
8
8
|
- bundled fallback profile: `all-minilm-l6-v2`
|
|
9
9
|
|
|
10
10
|
Why:
|
|
11
11
|
|
|
12
|
-
- MiniLM
|
|
13
|
-
- Nomic
|
|
14
|
-
- Nomic
|
|
15
|
-
- Adversarial lexical traps remain reranker-window cases, but Nomic still narrows the relevant-vs-distractor margin materially.
|
|
12
|
+
- MiniLM keeps the local LongMemEval retrieval slice inside the target memory envelope on macOS.
|
|
13
|
+
- Nomic remains available as an explicit opt-in profile for long-context experiments.
|
|
14
|
+
- Nomic ONNX on macOS is fragile with CoreML execution and can trigger multi-GB RSS, so it is no longer the safe bundled default.
|
|
16
15
|
|
|
17
16
|
Current shipped profile names:
|
|
18
17
|
|
|
@@ -37,6 +36,6 @@ How it works:
|
|
|
37
36
|
|
|
38
37
|
Recommended usage:
|
|
39
38
|
|
|
40
|
-
- `bundled` for the shipped default path, which now prefers
|
|
39
|
+
- `bundled` for the shipped default path, which now prefers MiniLM for local stability.
|
|
41
40
|
- `onnx-local` plus `embeddingProfile` when a power user wants a known model family like Nomic with local assets.
|
|
42
41
|
- treat remote/Ollama providers as future separate backend types, not as overloads of `custom-local`.
|
package/docs/installation.md
CHANGED
|
@@ -264,7 +264,7 @@ Expected output shape:
|
|
|
264
264
|
│ Memories stored │ 0 │
|
|
265
265
|
│ Gate threshold │ 0.35 │
|
|
266
266
|
│ Abstractive model │ ready | not provisioned │
|
|
267
|
-
│ Embedding profile │
|
|
267
|
+
│ Embedding profile │ all-minilm-l6-v2 │
|
|
268
268
|
│ Message │ ok │
|
|
269
269
|
└────────────────────┴──────────────────────────────┘
|
|
270
270
|
```
|
package/openclaw.plugin.json
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "1.4.3",
|
|
6
6
|
"kind": ["memory", "context-engine"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"embeddingBackend": { "type": "string", "enum": ["bundled", "onnx-local", "custom-local"] },
|
|
16
16
|
"embeddingProfile": {
|
|
17
17
|
"type": "string",
|
|
18
|
-
"default": "
|
|
18
|
+
"default": "all-minilm-l6-v2"
|
|
19
19
|
},
|
|
20
20
|
"fallbackProfile": {
|
|
21
21
|
"type": "string",
|