From e940b3d46839c3f323d524e23350e130b23f1f3a Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 27 Apr 2026 15:30:29 +0300 Subject: [PATCH] download : prefer q8_0 when q4_k not available (#22428) --- common/download.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/download.cpp b/common/download.cpp index c4bb02d90..d6d47b2d2 100644 --- a/common/download.cpp +++ b/common/download.cpp @@ -627,7 +627,7 @@ static hf_cache::hf_file find_best_model(const hf_cache::hf_files & files, if (!tag.empty()) { tags.push_back(tag); } else { - tags = {"Q4_K_M", "Q4_0"}; + tags = {"Q4_K_M", "Q8_0"}; } for (const auto & t : tags) {