From 3456839c9a4c9e881cf682d8786913060d095533 Mon Sep 17 00:00:00 2001 From: Sun Tao <168447269+fengju0213@users.noreply.github.com> Date: Wed, 12 Mar 2025 11:34:46 +0800 Subject: [PATCH 1/2] Update run_qwen_zh.py The actual test shows that QWEN_VL_MAX rarely uses tools, so QWEN_MAX is preferred in non-multimodal scenarios. --- owl/run_qwen_zh.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/owl/run_qwen_zh.py b/owl/run_qwen_zh.py index d0c4d6a..fb3106f 100644 --- a/owl/run_qwen_zh.py +++ b/owl/run_qwen_zh.py @@ -53,12 +53,12 @@ def construct_society(question: str) -> OwlRolePlaying: models = { "user": ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, ), "assistant": ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, ), "web": ModelFactory.create( @@ -68,7 +68,7 @@ def construct_society(question: str) -> OwlRolePlaying: ), "planning": ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, ), "video": ModelFactory.create( From b687406f8ec437c2d2a99d8f03be69c75f4e4562 Mon Sep 17 00:00:00 2001 From: Sun Tao <168447269+fengju0213@users.noreply.github.com> Date: Wed, 12 Mar 2025 11:35:43 +0800 Subject: [PATCH 2/2] Update run_qwen_mini_zh.py --- owl/run_qwen_mini_zh.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/owl/run_qwen_mini_zh.py b/owl/run_qwen_mini_zh.py index 76d887b..d48298a 100644 --- a/owl/run_qwen_mini_zh.py +++ b/owl/run_qwen_mini_zh.py @@ -39,19 +39,19 @@ def construct_society(question: str) -> OwlRolePlaying: user_model = ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, ) assistant_model = ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, ) planning_model = ModelFactory.create( model_platform=ModelPlatformType.QWEN, - model_type=ModelType.QWEN_VL_MAX, + model_type=ModelType.QWEN_MAX, model_config_dict={"temperature": 0}, )