@hej / sigit / commits / 84b7f35

Add Qwen2.5-Coder-7B-Instruct-GGUF model support

paydii committed Apr 26, 2026 at 07:10 UTC 84b7f35196ef00901f02f81c65af742b25dc4336
1 file changed +2
src/models.rs
+2
@@ -49,6 +49,7 @@ pub(crate) fn model_id_to_config(model_id: &str) -> Option<GgufModelConfig> {
49 "bartowski/Qwen2.5-1.5B-Instruct-GGUF" => GgufModelConfig::qwen25_1_5b(),
50 "bartowski/Qwen2.5-Coder-3B-Instruct-GGUF" => GgufModelConfig::qwen25_coder_3b(),
51 "bartowski/Qwen2.5-Coder-1.5B-Instruct-GGUF" => GgufModelConfig::qwen25_coder_1_5b(),
52 + "bartowski/Qwen2.5-Coder-7B-Instruct-GGUF" => GgufModelConfig::qwen25_coder_7b(),
53 "TheBloke/deepseek-coder-6.7B-instruct-GGUF" => GgufModelConfig::deepseek_coder_6_7b(),
54 _ => return None,
55 })
@@ -61,6 +62,7 @@ fn is_tool_calling(model_id: &str) -> bool {
62 "bartowski/Qwen_Qwen3-4B-GGUF"
63 | "bartowski/Qwen_Qwen3-8B-GGUF"
64 | "bartowski/Qwen_Qwen3-1.7B-GGUF"
65 + | "bartowski/Qwen2.5-Coder-7B-Instruct-GGUF"
66 )
67 }
68