mold-ai-inference 0.13.1

Candle-based inference engine for mold — FLUX, SDXL, SD3.5, Z-Image diffusion models
Documentation
pub mod audio_vae;
pub mod patchifiers;
pub mod rope;
pub mod shapes;
pub mod transformer;
pub mod upsampler;
pub mod video_transformer;
pub mod video_vae;
pub mod vocoder;

#[allow(unused_imports)]
pub use audio_vae::{
    AudioCausalityAxis, AudioNormType, DecodedAudio, Ltx2AudioDecoder, Ltx2AudioDecoderConfig,
    Ltx2AudioEncoder, Ltx2AudioEncoderConfig,
};
#[allow(unused_imports)]
pub use patchifiers::{AudioPatchifier, VideoLatentPatchifier};
#[allow(unused_imports)]
pub use rope::{
    audio_temporal_positions, cross_modal_temporal_positions, get_pixel_coords, midpoint_positions,
    scale_video_time_to_seconds, video_token_positions, LtxRopeType,
};
#[allow(unused_imports)]
pub use shapes::{AudioLatentShape, SpatioTemporalScaleFactors, VideoLatentShape, VideoPixelShape};
#[allow(unused_imports)]
pub(crate) use upsampler::{
    derive_stage1_render_shape, spatially_upsample_frames, temporally_upsample_frames_x2,
    Stage1RenderShape,
};
#[allow(unused_imports)]
pub use vocoder::{Ltx2BweConfig, Ltx2GeneratorConfig, Ltx2VocoderConfig, Ltx2VocoderWithBwe};