daedalus-engine 0.1.1

High-level engine facade for planning and running Daedalus graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Engine: library-first host that wires registry -> planner -> runtime.
//! No CLI surface; configuration comes from code or environment helpers.

mod config;
#[cfg(feature = "config-env")]
pub mod diagnostics;
mod engine;
mod error;

pub use config::{EngineConfig, GpuBackend, RuntimeMode};
pub use daedalus_runtime::MetricsLevel;
pub use engine::{Engine, RunResult};
pub use error::EngineError;