superlocalmemory 3.2.2 → 3.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlocalmemory",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Information-geometric agent memory with mathematical guarantees. 4-channel retrieval, Fisher-Rao similarity, zero-LLM mode, EU AI Act compliant. Works with Claude, Cursor, Windsurf, and 17+ AI tools.",
5
5
  "keywords": [
6
6
  "ai-memory",
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "superlocalmemory"
3
- version = "3.2.2"
3
+ version = "3.2.3"
4
4
  description = "Information-geometric agent memory with mathematical guarantees"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -217,10 +217,10 @@ class MathConfig:
217
217
  class ConsolidationConfig:
218
218
  """Configuration for sleep-time consolidation (Phase 5).
219
219
 
220
- Feature-flagged: starts enabled=False (Rule 12).
220
+ Ships enabled by default. Users can disable via slm config.
221
221
  """
222
222
 
223
- enabled: bool = False # Feature flag (Rule 12)
223
+ enabled: bool = True
224
224
  step_count_trigger: int = 50 # Lightweight consolidation every N stores (L7)
225
225
  session_trigger: bool = True # Run on session end
226
226
  idle_timeout_seconds: int = 300 # 5 min inactivity
@@ -237,10 +237,10 @@ class ConsolidationConfig:
237
237
  class TemporalValidatorConfig:
238
238
  """Configuration for temporal intelligence (Phase 4).
239
239
 
240
- Feature-flagged: starts enabled=False (Rule 12).
240
+ Ships enabled by default. Users can disable via slm config.
241
241
  """
242
242
 
243
- enabled: bool = False
243
+ enabled: bool = True
244
244
  mode: str = "a" # "a" (sheaf), "b"/"c" (LLM)
245
245
 
246
246
  # Sheaf contradiction threshold
@@ -263,8 +263,7 @@ class TemporalValidatorConfig:
263
263
  class AutoInvokeConfig:
264
264
  """Configuration for the Auto-Invoke Engine (Phase 2).
265
265
 
266
- Feature-flagged: starts enabled=False, graduated to default on
267
- after MRR validation passes (Rule 12).
266
+ Ships enabled by default. Users can disable via slm config.
268
267
 
269
268
  References:
270
269
  - SYNAPSE: FOK gating (fok_threshold = 0.12)
@@ -272,7 +271,7 @@ class AutoInvokeConfig:
272
271
  - Zep/Hindsight: multi-signal ranking consensus
273
272
  """
274
273
 
275
- enabled: bool = False # Feature flag (Rule 12)
274
+ enabled: bool = True
276
275
  profile_id: str = "default"
277
276
 
278
277
  # Scoring weights (4-signal default) -- must sum to 1.0
@@ -50,7 +50,7 @@ class SpreadingActivationConfig:
50
50
  top_m: int = 7 # Lateral inhibition: max active nodes
51
51
  max_iterations: int = 3 # T: propagation depth
52
52
  tau_gate: float = 0.12 # FOK confidence gate
53
- enabled: bool = False # Feature flag (Rule 12)
53
+ enabled: bool = True # Ships enabled by default
54
54
 
55
55
 
56
56
  # ---------------------------------------------------------------------------
@@ -32,7 +32,7 @@ class VectorStoreConfig:
32
32
  dimension: int = 768
33
33
  binary_quantization_threshold: int = 100_000 # L4 fix
34
34
  model_name: str = "nomic-embed-text-v1.5"
35
- enabled: bool = False # Rule 12: feature flag, default off
35
+ enabled: bool = True # Ships enabled by default
36
36
 
37
37
 
38
38
  class VectorStore: