mold-ai-inference 0.2.0

Candle-based inference engine for mold — FLUX, SDXL, SD3.5, Z-Image diffusion models
Documentation
mod cache;
pub mod controlnet;
pub mod device;
mod encoders;
pub mod engine;
pub mod error;
mod factory;
pub mod flux;
pub mod flux2;
mod image;
pub mod img_utils;
pub mod model_registry;
pub mod progress;
pub mod qwen_image;
pub mod scheduler;
pub mod sd15;
pub mod sd3;
pub mod sdxl;
pub mod wuerstchen;
pub mod zimage;

pub use engine::{InferenceEngine, LoadStrategy};
pub use error::InferenceError;
pub use factory::create_engine;
pub use flux::FluxEngine;
pub use flux2::Flux2Engine;
pub use model_registry::known_models;
pub use progress::ProgressEvent;
pub use qwen_image::QwenImageEngine;
pub use sd15::SD15Engine;
pub use sd3::SD3Engine;
pub use sdxl::SDXLEngine;
pub use wuerstchen::WuerstchenEngine;
pub use zimage::ZImageEngine;