kernex-pipelines 0.4.2

Topology-driven multi-agent pipelines with corrective loops for Kernex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Topology-driven multi-agent execution engine.
#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]
//!
//! 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.

mod topology;

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