From c383c0d067fffc474855fc848aa1cc0ec79381c8 Mon Sep 17 00:00:00 2001 From: souljoy Date: Tue, 30 Jun 2026 17:15:09 +0800 Subject: [PATCH] [model] add Qwen-AgentWorld-35B-A3B support (#10615) --- src/llamafactory/extras/constants.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/llamafactory/extras/constants.py b/src/llamafactory/extras/constants.py index fea90598c..77721a01c 100644 --- a/src/llamafactory/extras/constants.py +++ b/src/llamafactory/extras/constants.py @@ -3372,6 +3372,19 @@ register_model_group( ) +# Qwen-AgentWorld: language world model based on Qwen3.5-35B-A3B (MoE). +# Reference: https://github.com/QwenLM/Qwen-AgentWorld +register_model_group( + models={ + "Qwen-AgentWorld-35B-A3B-Thinking": { + DownloadSource.DEFAULT: "Qwen/Qwen-AgentWorld-35B-A3B", + DownloadSource.MODELSCOPE: "Qwen/Qwen-AgentWorld-35B-A3B", + }, + }, + template="qwen3", +) + + register_model_group( models={ "Vicuna-v1.5-7B-Chat": {