Skip to content

Commit 9ff270e

Browse files
authored
fix(gallery/ltx-2.3): add diffusion_model flag to all variants (#9986)
LTX-2.3 entries (dev / distilled, UD-Q4_K_M / Q4_K_M / Q8_0) were missing the `diffusion_model` option in their overrides. Without it, gosd.cpp routes the main GGUF through the regular `model_path` code path in sd.cpp, which doesn't apply the `model.diffusion_model.` tensor prefix. sd.cpp's LTX-2.3 architecture detection (`VERSION_LTXAV`) in get_sd_version checks for prefixed tensor names — without the prefix, detection fails and load_model returns "could not load model". This is the same bug we hit for Wan when the option was missing. Adding `- diffusion_model` to all six LTX-2.3 entries' option blocks makes load_model take the diffusion_model_path branch so detection succeeds. Assisted-by: Claude:claude-opus-4-7
1 parent 8d6548c commit 9ff270e

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
@@ -30844,6 +30844,7 @@
3084430844
parameters:
3084530845
model: ltx-2.3-22b-dev-UD-Q4_K_M.gguf
3084630846
options:
30847+
- diffusion_model
3084730848
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3084830849
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3084930850
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30875,6 +30876,7 @@
3087530876
parameters:
3087630877
model: ltx-2.3-22b-dev-Q4_K_M.gguf
3087730878
options:
30879+
- diffusion_model
3087830880
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3087930881
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3088030882
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30906,6 +30908,7 @@
3090630908
parameters:
3090730909
model: ltx-2.3-22b-dev-Q8_0.gguf
3090830910
options:
30911+
- diffusion_model
3090930912
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3091030913
- vae_path:ltx-2.3-22b-dev_video_vae.safetensors
3091130914
- audio_vae_path:ltx-2.3-22b-dev_audio_vae.safetensors
@@ -30965,6 +30968,7 @@
3096530968
parameters:
3096630969
model: ltx-2.3-22b-distilled-UD-Q4_K_M.gguf
3096730970
options:
30971+
- diffusion_model
3096830972
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3096930973
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3097030974
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors
@@ -30995,6 +30999,7 @@
3099530999
parameters:
3099631000
model: ltx-2.3-22b-distilled-Q4_K_M.gguf
3099731001
options:
31002+
- diffusion_model
3099831003
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3099931004
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3100031005
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors
@@ -31025,6 +31030,7 @@
3102531030
parameters:
3102631031
model: ltx-2.3-22b-distilled-Q8_0.gguf
3102731032
options:
31033+
- diffusion_model
3102831034
- llm_path:gemma-3-12b-it-qat-UD-Q4_K_XL.gguf
3102931035
- vae_path:ltx-2.3-22b-distilled_video_vae.safetensors
3103031036
- audio_vae_path:ltx-2.3-22b-distilled_audio_vae.safetensors

0 commit comments

Comments
 (0)