Spaces:
Running
Running
Fix Qwen2.5 3B filename pattern to lowercase
Browse files- Changed from *Q4_K_M.gguf to *q4_k_m.gguf
- File in repo is qwen2.5-3b-instruct-q4_k_m.gguf (lowercase)
- Matches actual filename in Qwen/Qwen2.5-3B-Instruct-GGUF
app.py
CHANGED
|
@@ -692,7 +692,7 @@ EXTRACTION_MODELS = {
|
|
| 692 |
"qwen2.5_3b": {
|
| 693 |
"name": "Qwen2.5 3B (128K Context)",
|
| 694 |
"repo_id": "Qwen/Qwen2.5-3B-Instruct-GGUF",
|
| 695 |
-
"filename": "*
|
| 696 |
"max_context": 131072,
|
| 697 |
"default_n_ctx": 4096,
|
| 698 |
"params_size": "3B",
|
|
|
|
| 692 |
"qwen2.5_3b": {
|
| 693 |
"name": "Qwen2.5 3B (128K Context)",
|
| 694 |
"repo_id": "Qwen/Qwen2.5-3B-Instruct-GGUF",
|
| 695 |
+
"filename": "*q4_k_m.gguf",
|
| 696 |
"max_context": 131072,
|
| 697 |
"default_n_ctx": 4096,
|
| 698 |
"params_size": "3B",
|