1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! LLM-assisted review — explicitly opt-in. //! //! TODO(phase-4): wire `LlmAnalyzer` into `zerum check --with-llm`. #![allow(dead_code)] use crate::core::Issue; use anyhow::Result; use std::path::Path; pub struct LlmAnalyzer; impl LlmAnalyzer { pub fn run(_root: &Path) -> Result<Vec<Issue>> { Ok(Vec::new()) } }