Merge branch 'main' into pc/unify-apis

This commit is contained in:
Prince Canuma
2026-03-18 17:14:17 +01:00
48 changed files with 14133 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
from mlx_video.models.ltx_2 import LTXModel, LTXModelConfig
from mlx_video.models.wan import WanModel, WanModelConfig
# Audio VAE components
from mlx_video.models.ltx_2.audio_vae import (
@@ -29,6 +30,7 @@ __all__ = [
# Models
"LTXModel",
"LTXModelConfig",
# Audio VAE
"AudioDecoder",
"AudioEncoder",
@@ -45,4 +47,7 @@ __all__ = [
"load_safetensors",
"load_config",
"save_weights",
# Wan Models
"WanModel",
"WanModelConfig",
]