Instructions to use RuneXX/LTX-2.3-Workflows with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LTX.io
How to use RuneXX/LTX-2.3-Workflows with LTX.io:
# Install the LTX-2 pipelines git clone https://github.com/Lightricks/LTX-2.git cd LTX-2 uv sync --frozen
# Download the weights from this repo, plus the Gemma text encoder hf download RuneXX/LTX-2.3-Workflows --local-dir models/LTX-2.3-Workflows hf download google/gemma-3-12b-it-qat-q4_0-unquantized --local-dir models/gemma-3-12b
# Fast pipeline (distilled model, no distilled LoRA needed) uv run python -m ltx_pipelines.distilled \ --distilled-checkpoint-path models/LTX-2.3-Workflows/<distilled-checkpoint>.safetensors \ --spatial-upsampler-path models/LTX-2.3-Workflows/<spatial-upsampler>.safetensors \ --gemma-root models/gemma-3-12b \ --prompt "A beautiful sunset over the ocean" \ --output-path output.mp4 # For image-to-video, add: --image path/to/image.jpg 0 0.8# HQ pipeline (two-stage, higher quality) uv run python -m ltx_pipelines.ti2vid_two_stages_hq \ --checkpoint-path models/LTX-2.3-Workflows/<checkpoint>.safetensors \ --distilled-lora models/LTX-2.3-Workflows/<distilled-lora>.safetensors 0.8 \ --spatial-upsampler-path models/LTX-2.3-Workflows/<spatial-upsampler>.safetensors \ --gemma-root models/gemma-3-12b \ --prompt "A beautiful sunset over the ocean" \ --output-path output.mp4 # For image-to-video, add: --image path/to/image.jpg 0 0.8 - Notebooks
- Google Colab
- Kaggle
JoyAI Echo Surgical Merge
This person seems to have improved/fixed JoyAI Echo (based on LTX 2.3) by improving character and voice consistency between scenes. Supposedly this is thus far the best solution for longform single-prompt multi-shot video generation.
Main Link: https://huggingface.co/joeygambino/joyai-echo-ltx23-echoVid-ltxAud-surgical
The person's entire huggingface has offshoot projects directly related to this.
I was just coming here to post this. I've tested his INT8 and it's surprisingly good at character and scene consistency with only a single sentence repeated. It's honestly better than anything else I've played with thus far.
He's still got a lot to work out in terms of nodes and workflows to make the experience smoother for the average user. Hoping RuneXX could help him on some of that.
Just started to play around with it as well. Its very resource heavy currently the nodes, hopefully some improvements there to come.
But will try figure out some way to use it all easily ;- )