//! DeepSeek-OCR vision-language OCR model.
//!
//! Implements the DeepSeek-OCR architecture combining SAM vision encoder,
//! ViT or Qwen2 vision transformer, CLIP projection, and language decoder
//! for multimodal optical character recognition.
//!
//! # Feature Flag
//!
//! This module is only available with the `deepseek-ocr` feature enabled.
pub use DeepseekOCRConfig;
pub use DeepseekOCREngine;
pub use DeepseekOCRModel;
pub use DeepseekOCRProcessor;