nexo_driver_loop/evaluators/mod.rs
1//! LLM-as-judge AcceptanceEvaluator implementations.
2//!
3//! Sister to `crate::acceptance` (the default rules-based
4//! evaluator that handles `ShellCommand` / `FileMatches` /
5//! `Custom`). This module hosts evaluators that delegate the
6//! verdict to an LLM rather than to a typed rule.
7
8pub mod llm_judge;
9
10pub use llm_judge::{
11 parse_judge_response, JudgeBackend, JudgeError, JudgeResponse, JudgeVerdict, LlmJudgeEvaluator,
12};