localmem 0.1.1__py3-none-any.whl

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.
localmem/__init__.py ADDED
@@ -0,0 +1,32 @@
1
+ """localmem — local-first multi-agent memory MCP server.
2
+
3
+ Hybrid (dense + sparse) vector search via Qdrant, behavioral pattern graphs
4
+ via NetworkX, temporal knowledge triples and per-wing taxonomy in SQLite,
5
+ plus lifecycle management (consolidation + archive) — all served over MCP/SSE
6
+ with an optional read-only browser dashboard.
7
+ """
8
+
9
+ __version__ = "0.1.1"
10
+
11
+ from .config import LocalmemConfig, load_config
12
+ from .contradiction import detect_and_resolve
13
+ from .embedder import Embedder
14
+ from .graph_store import GraphStore
15
+ from .metadata_store import MetadataStore
16
+ from .models import (
17
+ BehavioralObservation,
18
+ ContradictionEvent,
19
+ DiaryEntry,
20
+ Entry,
21
+ EntryType,
22
+ GraphQuery,
23
+ InferenceChain,
24
+ RoutingDecision,
25
+ SearchQuery,
26
+ SearchResult,
27
+ Triple,
28
+ WakeContext,
29
+ )
30
+ from .taxonomy import Taxonomy
31
+ from .vector_store import VectorStore
32
+ from .wake_up import WakeUp
localmem/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Allow `python -m localmem ...` to invoke the CLI."""
2
+
3
+ from .cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1 @@
1
+ """LOCALMEM REST+WS dashboard sidecar."""