Luigi commited on
Commit
1f30736
·
1 Parent(s): 9f68f0b

Fix Qwen2.5 1.5B filename pattern

Browse files

- Changed from wildcard *Q4_K_M.gguf to exact filename
- File is qwen2.5-1.5b-instruct-q4_k_m.gguf (lowercase)
- Wildcard pattern failed due to case sensitivity

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -804,7 +804,7 @@ EXTRACTION_MODELS = {
804
  "qwen2.5_1.5b": {
805
  "name": "Qwen2.5 1.5B (128K Context)",
806
  "repo_id": "Qwen/Qwen2.5-1.5B-Instruct-GGUF",
807
- "filename": "*Q4_K_M.gguf",
808
  "max_context": 131072,
809
  "default_n_ctx": 4096,
810
  "params_size": "1.5B",
 
804
  "qwen2.5_1.5b": {
805
  "name": "Qwen2.5 1.5B (128K Context)",
806
  "repo_id": "Qwen/Qwen2.5-1.5B-Instruct-GGUF",
807
+ "filename": "qwen2.5-1.5b-instruct-q4_k_m.gguf",
808
  "max_context": 131072,
809
  "default_n_ctx": 4096,
810
  "params_size": "1.5B",