From d4d0b483b55154e919e076c5ceffedea63c9f014 Mon Sep 17 00:00:00 2001 From: wangbin Date: Tue, 9 Jun 2026 16:57:14 +0800 Subject: [PATCH] fix(alibaba/qwen3.7-plus): correct output to 64K and tier size to 256K MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - output: 16,384 → 65,536 (official max output is 64K) - tier.size: 128,000 → 256,000 (matches qwen3.6-plus tier threshold) Verified against official spec: https://bailian.console.aliyun.com/cn-beijing/?tab=model#/model-market/detail/qwen3.7-plus Context: 1M | Max Output: 64K | Modalities: text + image + video --- providers/alibaba/models/qwen3.7-plus.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/providers/alibaba/models/qwen3.7-plus.toml b/providers/alibaba/models/qwen3.7-plus.toml index af061a42a..c0c96b89b 100644 --- a/providers/alibaba/models/qwen3.7-plus.toml +++ b/providers/alibaba/models/qwen3.7-plus.toml @@ -16,7 +16,7 @@ cache_read = 0.05 cache_write = 0.625 [[cost.tiers]] -tier = { size = 128_000 } +tier = { size = 256_000 } input = 2.00 output = 6.00 cache_read = 0.20 @@ -24,7 +24,7 @@ cache_write = 2.50 [limit] context = 1_000_000 -output = 16_384 +output = 65_536 [modalities] input = ["text", "image", "video"]