memvid_cli/enrich/
mod.rs

1//! Enrichment engines for the CLI.
2//!
3//! This module provides CLI-specific enrichment engines, including the
4//! LLM-based engine that uses local Phi models.
5
6#[cfg(feature = "llama-cpp")]
7pub mod llm;
8pub mod openai;
9
10#[cfg(feature = "candle-llm")]
11pub mod candle_phi;
12
13#[cfg(feature = "llama-cpp")]
14pub use llm::LlmEngine;
15pub use openai::OpenAiEngine;
16
17#[cfg(feature = "candle-llm")]
18pub use candle_phi::CandlePhiEngine;