@xdarkicex/openclaw-memory-libravdb 1.4.12 → 1.4.14

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 CHANGED
@@ -63,6 +63,7 @@ export interface PluginConfig {
63
63
  continuityTailBudgetTokens?: number;
64
64
  continuityPriorContextTokens?: number;
65
65
  compactThreshold?: number;
66
+ compactionThresholdFraction?: number;
66
67
  compactSessionTokenBudget?: number;
67
68
  section7CoarseTopK?: number;
68
69
  section7SecondPassTopK?: number;
@@ -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.12",
5
+ "version": "1.4.14",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
@@ -237,6 +237,11 @@
237
237
  "compactThreshold": {
238
238
  "type": "number"
239
239
  },
240
+ "compactionThresholdFraction": {
241
+ "type": "number",
242
+ "default": 0.8,
243
+ "description": "Dynamic predictive compaction trigger ratio against the active token budget. Used when compactThreshold is not explicitly set."
244
+ },
240
245
  "compactSessionTokenBudget": {
241
246
  "type": "number",
242
247
  "default": 2000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.4.12",
3
+ "version": "1.4.14",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",