model: Add Laguna-S-2.1 LLM_TYPE (#26233)

This commit is contained in:
Guido Imperiale
2026-07-28 21:02:33 +02:00
committed by GitHub
parent bc71c24c9d
commit e9fa0781f1
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -58,6 +58,7 @@ void llama_model_laguna::load_arch_hparams(llama_model_loader & ml) {
switch (hparams.n_layer()) {
case 40: type = LLM_TYPE_30B_A3B; break; // Laguna-XS.2
case 48: type = LLM_TYPE_118B_A8B; break; // Laguna-S.2
case 70: type = LLM_TYPE_230B_A10B; break; // Laguna-M.1
default: type = LLM_TYPE_UNKNOWN;
}