datasynth_runtime/
lib.rs

1//! # synth-runtime
2//!
3//! Runtime orchestration, parallel execution, and memory management.
4//!
5//! This crate provides two orchestrators:
6//! - `GenerationOrchestrator`: Basic orchestrator for CoA and journal entries
7//! - `EnhancedOrchestrator`: Full-featured orchestrator with all phases
8
9pub mod enhanced_orchestrator;
10pub mod orchestrator;
11
12pub use enhanced_orchestrator::*;
13pub use orchestrator::*;