Skip to content

Commit c2cd3b9

Browse files
authored
fix(gallery/ltx-2.3): add vae_decode_only:false for i2v / flf2v (#9987)
LTX-2.3 i2v inference fails inside generate_video with: [ERROR] LTXAV image conditioning requires VAE encoder weights; create the context with vae_decode_only=false Without vae_decode_only:false in the options block, gosd.cpp creates the sd_ctx with VAE encoder weights freed, so latent encoding of the init_image is impossible. Adding the option mirrors what we already do for Wan i2v entries. Affects all six LTX-2.3 entries (dev/distilled × UD-Q4_K_M, Q4_K_M, Q8_0). T2V wasn't impacted by the missing option since it has no init image to encode, which is why the T2V smoke earlier passed. Assisted-by: Claude:claude-opus-4-7
1 parent 9ff270e commit c2cd3b9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

gallery/index.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30845,6 +30845,7 @@
3084530845
model: ltx-2.3-22b-dev-UD-Q4_K_M.gguf
3084630846
options:
3084730847
- diffusion_model
30848+
- "vae_decode_only:false"
3084830849
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3084930850
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3085030851
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30877,6 +30878,7 @@
3087730878
model: ltx-2.3-22b-dev-Q4_K_M.gguf
3087830879
options:
3087930880
- diffusion_model
30881+
- "vae_decode_only:false"
3088030882
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3088130883
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3088230884
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30909,6 +30911,7 @@
3090930911
model: ltx-2.3-22b-dev-Q8_0.gguf
3091030912
options:
3091130913
- diffusion_model
30914+
- "vae_decode_only:false"
3091230915
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3091330916
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3091430917
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30969,6 +30972,7 @@
3096930972
model: ltx-2.3-22b-distilled-UD-Q4_K_M.gguf
3097030973
options:
3097130974
- diffusion_model
30975+
- "vae_decode_only:false"
3097230976
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3097330977
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3097430978
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors
@@ -31000,6 +31004,7 @@
3100031004
model: ltx-2.3-22b-distilled-Q4_K_M.gguf
3100131005
options:
3100231006
- diffusion_model
31007+
- "vae_decode_only:false"
3100331008
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3100431009
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3100531010
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors
@@ -31031,6 +31036,7 @@
3103131036
model: ltx-2.3-22b-distilled-Q8_0.gguf
3103231037
options:
3103331038
- diffusion_model
31039+
- "vae_decode_only:false"
3103431040
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3103531041
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3103631042
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors

0 commit comments

Comments
 (0)