fix(gallery): correct Qwen3.5 typo in qwen3.5-27b-claude-4.6 model override (closes #9362)#9580
Merged
Merged
Conversation
…erride (closes mudler#9362) The overrides.parameters.model field referenced 'Qwen3.-27B-Claude-...' (missing the '5'), so model loads failed because the configured filename did not match the file actually downloaded by the entry's files: list ('Qwen3.5-27B-Claude-...'). Aligns the override filename with the files: entries and with the upstream HF repo (mradermacher/Qwen3.5-27B-...).
mudler
approved these changes
Apr 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #9362.
The gallery entry
qwen3.5-27b-claude-4.6-opus-reasoning-distilled-heretic-i1has a typo in itsoverrides.parameters.modelfield —Qwen3.-27B-Claude-...(missing the5). The downloaded file is namedQwen3.5-27B-Claude-...(matching thefiles:entry below and the upstream HF repo), so model loads fail with:Diff
overrides: parameters: - model: llama-cpp/models/Qwen3.-27B-Claude-4.6-Opus-Reasoning-Distilled-heretic.i1-Q4_K_M.gguf + model: llama-cpp/models/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-heretic.i1-Q4_K_M.ggufVerification
After fix,
overrides.parameters.modelmatches:files:entry (llama-cpp/models/Qwen3.5-27B-Claude-...)mmprojfield (...mmproj/Qwen3.5-27B-Claude-...)mradermacher/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-heretic-i1-GGUF)I grep'd
gallery/index.yamlfor similarQwen3.-/\.\-[0-9]+Bpatterns; this is the only occurrence — no other entries are affected.🤖 Generated with Claude Code