The Qwen 3.6 27B model under OpenRouter is registered as qwen/qwen-3.6-27b, but OpenRouter's actual ID is qwen/qwen3.6-27b (no hyphen between "qwen" and "3.6"). Calls
using the registry name fail with is not a valid model ID from OpenRouter.
Cause: the file added in #1614 was named qwen-3.6-27b.toml, so the build keys the model under the hyphenated name. The id field inside the file is already correct
(qwen/qwen3.6-27b). Sibling file qwen3.6-plus.toml follows the correct convention.
Verification:
$ curl -s https://openrouter.ai/api/v1/models | jq '.data[].id | select(test("qwen3.6"))'
"qwen/qwen3.6-27b"
"qwen/qwen3.6-plus"
"qwen/qwen3.6-flash"
"qwen/qwen3.6-35b-a3b"
"qwen/qwen3.6-max-preview"
Fix: rename providers/openrouter/models/qwen/qwen-3.6-27b.toml → qwen3.6-27b.toml.
Refs: #1609, #1614
The Qwen 3.6 27B model under OpenRouter is registered as
qwen/qwen-3.6-27b, but OpenRouter's actual ID isqwen/qwen3.6-27b(no hyphen between "qwen" and "3.6"). Callsusing the registry name fail with
is not a valid model IDfrom OpenRouter.Cause: the file added in #1614 was named
qwen-3.6-27b.toml, so the build keys the model under the hyphenated name. Theidfield inside the file is already correct(
qwen/qwen3.6-27b). Sibling fileqwen3.6-plus.tomlfollows the correct convention.Verification:
Fix: rename
providers/openrouter/models/qwen/qwen-3.6-27b.toml→qwen3.6-27b.toml.Refs: #1609, #1614