kernex-pipelines 0.10.0

Topology-driven multi-agent pipelines with corrective loops for Kernex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]

//! Topology-driven multi-agent execution engine.
//!
//! Provides TOML-defined topology configuration for sequential and parallel
//! agent chains with file-mediated handoffs, bounded corrective loops,
//! pre/post validation, and model tier selection.

pub mod error;
mod topology;

pub use error::PipelineError;
pub use topology::{
    load_topology, validate_agent_name, validate_topology_name, LoadedTopology, Phase, PhaseGroup,
    PhaseTier, PhaseType, RetryConfig, Topology, TopologyMeta, ValidationConfig, ValidationType,
};