| 1 | """Latent upsampler model components.""" |
| 2 | |
| 3 | from ltx_core.model.upsampler.model import LatentUpsampler, upsample_video |
| 4 | from ltx_core.model.upsampler.model_configurator import LatentUpsamplerConfigurator |
| 5 | |
| 6 | __all__ = [ |
| 7 | "LatentUpsampler", |
| 8 | "LatentUpsamplerConfigurator", |
| 9 | "upsample_video", |
| 10 | ] |
| 11 |