memvid-rs 1.2.0

High-performance QR code video encoding for text storage and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! API layer for memvid-rs
//!
//! This module provides the main public API interfaces for encoding and retrieving
//! text data from QR code videos.

pub mod chat;
pub mod encoder;
pub mod retriever;

// Re-export main API types
pub use chat::{chat_with_memory, chat_with_memory_config, quick_chat, quick_chat_with_config};
pub use encoder::MemvidEncoder;
pub use retriever::{MemvidRetriever, SearchResult};