From b26088ab703ef9d9cb7d1ceba65c4b3656ba4d9b Mon Sep 17 00:00:00 2001 From: TeslaZY Date: Fri, 1 Aug 2025 15:19:51 +0800 Subject: [PATCH] Add a series of qwen3 latest SOTA models (#9140) ### What problem does this PR solve? Add a series of qwen3 latest SOTA models: qwen3-coder-480b-a35b-instruct, qwen3-30b-a3b-instruct-2507, qwen3-30b-a3b-thinking-2507, qwen3-235b-a22b-instruct-2507, qwen3-235b-a22b-thinking-2507 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index e6602ef6f..6e2c08407 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -281,6 +281,27 @@ "model_type": "chat", "is_tools": true }, + { + "llm_name": "qwen3-coder-480b-a35b-instruct", + "tags": "LLM,CHAT,256k", + "max_tokens": 256000, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "qwen3-30b-a3b-instruct-2507", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "qwen3-30b-a3b-thinking-2507", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, { "llm_name": "qwen3-30b-a3b", "tags": "LLM,CHAT,128k", @@ -288,6 +309,20 @@ "model_type": "chat", "is_tools": true }, + { + "llm_name": "qwen3-235b-a22b-instruct-2507", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "qwen3-235b-a22b-thinking-2507", + "tags": "LLM,CHAT,128k", + "max_tokens": 128000, + "model_type": "chat", + "is_tools": true + }, { "llm_name": "qwen3-235b-a22b", "tags": "LLM,CHAT,128k",