superlocalmemory 3.4.49 → 3.4.51
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/CHANGELOG.md +41 -0
- package/README.md +43 -1
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/superlocalmemory/__init__.py +1 -1
- package/src/superlocalmemory/cli/commands.py +7 -2
- package/src/superlocalmemory/cli/main.py +10 -0
- package/src/superlocalmemory/core/backend_orchestrator.py +365 -0
- package/src/superlocalmemory/core/pruning_engine.py +216 -0
- package/src/superlocalmemory/core/recall_pipeline.py +26 -2
- package/src/superlocalmemory/core/store_pipeline.py +21 -0
- package/src/superlocalmemory/core/tier_manager.py +124 -0
- package/src/superlocalmemory/graph/__init__.py +9 -0
- package/src/superlocalmemory/graph/cozo_backend.py +527 -0
- package/src/superlocalmemory/mcp/_pool_adapter.py +2 -0
- package/src/superlocalmemory/mcp/tools_active.py +41 -1
- package/src/superlocalmemory/retrieval/engine.py +15 -3
- package/src/superlocalmemory/retrieval/entity_channel.py +50 -1
- package/src/superlocalmemory/retrieval/reranker.py +15 -0
- package/src/superlocalmemory/server/unified_daemon.py +2 -0
- package/src/superlocalmemory/storage/migration_runner.py +3 -0
- package/src/superlocalmemory/storage/migrations/M014_v345_scale_ready.py +45 -0
- package/src/superlocalmemory/storage/schema_v345.py +109 -0
- package/src/superlocalmemory/vector/__init__.py +9 -0
- package/src/superlocalmemory/vector/lancedb_backend.py +299 -0
- package/src/superlocalmemory.egg-info/PKG-INFO +44 -2
- package/src/superlocalmemory.egg-info/SOURCES.txt +8 -0
|
@@ -66,6 +66,7 @@ src/superlocalmemory/compliance/lifecycle.py
|
|
|
66
66
|
src/superlocalmemory/compliance/retention.py
|
|
67
67
|
src/superlocalmemory/compliance/scheduler.py
|
|
68
68
|
src/superlocalmemory/core/__init__.py
|
|
69
|
+
src/superlocalmemory/core/backend_orchestrator.py
|
|
69
70
|
src/superlocalmemory/core/clock_monitor.py
|
|
70
71
|
src/superlocalmemory/core/config.py
|
|
71
72
|
src/superlocalmemory/core/consolidation_engine.py
|
|
@@ -93,6 +94,7 @@ src/superlocalmemory/core/ollama_embedder.py
|
|
|
93
94
|
src/superlocalmemory/core/platform_utils.py
|
|
94
95
|
src/superlocalmemory/core/priority_queue.py
|
|
95
96
|
src/superlocalmemory/core/profiles.py
|
|
97
|
+
src/superlocalmemory/core/pruning_engine.py
|
|
96
98
|
src/superlocalmemory/core/queue_consumer.py
|
|
97
99
|
src/superlocalmemory/core/queue_dispatcher.py
|
|
98
100
|
src/superlocalmemory/core/ram_lock.py
|
|
@@ -144,6 +146,8 @@ src/superlocalmemory/evolution/mutation_generator.py
|
|
|
144
146
|
src/superlocalmemory/evolution/skill_evolver.py
|
|
145
147
|
src/superlocalmemory/evolution/triggers.py
|
|
146
148
|
src/superlocalmemory/evolution/types.py
|
|
149
|
+
src/superlocalmemory/graph/__init__.py
|
|
150
|
+
src/superlocalmemory/graph/cozo_backend.py
|
|
147
151
|
src/superlocalmemory/hooks/__init__.py
|
|
148
152
|
src/superlocalmemory/hooks/_outcome_common.py
|
|
149
153
|
src/superlocalmemory/hooks/adapter_base.py
|
|
@@ -357,6 +361,7 @@ src/superlocalmemory/storage/schema_v32.py
|
|
|
357
361
|
src/superlocalmemory/storage/schema_v3410.py
|
|
358
362
|
src/superlocalmemory/storage/schema_v3411.py
|
|
359
363
|
src/superlocalmemory/storage/schema_v343.py
|
|
364
|
+
src/superlocalmemory/storage/schema_v345.py
|
|
360
365
|
src/superlocalmemory/storage/schema_v347.py
|
|
361
366
|
src/superlocalmemory/storage/v2_migrator.py
|
|
362
367
|
src/superlocalmemory/storage/migrations/M001_add_signal_features_columns.py
|
|
@@ -371,6 +376,7 @@ src/superlocalmemory/storage/migrations/M010_evolution_config.py
|
|
|
371
376
|
src/superlocalmemory/storage/migrations/M011_archive_and_merge.py
|
|
372
377
|
src/superlocalmemory/storage/migrations/M012_shadow_observations.py
|
|
373
378
|
src/superlocalmemory/storage/migrations/M013_bi_temporal_columns.py
|
|
379
|
+
src/superlocalmemory/storage/migrations/M014_v345_scale_ready.py
|
|
374
380
|
src/superlocalmemory/storage/migrations/__init__.py
|
|
375
381
|
src/superlocalmemory/trust/__init__.py
|
|
376
382
|
src/superlocalmemory/trust/gate.py
|
|
@@ -428,6 +434,8 @@ src/superlocalmemory/ui/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2
|
|
|
428
434
|
src/superlocalmemory/ui/vendor/inter-ui/inter-variable.min.css
|
|
429
435
|
src/superlocalmemory/ui/vendor/inter-ui/variable/InterVariable-Italic.woff2
|
|
430
436
|
src/superlocalmemory/ui/vendor/inter-ui/variable/InterVariable.woff2
|
|
437
|
+
src/superlocalmemory/vector/__init__.py
|
|
438
|
+
src/superlocalmemory/vector/lancedb_backend.py
|
|
431
439
|
tests/test_auto_hooks.py
|
|
432
440
|
tests/test_before_web_hook.py
|
|
433
441
|
tests/test_behavioral_full.py
|