Co-authored-by: Alexander Whitestone <alexander@alexanderwhitestone.com> Co-committed-by: Alexander Whitestone <alexander@alexanderwhitestone.com>
25 lines
757 B
Python
25 lines
757 B
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
|
|
|
|
__all__ = [
|
|
"MnemosyneArchive",
|
|
"ArchiveEntry",
|
|
"HolographicLinker",
|
|
"ingest_from_mempalace",
|
|
"ingest_event",
|
|
]
|