Skip to main content

kernex_pipelines/
lib.rs

1#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]
2
3//! Topology-driven multi-agent execution engine.
4//!
5//! Provides TOML-defined topology configuration for sequential and parallel
6//! agent chains with file-mediated handoffs, bounded corrective loops,
7//! pre/post validation, and model tier selection.
8
9pub mod error;
10mod topology;
11
12pub use error::PipelineError;
13pub use topology::{
14    load_topology, validate_agent_name, validate_topology_name, LoadedTopology, Phase, PhaseGroup,
15    PhaseTier, PhaseType, RetryConfig, Topology, TopologyMeta, ValidationConfig, ValidationType,
16};