Fix llm_arch_is_hybrid (#1305)

This commit is contained in:
Kawrakow 2026-02-23 08:55:53 +01:00 committed by GitHub
parent 5dacb5355a
commit 2bb40f8c35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ bool llm_arch_is_recurrent(const llm_arch & arch) {
bool llm_arch_is_hybrid(const llm_arch & arch) {
switch (arch) {
case LLM_ARCH_QWEN3NEXT:
case LLM_ARCH_QWEN3MOE:
case LLM_ARCH_QWEN35MOE:
return true;
default:
return false;