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
Workflow - V2V General Purpose for most IC-Loras (colorization, clean plate, water sim, black magic, deblur, cinemagraph, day-to-night etc....)
-
V2V General Purpose Workflow for most IC-Loras
Uploaded a general purpose workflow that works with most all V2V IC-Lora that does not require some special node.
I will add some example videos to this post to show what some of the loras can do, but feel free to look at each link below, many examples there..
These include (but not limited to..):
- Water Simulation: https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Water-Simulation
- Deblur: https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Deblur
- Colorization: https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Colorization
- Cinemagraph: https://huggingface.co/Lightricks/LTX-2.3-22b-LoRA-Cinemagraph
- Day to Night : https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Day-To-Night
- Black Magic (night to day) : https://huggingface.co/FuzzPuppy/LTX-2.3-Black-Magic-LoRA
- Clean Plate (remove all moving objects) : https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Clean-Plate
- Cross-Eyed: https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Cross-Eyed
- Instant-Shave: https://huggingface.co/Lightricks/LTX-2.3-22b-IC-LoRA-Instant-Shave
(will update the list with more loras that will work, those were just some in top of my head that works with a general V2V workflow .. .)
Important Some of the IC-Loras require specific trigger word or syntax in the prompt, so look at each repro for "how to prompt"
Being a general V2V workflow it can also work for other V2V tasks, but since it has an IC-Lora loader in this workflow, I will probably upload a general V2V for standard V2V with or without regular loras.
You can find the workflow here:
https://huggingface.co/RuneXX/LTX-2.3-Workflows/tree/main/Video-2-Video (V2V General Purpose for most IC-Loras)