memvid-rs 1.0.1

High-performance QR code video encoding for text storage and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Text processing and chunking functionality for memvid-rs
//!
//! This module provides text chunking algorithms, document format support,
//! and metadata management for text content.

pub mod chunking;
pub mod pdf;

// Re-export main types and functions
pub use chunking::{ChunkMetadata, ChunkingStrategy, TextChunker};
pub use pdf::PdfProcessor;