Spaces:
Running
Running
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
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": "
|
| 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",
|