vex_runtime/lib.rs
1//! # VEX Runtime
2//!
3//! Tokio-based agent orchestration and lifecycle management.
4
5pub mod audit;
6pub mod executor;
7pub mod gate;
8pub mod orchestrator;
9
10pub use executor::{AgentExecutor, ExecutorConfig};
11
12pub use gate::{ChoraGate, Gate, GenericGateMock, HttpGate, TitanGate};
13pub use orchestrator::{Orchestrator, OrchestratorConfig};