From e8f5a4da5693192a04108f74abd6cef237af5613 Mon Sep 17 00:00:00 2001 From: TeslaZY Date: Wed, 24 Sep 2025 20:00:53 +0800 Subject: [PATCH] add model: qwen3-max and qewn3-vl series (#10256) ### What problem does this PR solve? qwen3-max and qewn3-vl series ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index fe825aab0..1a61ae30b 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -402,7 +402,7 @@ "is_tools": true }, { - "llm_name": "qwen3-max-preview", + "llm_name": "qwen3-max", "tags": "LLM,CHAT,256k", "max_tokens": 256000, "model_type": "chat", @@ -478,6 +478,27 @@ "model_type": "chat", "is_tools": true }, + { + "llm_name": "qwen3-vl-plus", + "tags": "LLM,CHAT,IMAGE2TEXT,256k", + "max_tokens": 256000, + "model_type": "image2text", + "is_tools": true + }, + { + "llm_name": "qwen3-vl-235b-a22b-instruct", + "tags": "LLM,CHAT,IMAGE2TEXT,128k", + "max_tokens": 128000, + "model_type": "image2text", + "is_tools": true + }, + { + "llm_name": "qwen3-vl-235b-a22b-thinking", + "tags": "LLM,CHAT,IMAGE2TEXT,128k", + "max_tokens": 128000, + "model_type": "image2text", + "is_tools": true + }, { "llm_name": "qwen3-235b-a22b-instruct-2507", "tags": "LLM,CHAT,128k", @@ -499,6 +520,20 @@ "model_type": "chat", "is_tools": true }, + { + "llm_name": "qwen3-next-80b-a3b-instruct", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "qwen3-next-80b-a3b-thinking", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, { "llm_name": "qwen3-0.6b", "tags": "LLM,CHAT,32k",