prodigy 0.4.4

Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Execution coordination for MapReduce operations
//!
//! This module orchestrates the execution of MapReduce jobs,
//! coordinating between different phases and managing resources.

pub mod command_executor;
pub mod executor;
pub mod orchestrator;
pub mod scheduler;

#[cfg(test)]
mod executor_tests;

// Re-export main types
pub use command_executor::CommandExecutor;
pub use executor::MapReduceCoordinator;
pub use orchestrator::PhaseOrchestrator;
pub use scheduler::{SchedulingStrategy, WorkScheduler};