sniff-cli 0.1.2

An exhaustive LLM-backed slop finder for codebases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::sync::Arc;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ReviewProgress {
    Started { label: String },
    RetryingEvidence { label: String },
    Completed,
}

pub type ReviewProgressCallback = Arc<dyn Fn(ReviewProgress) + Send + Sync>;

#[path = "analyzer_engine.rs"]
mod core;

pub use core::{Analyzer, analyze, analyze_with_client};