From: Georgi Gerganov Date: Mon, 26 Jan 2026 09:24:30 +0000 (+0200) Subject: model : add correct type for GLM 4.7 Flash (#19106) X-Git-Tag: upstream/0.0.8067~230 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=56f3ebf38ea5757447e7ea167cda15e1eebf9601;p=pkg%2Fggml%2Fsources%2Fllama.cpp model : add correct type for GLM 4.7 Flash (#19106) --- diff --git a/src/llama-model.cpp b/src/llama-model.cpp index 32f49e799..cc784e1cb 100644 --- a/src/llama-model.cpp +++ b/src/llama-model.cpp @@ -1737,6 +1737,7 @@ void llama_model::load_hparams(llama_model_loader & ml) { switch (hparams.n_layer) { case 27: type = LLM_TYPE_16B; break; + case 47: type = LLM_TYPE_30B_A3B; break; case 60: type = LLM_TYPE_236B; break; case 61: type = LLM_TYPE_671B; break; default: type = LLM_TYPE_UNKNOWN;