@xdarkicex/openclaw-memory-libravdb 1.6.14 → 1.6.15
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/types.d.ts +7 -1
- package/openclaw.plugin.json +32 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -19,13 +19,19 @@ export interface PluginConfig {
|
|
|
19
19
|
/** Optional ONNX execution provider override passed through to libravdbd.
|
|
20
20
|
* Use "cpu" to bypass CoreML/MPS on Intel Macs or fragile GPU/NPU providers. */
|
|
21
21
|
onnxDevice?: "auto" | "cpu" | "cuda" | "coreml" | "directml" | "openvino";
|
|
22
|
-
embeddingBackend?: "bundled" | "onnx-local" | "custom-local";
|
|
22
|
+
embeddingBackend?: "bundled" | "onnx-local" | "custom-local" | "remote";
|
|
23
23
|
embeddingProfile?: string;
|
|
24
24
|
fallbackProfile?: string;
|
|
25
25
|
embeddingModelPath?: string;
|
|
26
26
|
embeddingTokenizerPath?: string;
|
|
27
27
|
embeddingDimensions?: number;
|
|
28
28
|
embeddingNormalize?: boolean;
|
|
29
|
+
/** HTTP endpoint URL for the remote embedder backend (when embeddingBackend is 'remote') */
|
|
30
|
+
embeddingEndpoint?: string;
|
|
31
|
+
/** Model identifier for the remote embedder backend */
|
|
32
|
+
embeddingRemoteModel?: string;
|
|
33
|
+
/** API key for the remote embedder endpoint */
|
|
34
|
+
embeddingAPIKey?: string;
|
|
29
35
|
summarizerBackend?: "bundled" | "onnx-local" | "ollama-local" | "custom-local";
|
|
30
36
|
summarizerProfile?: string;
|
|
31
37
|
summarizerRuntimePath?: string;
|
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.6.
|
|
5
|
+
"version": "1.6.15",
|
|
6
6
|
"kind": [
|
|
7
7
|
"memory",
|
|
8
8
|
"context-engine"
|
|
@@ -19,6 +19,21 @@
|
|
|
19
19
|
"configSchema": {
|
|
20
20
|
"type": "object",
|
|
21
21
|
"additionalProperties": false,
|
|
22
|
+
"if": {
|
|
23
|
+
"properties": {
|
|
24
|
+
"embeddingBackend": {
|
|
25
|
+
"const": "remote"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"required": [
|
|
29
|
+
"embeddingBackend"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"then": {
|
|
33
|
+
"required": [
|
|
34
|
+
"embeddingEndpoint"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
22
37
|
"properties": {
|
|
23
38
|
"dbPath": {
|
|
24
39
|
"type": "string"
|
|
@@ -142,8 +157,10 @@
|
|
|
142
157
|
"enum": [
|
|
143
158
|
"bundled",
|
|
144
159
|
"onnx-local",
|
|
145
|
-
"custom-local"
|
|
146
|
-
|
|
160
|
+
"custom-local",
|
|
161
|
+
"remote"
|
|
162
|
+
],
|
|
163
|
+
"description": "Embedder backend: bundled (built-in ONNX), onnx-local (local ONNX model), custom-local (custom ONNX), remote (HTTP API)"
|
|
147
164
|
},
|
|
148
165
|
"embeddingProfile": {
|
|
149
166
|
"type": "string",
|
|
@@ -165,6 +182,18 @@
|
|
|
165
182
|
"embeddingNormalize": {
|
|
166
183
|
"type": "boolean"
|
|
167
184
|
},
|
|
185
|
+
"embeddingEndpoint": {
|
|
186
|
+
"type": "string",
|
|
187
|
+
"description": "HTTP endpoint URL for the remote embedder backend (required when embeddingBackend is 'remote')"
|
|
188
|
+
},
|
|
189
|
+
"embeddingRemoteModel": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"description": "Model identifier used when embeddingBackend is 'remote', e.g. 'nomic-embed-text-v1.5'"
|
|
192
|
+
},
|
|
193
|
+
"embeddingAPIKey": {
|
|
194
|
+
"type": "string",
|
|
195
|
+
"description": "API key for the remote embedder endpoint (when embeddingBackend is 'remote')"
|
|
196
|
+
},
|
|
168
197
|
"summarizerBackend": {
|
|
169
198
|
"type": "string",
|
|
170
199
|
"enum": [
|