From 772c232631db4bd6692dcaeaad086ee3f9f7d34d Mon Sep 17 00:00:00 2001 From: joezhang Date: Thu, 16 Jul 2026 12:55:06 +0800 Subject: [PATCH] fix(providers): update alibaba coding plan supported model list The model list for alibaba coding plan is currently out of sync with the actually supported models. See the official documentation[1]. Per the docs, alibaba coding plan does not support qwen3.7-max; it supports qwen3.7-plus instead. Additionally, qwen3-max-2026-01-23 was missing from the model list. Changes to the alibaba-coding-plan model list: - Replace qwen3.7-max with qwen3.7-plus - Add qwen3-max-2026-01-23 [1] https://www.alibabacloud.com/help/en/model-studio/coding-plan --- hermes_cli/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hermes_cli/models.py b/hermes_cli/models.py index 7940794d466a8..c3c0057532b2b 100644 --- a/hermes_cli/models.py +++ b/hermes_cli/models.py @@ -506,9 +506,10 @@ _PROVIDER_MODELS: dict[str, list[str]] = { # Alibaba Coding Plan — same platform as alibaba (DashScope coding-intl), # separate provider ID with its own base_url_env_var. "alibaba-coding-plan": [ - "qwen3.7-max", + "qwen3.7-plus", "qwen3.6-plus", "qwen3.5-plus", + "qwen3-max-2026-01-23", "qwen3-coder-plus", "qwen3-coder-next", "kimi-k2.5",