superlocalmemory 3.3.23 → 3.3.25
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/ATTRIBUTION.md +1 -1
- package/CHANGELOG.md +1 -1
- package/README.md +5 -5
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/api-reference.md +1 -1
- package/docs/auto-memory.md +1 -1
- package/docs/cli-reference.md +1 -1
- package/docs/compliance.md +1 -1
- package/docs/configuration.md +1 -1
- package/docs/getting-started.md +1 -1
- package/docs/ide-setup.md +1 -1
- package/docs/mcp-tools.md +1 -1
- package/docs/migration-from-v2.md +1 -1
- package/docs/profiles.md +1 -1
- package/docs/troubleshooting.md +1 -1
- package/docs/v2-archive/ACCESSIBILITY.md +1 -1
- package/docs/v2-archive/FRAMEWORK-INTEGRATIONS.md +1 -1
- package/docs/v2-archive/MCP-MANUAL-SETUP.md +1 -1
- package/docs/v2-archive/SEARCH-ENGINE-V2.2.0.md +2 -2
- package/docs/v2-archive/SEARCH-INTEGRATION-GUIDE.md +1 -1
- package/docs/v2-archive/UNIVERSAL-INTEGRATION.md +1 -1
- package/docs/v2-archive/V2.2.0-OPTIONAL-SEARCH.md +1 -1
- package/docs/v2-archive/WINDOWS-INSTALL-README.txt +1 -1
- package/docs/v2-archive/example_graph_usage.py +1 -1
- package/ide/configs/codex-mcp.toml +1 -1
- package/ide/hooks/context-hook.js +1 -1
- package/ide/hooks/post-recall-hook.js +1 -1
- package/ide/integrations/langchain/README.md +1 -1
- package/ide/integrations/langchain/langchain_superlocalmemory/__init__.py +1 -1
- package/ide/integrations/langchain/langchain_superlocalmemory/chat_message_history.py +1 -1
- package/ide/integrations/langchain/pyproject.toml +2 -2
- package/ide/integrations/langchain/tests/__init__.py +1 -1
- package/ide/integrations/langchain/tests/test_chat_message_history.py +1 -1
- package/ide/integrations/langchain/tests/test_security.py +1 -1
- package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/__init__.py +1 -1
- package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/base.py +1 -1
- package/ide/integrations/llamaindex/pyproject.toml +2 -2
- package/ide/integrations/llamaindex/tests/__init__.py +1 -1
- package/ide/integrations/llamaindex/tests/test_chat_store.py +1 -1
- package/ide/integrations/llamaindex/tests/test_security.py +1 -1
- package/ide/skills/slm-build-graph/SKILL.md +3 -3
- package/ide/skills/slm-list-recent/SKILL.md +3 -3
- package/ide/skills/slm-recall/SKILL.md +3 -3
- package/ide/skills/slm-remember/SKILL.md +3 -3
- package/ide/skills/slm-show-patterns/SKILL.md +3 -3
- package/ide/skills/slm-status/SKILL.md +3 -3
- package/ide/skills/slm-switch-profile/SKILL.md +3 -3
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/scripts/generate-thumbnails.py +1 -1
- package/scripts/postinstall.js +1 -1
- package/scripts/preuninstall.js +1 -1
- package/src/superlocalmemory/attribution/mathematical_dna.py +2 -2
- package/src/superlocalmemory/attribution/signer.py +2 -2
- package/src/superlocalmemory/attribution/watermark.py +2 -2
- package/src/superlocalmemory/cli/__init__.py +1 -1
- package/src/superlocalmemory/cli/commands.py +1 -1
- package/src/superlocalmemory/cli/daemon.py +2 -2
- package/src/superlocalmemory/cli/json_output.py +1 -1
- package/src/superlocalmemory/cli/main.py +1 -1
- package/src/superlocalmemory/cli/migrate_cmd.py +1 -1
- package/src/superlocalmemory/cli/pending_store.py +2 -2
- package/src/superlocalmemory/cli/post_install.py +1 -1
- package/src/superlocalmemory/cli/setup_wizard.py +1 -1
- package/src/superlocalmemory/code_graph/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/blast_radius.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/entity_resolver.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/event_listeners.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/fact_enricher.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/hebbian_linker.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/temporal_checker.py +1 -1
- package/src/superlocalmemory/code_graph/changes.py +1 -1
- package/src/superlocalmemory/code_graph/communities.py +1 -1
- package/src/superlocalmemory/code_graph/config.py +1 -1
- package/src/superlocalmemory/code_graph/database.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/python.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/typescript.py +1 -1
- package/src/superlocalmemory/code_graph/flows.py +1 -1
- package/src/superlocalmemory/code_graph/git_hooks.py +1 -1
- package/src/superlocalmemory/code_graph/graph_engine.py +1 -1
- package/src/superlocalmemory/code_graph/graph_store.py +1 -1
- package/src/superlocalmemory/code_graph/incremental.py +1 -1
- package/src/superlocalmemory/code_graph/models.py +1 -1
- package/src/superlocalmemory/code_graph/parser.py +1 -1
- package/src/superlocalmemory/code_graph/resolver.py +1 -1
- package/src/superlocalmemory/code_graph/search.py +1 -1
- package/src/superlocalmemory/code_graph/service.py +1 -1
- package/src/superlocalmemory/code_graph/watcher.py +1 -1
- package/src/superlocalmemory/compliance/abac.py +1 -1
- package/src/superlocalmemory/compliance/audit.py +1 -1
- package/src/superlocalmemory/compliance/eu_ai_act.py +1 -1
- package/src/superlocalmemory/compliance/gdpr.py +1 -1
- package/src/superlocalmemory/compliance/lifecycle.py +1 -1
- package/src/superlocalmemory/compliance/retention.py +1 -1
- package/src/superlocalmemory/compliance/scheduler.py +1 -1
- package/src/superlocalmemory/core/config.py +1 -1
- package/src/superlocalmemory/core/consolidation_engine.py +1 -1
- package/src/superlocalmemory/core/embedding_worker.py +1 -1
- package/src/superlocalmemory/core/embeddings.py +1 -1
- package/src/superlocalmemory/core/engine.py +1 -1
- package/src/superlocalmemory/core/engine_wiring.py +1 -1
- package/src/superlocalmemory/core/graph_analyzer.py +2 -2
- package/src/superlocalmemory/core/hooks.py +1 -1
- package/src/superlocalmemory/core/maintenance.py +2 -2
- package/src/superlocalmemory/core/maintenance_scheduler.py +2 -2
- package/src/superlocalmemory/core/modes.py +1 -1
- package/src/superlocalmemory/core/ollama_embedder.py +1 -1
- package/src/superlocalmemory/core/profiles.py +1 -1
- package/src/superlocalmemory/core/recall_pipeline.py +1 -1
- package/src/superlocalmemory/core/recall_worker.py +1 -1
- package/src/superlocalmemory/core/registry.py +2 -2
- package/src/superlocalmemory/core/reranker_worker.py +1 -1
- package/src/superlocalmemory/core/store_pipeline.py +1 -1
- package/src/superlocalmemory/core/summarizer.py +1 -1
- package/src/superlocalmemory/core/worker_pool.py +1 -1
- package/src/superlocalmemory/dynamics/activation_guided_quantization.py +2 -2
- package/src/superlocalmemory/dynamics/eap_scheduler.py +2 -2
- package/src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py +2 -2
- package/src/superlocalmemory/dynamics/fisher_langevin_coupling.py +2 -2
- package/src/superlocalmemory/encoding/auto_linker.py +2 -2
- package/src/superlocalmemory/encoding/cognitive_consolidator.py +2 -2
- package/src/superlocalmemory/encoding/consolidator.py +2 -2
- package/src/superlocalmemory/encoding/context_generator.py +1 -1
- package/src/superlocalmemory/encoding/emotional.py +1 -1
- package/src/superlocalmemory/encoding/entity_resolver.py +2 -2
- package/src/superlocalmemory/encoding/entropy_gate.py +1 -1
- package/src/superlocalmemory/encoding/fact_extractor.py +2 -2
- package/src/superlocalmemory/encoding/foresight.py +1 -1
- package/src/superlocalmemory/encoding/graph_builder.py +2 -2
- package/src/superlocalmemory/encoding/observation_builder.py +1 -1
- package/src/superlocalmemory/encoding/scene_builder.py +1 -1
- package/src/superlocalmemory/encoding/signal_inference.py +1 -1
- package/src/superlocalmemory/encoding/temporal_parser.py +1 -1
- package/src/superlocalmemory/encoding/temporal_validator.py +1 -1
- package/src/superlocalmemory/encoding/type_router.py +1 -1
- package/src/superlocalmemory/hooks/__init__.py +1 -1
- package/src/superlocalmemory/hooks/auto_capture.py +1 -1
- package/src/superlocalmemory/hooks/auto_invoker.py +1 -1
- package/src/superlocalmemory/hooks/auto_parameterize.py +1 -1
- package/src/superlocalmemory/hooks/auto_recall.py +1 -1
- package/src/superlocalmemory/hooks/claude_code_hooks.py +1 -1
- package/src/superlocalmemory/hooks/hook_handlers.py +1 -1
- package/src/superlocalmemory/hooks/ide_connector.py +1 -1
- package/src/superlocalmemory/hooks/rules_engine.py +1 -1
- package/src/superlocalmemory/infra/__init__.py +1 -1
- package/src/superlocalmemory/infra/auth_middleware.py +1 -1
- package/src/superlocalmemory/infra/backup.py +1 -1
- package/src/superlocalmemory/infra/cache_manager.py +1 -1
- package/src/superlocalmemory/infra/event_bus.py +1 -1
- package/src/superlocalmemory/infra/heartbeat_monitor.py +1 -1
- package/src/superlocalmemory/infra/pid_manager.py +1 -1
- package/src/superlocalmemory/infra/process_reaper.py +1 -1
- package/src/superlocalmemory/infra/rate_limiter.py +1 -1
- package/src/superlocalmemory/infra/webhook_dispatcher.py +1 -1
- package/src/superlocalmemory/learning/adaptive.py +1 -1
- package/src/superlocalmemory/learning/behavioral.py +1 -1
- package/src/superlocalmemory/learning/behavioral_listener.py +1 -1
- package/src/superlocalmemory/learning/bootstrap.py +1 -1
- package/src/superlocalmemory/learning/consolidation_quantization_worker.py +2 -2
- package/src/superlocalmemory/learning/consolidation_worker.py +1 -1
- package/src/superlocalmemory/learning/cross_project.py +1 -1
- package/src/superlocalmemory/learning/database.py +1 -1
- package/src/superlocalmemory/learning/engagement.py +1 -1
- package/src/superlocalmemory/learning/features.py +1 -1
- package/src/superlocalmemory/learning/feedback.py +1 -1
- package/src/superlocalmemory/learning/forgetting_scheduler.py +2 -2
- package/src/superlocalmemory/learning/outcomes.py +1 -1
- package/src/superlocalmemory/learning/project_context.py +1 -1
- package/src/superlocalmemory/learning/quantization_scheduler.py +2 -2
- package/src/superlocalmemory/learning/ranker.py +1 -1
- package/src/superlocalmemory/learning/signals.py +1 -1
- package/src/superlocalmemory/learning/source_quality.py +1 -1
- package/src/superlocalmemory/learning/workflows.py +1 -1
- package/src/superlocalmemory/llm/backbone.py +2 -2
- package/src/superlocalmemory/math/ebbinghaus.py +2 -2
- package/src/superlocalmemory/math/fisher.py +2 -2
- package/src/superlocalmemory/math/fisher_quantized.py +2 -2
- package/src/superlocalmemory/math/hopfield.py +2 -2
- package/src/superlocalmemory/math/langevin.py +2 -2
- package/src/superlocalmemory/math/polar_quant.py +2 -2
- package/src/superlocalmemory/math/qjl.py +2 -2
- package/src/superlocalmemory/math/sheaf.py +2 -2
- package/src/superlocalmemory/math/turbo_quant.py +2 -2
- package/src/superlocalmemory/mcp/resources.py +1 -1
- package/src/superlocalmemory/mcp/server.py +1 -1
- package/src/superlocalmemory/mcp/shared.py +1 -1
- package/src/superlocalmemory/mcp/tools.py +1 -1
- package/src/superlocalmemory/mcp/tools_active.py +1 -1
- package/src/superlocalmemory/mcp/tools_code_graph.py +1 -1
- package/src/superlocalmemory/mcp/tools_core.py +2 -2
- package/src/superlocalmemory/mcp/tools_v28.py +1 -1
- package/src/superlocalmemory/mcp/tools_v3.py +1 -1
- package/src/superlocalmemory/mcp/tools_v33.py +1 -1
- package/src/superlocalmemory/parameterization/__init__.py +1 -1
- package/src/superlocalmemory/parameterization/pattern_extractor.py +1 -1
- package/src/superlocalmemory/parameterization/pii_filter.py +1 -1
- package/src/superlocalmemory/parameterization/prompt_injector.py +1 -1
- package/src/superlocalmemory/parameterization/prompt_lifecycle.py +1 -1
- package/src/superlocalmemory/parameterization/soft_prompt_generator.py +1 -1
- package/src/superlocalmemory/retrieval/agentic.py +2 -2
- package/src/superlocalmemory/retrieval/ann_index.py +2 -2
- package/src/superlocalmemory/retrieval/bm25_channel.py +2 -2
- package/src/superlocalmemory/retrieval/bridge_discovery.py +2 -2
- package/src/superlocalmemory/retrieval/channel_registry.py +1 -1
- package/src/superlocalmemory/retrieval/engine.py +2 -2
- package/src/superlocalmemory/retrieval/entity_channel.py +2 -2
- package/src/superlocalmemory/retrieval/forgetting_filter.py +2 -2
- package/src/superlocalmemory/retrieval/fusion.py +2 -2
- package/src/superlocalmemory/retrieval/hopfield_channel.py +2 -2
- package/src/superlocalmemory/retrieval/profile_channel.py +2 -2
- package/src/superlocalmemory/retrieval/quantization_aware_search.py +2 -2
- package/src/superlocalmemory/retrieval/reranker.py +2 -2
- package/src/superlocalmemory/retrieval/semantic_channel.py +2 -2
- package/src/superlocalmemory/retrieval/spreading_activation.py +2 -2
- package/src/superlocalmemory/retrieval/strategy.py +2 -2
- package/src/superlocalmemory/retrieval/temporal_channel.py +2 -2
- package/src/superlocalmemory/retrieval/vector_store.py +2 -2
- package/src/superlocalmemory/server/api.py +1 -1
- package/src/superlocalmemory/server/routes/__init__.py +1 -1
- package/src/superlocalmemory/server/routes/agents.py +2 -2
- package/src/superlocalmemory/server/routes/backup.py +2 -2
- package/src/superlocalmemory/server/routes/behavioral.py +2 -2
- package/src/superlocalmemory/server/routes/compliance.py +2 -2
- package/src/superlocalmemory/server/routes/data_io.py +2 -2
- package/src/superlocalmemory/server/routes/events.py +2 -2
- package/src/superlocalmemory/server/routes/helpers.py +2 -2
- package/src/superlocalmemory/server/routes/learning.py +2 -2
- package/src/superlocalmemory/server/routes/lifecycle.py +2 -2
- package/src/superlocalmemory/server/routes/memories.py +2 -2
- package/src/superlocalmemory/server/routes/profiles.py +2 -2
- package/src/superlocalmemory/server/routes/stats.py +2 -2
- package/src/superlocalmemory/server/routes/v3_api.py +1 -1
- package/src/superlocalmemory/server/routes/ws.py +2 -2
- package/src/superlocalmemory/server/security_middleware.py +1 -1
- package/src/superlocalmemory/server/ui.py +1 -1
- package/src/superlocalmemory/storage/access_control.py +1 -1
- package/src/superlocalmemory/storage/access_log.py +2 -2
- package/src/superlocalmemory/storage/database.py +1 -1
- package/src/superlocalmemory/storage/embedding_migrator.py +1 -1
- package/src/superlocalmemory/storage/migration_v33.py +2 -2
- package/src/superlocalmemory/storage/migrations.py +1 -1
- package/src/superlocalmemory/storage/models.py +1 -1
- package/src/superlocalmemory/storage/quantized_store.py +2 -2
- package/src/superlocalmemory/storage/schema.py +1 -1
- package/src/superlocalmemory/storage/schema_code_graph.py +1 -1
- package/src/superlocalmemory/storage/schema_v32.py +1 -1
- package/src/superlocalmemory/storage/v2_migrator.py +1 -1
- package/src/superlocalmemory/trust/gate.py +1 -1
- package/src/superlocalmemory/trust/provenance.py +1 -1
- package/src/superlocalmemory/trust/scorer.py +1 -1
- package/src/superlocalmemory/trust/signals.py +1 -1
- package/src/superlocalmemory/ui/index.html +1 -1
- package/src/superlocalmemory/ui/js/behavioral.js +1 -1
- package/src/superlocalmemory/ui/js/compliance.js +1 -1
- package/src/superlocalmemory/ui/js/feedback.js +1 -1
- package/src/superlocalmemory/ui/js/graph-core.js +1 -1
- package/src/superlocalmemory/ui/js/graph-filters.js +1 -1
- package/src/superlocalmemory/ui/js/graph-interactions.js +1 -1
- package/src/superlocalmemory/ui/js/graph-ui.js +1 -1
- package/src/superlocalmemory/ui/js/learning.js +1 -1
- package/src/superlocalmemory/ui/js/lifecycle.js +1 -1
- package/ui/index.html +1 -1
- package/ui/js/behavioral.js +1 -1
- package/ui/js/compliance.js +1 -1
- package/ui/js/feedback.js +1 -1
- package/ui/js/graph-core.js +1 -1
- package/ui/js/graph-filters.js +1 -1
- package/ui/js/graph-interactions.js +1 -1
- package/ui/js/graph-ui.js +1 -1
- package/ui/js/learning.js +1 -1
- package/ui/js/lifecycle.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""Riemannian Langevin dynamics with persistence for memory lifecycle.
|
|
@@ -42,7 +42,7 @@ References:
|
|
|
42
42
|
Probability Letters, 91, 59--67.
|
|
43
43
|
|
|
44
44
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
45
|
-
License:
|
|
45
|
+
License: Elastic-2.0
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
48
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""PolarQuant embedding quantization.
|
|
@@ -26,7 +26,7 @@ References:
|
|
|
26
26
|
the classical compact groups.
|
|
27
27
|
|
|
28
28
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
29
|
-
License:
|
|
29
|
+
License: Elastic-2.0
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
32
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""QJL (Quantized Johnson-Lindenstrauss) 1-bit residual correction.
|
|
@@ -27,7 +27,7 @@ References:
|
|
|
27
27
|
- TurboQuant (ICLR 2026, arXiv 2504.19874).
|
|
28
28
|
|
|
29
29
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
30
|
-
License:
|
|
30
|
+
License: Elastic-2.0
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
33
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""Sheaf cohomology for contradiction detection at ENCODING time.
|
|
@@ -14,7 +14,7 @@ Severity = ||delta_0 f(e)|| / (||R_a emb_a|| + ||R_b emb_b||).
|
|
|
14
14
|
Refs: Curry 2014 (arXiv:1303.3255), Hansen & Ghrist 2019, Robinson 2020.
|
|
15
15
|
|
|
16
16
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
17
|
-
License:
|
|
17
|
+
License: Elastic-2.0
|
|
18
18
|
"""
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""TurboQuant embedding quantization (ICLR 2026).
|
|
@@ -9,7 +9,7 @@ D_mse <= sqrt(3*pi/2) / 4^b. No scipy (HR-SCIPY-01). 2-byte "TQ" prefix on
|
|
|
9
9
|
all BLOBs (HR-MIG-02). Bit-widths: 2, 4, 8 only (HR-3BIT-01).
|
|
10
10
|
|
|
11
11
|
References: TurboQuant (arXiv 2504.19874), PolarQuant (arXiv 2502.02617).
|
|
12
|
-
Part of Qualixar | Author: Varun Pratap Bhardwaj | License:
|
|
12
|
+
Part of Qualixar | Author: Varun Pratap Bhardwaj | License: Elastic-2.0
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — MCP Resources (6 resources).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — MCP Server.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""Shared MCP utilities — single source of truth for helpers used
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""Backward compatibility — tools are now split across sub-modules.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3.1 — Active Memory MCP Tools.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory v3.4 — CodeGraph MCP Tools
|
|
4
4
|
|
|
5
5
|
"""22 MCP tools for CodeGraph: 17 graph + 5 bridge.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Core MCP Tools (13 tools).
|
|
@@ -453,7 +453,7 @@ def register_core_tools(server, get_engine: Callable) -> None:
|
|
|
453
453
|
"product": "SuperLocalMemory V3",
|
|
454
454
|
"author": "Varun Pratap Bhardwaj",
|
|
455
455
|
"organization": "Qualixar",
|
|
456
|
-
"license": "
|
|
456
|
+
"license": "Elastic-2.0",
|
|
457
457
|
"urls": {
|
|
458
458
|
"product": "https://superlocalmemory.com",
|
|
459
459
|
"author": "https://varunpratap.com",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — V2.8 Ported MCP Tools (6 tools).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — V3-Only MCP Tools (5 tools).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3.3 — New MCP Tools (6 tools).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3.3
|
|
4
4
|
|
|
5
5
|
"""PatternExtractor — Mine patterns from 4 sources for soft prompt generation.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3.3
|
|
4
4
|
|
|
5
5
|
"""PII Filter — Stateless PII detection and redaction for soft prompts.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3.3
|
|
4
4
|
|
|
5
5
|
"""PromptInjector — Inject soft prompts into context with token budget.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3.3
|
|
4
4
|
|
|
5
5
|
"""PromptLifecycleManager — Ebbinghaus decay and effectiveness for soft prompts.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3.3
|
|
4
4
|
|
|
5
5
|
"""SoftPromptGenerator — Convert extracted patterns to text soft prompts.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — 2-Round Sufficiency Verification (EverMemOS Pattern).
|
|
@@ -15,7 +15,7 @@ Design decisions:
|
|
|
15
15
|
- Mode C: LLM sufficiency judgment with 3-way classification
|
|
16
16
|
|
|
17
17
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
18
|
-
License:
|
|
18
|
+
License: Elastic-2.0
|
|
19
19
|
"""
|
|
20
20
|
from __future__ import annotations
|
|
21
21
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Approximate Nearest Neighbor Index.
|
|
@@ -12,7 +12,7 @@ scale we target (up to 100K facts). At that scale, a single cosine
|
|
|
12
12
|
scan takes ~5ms on CPU which is well within our latency budget.
|
|
13
13
|
|
|
14
14
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
15
|
-
License:
|
|
15
|
+
License: Elastic-2.0
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — BM25 Keyword Search Channel.
|
|
@@ -12,7 +12,7 @@ the entire index. This version persists tokens to the DB via
|
|
|
12
12
|
store_bm25_tokens / get_all_bm25_tokens and cold-loads on init.
|
|
13
13
|
|
|
14
14
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
15
|
-
License:
|
|
15
|
+
License: Elastic-2.0
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Bridge Discovery + Spreading Activation.
|
|
@@ -22,7 +22,7 @@ Parameters:
|
|
|
22
22
|
- typed mu: entity=1.2, causal=1.3, semantic=0.8, temporal=0.9
|
|
23
23
|
|
|
24
24
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
25
|
-
License:
|
|
25
|
+
License: Elastic-2.0
|
|
26
26
|
"""
|
|
27
27
|
from __future__ import annotations
|
|
28
28
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Retrieval Engine (6-Channel Orchestrator).
|
|
@@ -9,7 +9,7 @@ Channels: semantic, BM25, entity_graph, temporal, spreading_activation, hopfield
|
|
|
9
9
|
Replaces V1's broken 10-channel triple-re-fusion pipeline.
|
|
10
10
|
|
|
11
11
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
12
|
-
License:
|
|
12
|
+
License: Elastic-2.0
|
|
13
13
|
"""
|
|
14
14
|
from __future__ import annotations
|
|
15
15
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Entity Graph Channel with Spreading Activation.
|
|
@@ -8,7 +8,7 @@ SA-RAG pattern: entities from query -> canonical lookup -> graph traversal
|
|
|
8
8
|
with decay. Handles BOTH uppercase and lowercase entity mentions.
|
|
9
9
|
|
|
10
10
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
11
|
-
License:
|
|
11
|
+
License: Elastic-2.0
|
|
12
12
|
"""
|
|
13
13
|
from __future__ import annotations
|
|
14
14
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""Forgetting filter for retrieval pipeline.
|
|
@@ -15,7 +15,7 @@ signature: (all_results, profile_id, context) -> filtered_results.
|
|
|
15
15
|
HR-06: When config.enabled=False, returns results unchanged.
|
|
16
16
|
|
|
17
17
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
18
|
-
License:
|
|
18
|
+
License: Elastic-2.0
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
21
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Weighted Reciprocal Rank Fusion.
|
|
@@ -8,7 +8,7 @@ Single-pass RRF with k=15 for sharp rank discrimination on small candidate pools
|
|
|
8
8
|
V1 had triple re-fusion which destroyed rankings — fixed in V2.
|
|
9
9
|
|
|
10
10
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
11
|
-
License:
|
|
11
|
+
License: Elastic-2.0
|
|
12
12
|
"""
|
|
13
13
|
from __future__ import annotations
|
|
14
14
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3.3 -- Hopfield Associative Memory (6th Retrieval Channel).
|
|
@@ -19,7 +19,7 @@ Key features:
|
|
|
19
19
|
- Returns [] on any error (HR-06)
|
|
20
20
|
|
|
21
21
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
22
|
-
License:
|
|
22
|
+
License: Elastic-2.0
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Profile Channel (Entity-Profile Retrieval).
|
|
@@ -14,7 +14,7 @@ retrieval pool with high scores.
|
|
|
14
14
|
Competitor reference: EverMemOS profile synthesis (~+15-20% SH).
|
|
15
15
|
|
|
16
16
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
17
|
-
License:
|
|
17
|
+
License: Elastic-2.0
|
|
18
18
|
"""
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""Three-tier mixed-precision search.
|
|
@@ -16,7 +16,7 @@ Applies precision-dependent score penalties:
|
|
|
16
16
|
- polar: config.polar_search_penalty (default 0.95x)
|
|
17
17
|
|
|
18
18
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
19
|
-
License:
|
|
19
|
+
License: Elastic-2.0
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Cross-Encoder Reranker (Subprocess-Isolated).
|
|
@@ -11,7 +11,7 @@ at ~60 MB. Same isolation pattern as EmbeddingService.
|
|
|
11
11
|
The worker subprocess auto-kills after 2 minutes idle.
|
|
12
12
|
|
|
13
13
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
14
|
-
License:
|
|
14
|
+
License: Elastic-2.0
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Semantic Retrieval Channel.
|
|
@@ -13,7 +13,7 @@ where all variances are identical, Fisher distance degenerates to a
|
|
|
13
13
|
monotonic transform of Euclidean distance — same ranking as cosine.
|
|
14
14
|
|
|
15
15
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
16
|
-
License:
|
|
16
|
+
License: Elastic-2.0
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""SYNAPSE spreading activation -- 5th retrieval channel.
|
|
@@ -12,7 +12,7 @@ Reads BOTH graph_edges + association_edges via UNION query (Rule 13).
|
|
|
12
12
|
Registered as 5th channel via ChannelRegistry (needs_embedding=True).
|
|
13
13
|
|
|
14
14
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
15
|
-
License:
|
|
15
|
+
License: Elastic-2.0
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Query-Adaptive Strategy.
|
|
@@ -8,7 +8,7 @@ Classifies query type and returns per-type channel weights.
|
|
|
8
8
|
V1 had this code (strategy_learner.py) but never wired it in.
|
|
9
9
|
|
|
10
10
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
11
|
-
License:
|
|
11
|
+
License: Elastic-2.0
|
|
12
12
|
"""
|
|
13
13
|
from __future__ import annotations
|
|
14
14
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Temporal Retrieval Channel (3-Date Model).
|
|
@@ -8,7 +8,7 @@ Searches by referenced_date (NOT just created_at like V1).
|
|
|
8
8
|
Returns empty when query has no temporal signal (no recency noise).
|
|
9
9
|
|
|
10
10
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
11
|
-
License:
|
|
11
|
+
License: Elastic-2.0
|
|
12
12
|
"""
|
|
13
13
|
from __future__ import annotations
|
|
14
14
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""VectorStore -- sqlite-vec backed KNN search with profile isolation.
|
|
@@ -9,7 +9,7 @@ Falls back to ANNIndex if sqlite-vec is unavailable (Rule 03).
|
|
|
9
9
|
Implements ANNSearchable protocol for GraphBuilder compatibility (Rule 07).
|
|
10
10
|
|
|
11
11
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
12
|
-
License:
|
|
12
|
+
License: Elastic-2.0
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
from __future__ import annotations
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
3
|
-
# Licensed under the
|
|
3
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
4
4
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
5
5
|
"""
|
|
6
6
|
SuperLocalMemory V3 - FastAPI API Server
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
# SuperLocalMemory V3 - API Routes Package
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Agent Registry + Trust Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/agents, /api/agents/stats, /api/trust/stats, /api/trust/signals/{agent_id}
|
|
8
8
|
Uses V3 TrustScorer and core.registry.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Backup Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/backup/status, /api/backup/create, /api/backup/configure, /api/backup/list
|
|
8
8
|
Uses V3 infra.backup.BackupManager.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Behavioral Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/behavioral/status, /api/behavioral/report-outcome
|
|
8
8
|
Uses V3 learning.behavioral.BehavioralPatternStore and learning.outcomes.OutcomeTracker.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Compliance Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/compliance/status, /api/compliance/audit,
|
|
8
8
|
/api/compliance/retention-policy
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Import/Export Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/export, /api/import
|
|
8
8
|
"""
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Event Bus Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /events/stream (SSE), /api/events, /api/events/stats
|
|
8
8
|
Uses V3 infra.event_bus.EventBus.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Route Helpers
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Shared utilities for all route modules: DB connection, dict factory,
|
|
8
8
|
profile helper, validation, Pydantic models, config paths.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Learning Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/learning/status, /api/feedback, /api/feedback/dwell,
|
|
8
8
|
/api/feedback/stats, /api/learning/backup, /api/learning/reset,
|