feat(core): implement full memory pipeline (#11)

This commit is contained in:
2026-08-24 01:37:16 +00:00
parent 46d382e6cc
commit af6f22217d
19 changed files with 2235 additions and 259 deletions
+3 -1
View File
@@ -3,9 +3,11 @@ pub mod pgvector;
pub mod rebuild;
pub mod pg_repo;
pub mod obsidian;
pub mod schema;
pub use event_log::{EventRecord, LogWriter};
pub use pgvector::{VectorRecord, VectorStore};
pub use pgvector::{VectorRecord, VectorStore, ChunkL0, MemoryL1, MemoryL2};
pub use rebuild::RebuildState;
pub use pg_repo::{PgRepo, MemoryNode, VectorKind, Level, ScoredNode};
pub use obsidian::ObsidianProjector;
pub use schema::init_schema;