45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
"""nexus.mnemosyne — The Living Holographic Archive.
|
|
|
|
Phase 1: Foundation — core archive, entry model, holographic linker,
|
|
ingestion pipeline, and CLI.
|
|
|
|
Builds on MemPalace vector memory to create interconnected meaning:
|
|
entries auto-reference related entries via semantic similarity,
|
|
forming a living archive that surfaces relevant context autonomously.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from nexus.mnemosyne.archive import MnemosyneArchive
|
|
from nexus.mnemosyne.entry import ArchiveEntry
|
|
from nexus.mnemosyne.linker import HolographicLinker
|
|
from nexus.mnemosyne.ingest import ingest_from_mempalace, ingest_event
|
|
from nexus.mnemosyne.embeddings import (
|
|
EmbeddingBackend,
|
|
OllamaEmbeddingBackend,
|
|
TfidfEmbeddingBackend,
|
|
get_embedding_backend,
|
|
)
|
|
from nexus.mnemosyne.snapshot import (
|
|
snapshot_create,
|
|
snapshot_list,
|
|
snapshot_restore,
|
|
snapshot_diff,
|
|
)
|
|
|
|
__all__ = [
|
|
"MnemosyneArchive",
|
|
"ArchiveEntry",
|
|
"HolographicLinker",
|
|
"ingest_from_mempalace",
|
|
"ingest_event",
|
|
"EmbeddingBackend",
|
|
"OllamaEmbeddingBackend",
|
|
"TfidfEmbeddingBackend",
|
|
"get_embedding_backend",
|
|
"snapshot_create",
|
|
"snapshot_list",
|
|
"snapshot_restore",
|
|
"snapshot_diff",
|
|
]
|