| from __future__ import annotations | |
| from .dememwm.algorithm import MemoryDiTMixin | |
| from .df_video import BaseVideoDiTMinecraft | |
| class DeMemWMMinecraft(MemoryDiTMixin, BaseVideoDiTMinecraft): | |
| """Standalone DeMemWM / Memory-DiT algorithm. | |
| Reuses the base video-DiT VAE/diffusion/training infrastructure, | |
| but owns memory construction/injection. Does not route through the legacy memory method. | |
| """ | |
| pass | |
| DeMemWMMemoryDiTMinecraft = DeMemWMMinecraft | |