ospipe 0.1.0

OSpipe: RuVector-enhanced personal AI memory system integrating with Screenpipe
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Ingestion pipeline with deduplication.
//!
//! The pipeline receives captured frames, passes them through the safety
//! gate, checks for duplicates, generates embeddings, and stores the
//! results in the vector store.

pub mod dedup;
pub mod ingestion;

pub use dedup::FrameDeduplicator;
pub use ingestion::{IngestResult, IngestionPipeline, PipelineStats};