diff options
author | ubergarm <leimgrub@gmail.com> | 2025-07-09 04:29:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-09 10:29:40 +0200 |
commit | 5446ccc8ac87037484ba63f91941de35e0bd58ca (patch) | |
tree | edac132516cc43eb82a1b5500bf93c8d5e7e221e /include/llama.h | |
parent | 97c34f4056067e167ed4508366f74b49e60202f7 (diff) |
add hunyuan moe support for 561 (#565)
* add hunyuan moe
* Don't reshape Vcur
* Apply chat template fix from mainline PR14584
Diffstat (limited to 'include/llama.h')
-rw-r--r-- | include/llama.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llama.h b/include/llama.h index 51db3eab..96895afa 100644 --- a/include/llama.h +++ b/include/llama.h @@ -111,6 +111,7 @@ extern "C" { LLAMA_VOCAB_PRE_TYPE_FALCON_3 = 34, LLAMA_VOCAB_PRE_TYPE_FALCON_E = 35, LLAMA_VOCAB_PRE_TYPE_SEED_CODER = 36, //llama.cpp lists this as 35 + LLAMA_VOCAB_PRE_TYPE_HUNYUAN = 37, //llama.cpp lists this as 36 }; // note: these values should be synchronized with ggml_rope |