fix(curated): add mmproj_file to vision models#1162
Merged
Conversation
Vision curated models (qwen3.6-27b, Qwen3.6-27B-MTP-GGUF, Qwen3.6-35B-A3B-MTP-GGUF) lacked mmproj_file — the HF pull flow never downloaded the vision projector sidecar. Now resolved: - plunderstruck/...: mmproj-F32.gguf (only option) - unsloth/27B-MTP: mmproj-F16.gguf - unsloth/35B-A3B: mmproj-F16.gguf
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.
Problem
The HF pull flow for curated vision models never downloaded the mmproj
(multimodal projector) sidecar. The curated catalog's
CuratedModelhad
mmproj_filedefined but no vision model populated it — it alwaysdefaulted to empty string.
When pulling from the ModelDetail page (curated path),
_resolve_pull_source_with_bodyresolvedmmprojtoNoneforall vision models, so
run_pullonly downloaded the main GGUF.(The Add-by-HF modal path was unaffected — it passes
mmproj_filenamedirectly in the request body.)
Fix
Added
mmproj_fileto all three vision-tagged curated models:mmproj-F32.ggufmmproj-F16.ggufmmproj-F16.ggufFilenames verified against live HF repo trees.