summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKawrakow <iwankawrakow@gmail.com>2025-04-29 10:05:38 +0200
committerGitHub <noreply@github.com>2025-04-29 10:05:38 +0200
commit9ba362706c998902752caf31d99fe077ed7d4faa (patch)
treedbc0247dba3f179b5d6ce5baa4a342ba9a284cc6
parent1064f5bc312f61e5a1b7ef3fef918be300f74641 (diff)
Add missing enum values for qwen3 and qwen3moe (#356)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
-rw-r--r--gguf-py/gguf/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gguf-py/gguf/constants.py b/gguf-py/gguf/constants.py
index 4f0681b4..d6feb9ea 100644
--- a/gguf-py/gguf/constants.py
+++ b/gguf-py/gguf/constants.py
@@ -198,6 +198,8 @@ class MODEL_ARCH(IntEnum):
QWEN = auto()
QWEN2 = auto()
QWEN2MOE = auto()
+ QWEN3 = auto()
+ QWEN3MOE = auto()
PHI2 = auto()
PHI3 = auto()
PLAMO = auto()