Skip to content

Commit 09b44cf

Browse files
committed
Add support for qwen3_vl and qwen3_vl_moe
Signed-off-by: booker123456 <945658361@qq.com>
1 parent d75b767 commit 09b44cf

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

vllm_ascend/models/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ def register_model():
88
"Qwen2VLForConditionalGeneration",
99
"vllm_ascend.models.qwen2_vl:AscendQwen2VLForConditionalGeneration")
1010

11+
ModelRegistry.register_model(
12+
"Qwen3VLMoeForConditionalGeneration",
13+
"vllm_ascend.models.qwen3_vl_moe:AscendQwen3VLMoeForConditionalGeneration"
14+
)
15+
16+
ModelRegistry.register_model(
17+
"Qwen3VLForConditionalGeneration",
18+
"vllm_ascend.models.qwen3_vl:AscendQwen3VLForConditionalGeneration"
19+
)
20+
1121
if envs_ascend.USE_OPTIMIZED_MODEL:
1222
ModelRegistry.register_model(
1323
"Qwen2_5_VLForConditionalGeneration",

0 commit comments

Comments
 (0)