mirror of
https://github.com/ruvnet/RuView
synced 2026-07-30 18:41:42 +00:00
12 lines
363 B
Rust
12 lines
363 B
Rust
//! 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};
|