proserpina 0.2.1

Multi-agent critique and cross-examination pipeline for documents requiring intellectual rigor — provider-agnostic interaction-graph engine with pluggable LLM backends
Documentation
// Copyright (C) 2026 Industrial Algebra
// SPDX-License-Identifier: Apache-2.0

//! The `proserpina` command-line interface.
//!
//! The CLI is a thin wrapper over testable library entry points, so the
//! critique logic can be exercised without spawning a process:
//! - [`run_critique_echo`] — the offline echo path (always available under
//!   `cli`).
//! - [`run_critique`] — the multi-provider roster path (requires `cli` +
//!   `backend-http`).
//!
//! The binary (`src/main.rs`) parses arguments, reads the input file, calls
//! the appropriate entry point, and writes the report.

pub mod critique;

pub use critique::run_critique_echo;

#[cfg(feature = "backend-http")]
pub use critique::{plan_critique, run_critique};