nexo-driver-loop 0.1.6

Goal orchestrator + LlmDecider + Unix socket bridge for the nexo-rs driver subsystem. Phase 67.4.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Phase 87.1 — LLM-as-judge AcceptanceEvaluator implementations.
//!
//! Sister to `crate::acceptance` (the default rules-based
//! evaluator that handles `ShellCommand` / `FileMatches` /
//! `Custom`). This module hosts evaluators that delegate the
//! verdict to an LLM rather than to a typed rule.

pub mod llm_judge;

pub use llm_judge::{
    parse_judge_response, JudgeBackend, JudgeError, JudgeResponse, JudgeVerdict, LlmJudgeEvaluator,
};