refactor: replace Obsidian projector with standalone service (ppatlabs/obsidian)

This commit is contained in:
Story Crater Bot
2026-08-27 21:35:07 -07:00
parent 83b9dcf5f9
commit 0eecca815b
11 changed files with 1050 additions and 804 deletions
-2
View File
@@ -2,12 +2,10 @@ pub mod event_log;
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, ChunkL0, MemoryL1, MemoryL2};
pub use rebuild::{RebuildEngine, RebuildOpts, RebuildStats};
pub use pg_repo::{PgRepo, MemoryNode, VectorKind, Level, ScoredNode, Scope, SignatureHit};
pub use obsidian::{ObsidianProjector, ProjectorOpts, MemoryRecord, MemoryParent};
pub use schema::init_schema;