cortex-ai 0.1.9

An asynchronous flow-based processing framework for building flexible data pipelines with conditional branching and error handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod composer;
pub mod error;
pub mod flow;

// Re-export main types for easier access
pub use composer::Flow;
pub use error::FlowError;
pub use flow::component::FlowComponent;
pub use flow::condition::Condition;
pub use flow::processor::Processor;
pub use flow::source::Source;
pub use flow::stage::Stage;
pub use flow::types::{ConditionFuture, FlowFuture};