mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-05 15:31:27 +00:00
feat: add qwen3.5-plus model support for Coding Plan
- Add qwen3.5-plus configuration for both China and Global regions - Update README with qwen3.5-plus setup instructions - Fix Coding Plan console URL for international users - Update tests for new model count Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
parent
4cd42187b8
commit
89c78c7bf3
4 changed files with 42 additions and 4 deletions
|
|
@ -52,6 +52,19 @@ export function generateCodingPlanTemplate(
|
|||
// China region uses legacy fields to maintain backward compatibility
|
||||
// This ensures existing users don't get prompted for unnecessary updates
|
||||
return [
|
||||
{
|
||||
id: 'qwen3.5-plus',
|
||||
name: 'qwen3.5-plus',
|
||||
description:
|
||||
'qwen3.5-plus model with thinking enabled from Bailian Coding Plan',
|
||||
baseUrl: 'https://coding.dashscope.aliyuncs.com/v1',
|
||||
envKey: CODING_PLAN_ENV_KEY,
|
||||
generationConfig: {
|
||||
extra_body: {
|
||||
enable_thinking: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'qwen3-coder-plus',
|
||||
name: 'qwen3-coder-plus',
|
||||
|
|
@ -77,6 +90,19 @@ export function generateCodingPlanTemplate(
|
|||
|
||||
// Global region uses new description with region indicator
|
||||
return [
|
||||
{
|
||||
id: 'qwen3.5-plus',
|
||||
name: 'qwen3.5-plus',
|
||||
description:
|
||||
'qwen3.5-plus model with thinking enabled from Coding Plan (Global/Intl)',
|
||||
baseUrl: 'https://coding-intl.dashscope.aliyuncs.com/v1',
|
||||
envKey: CODING_PLAN_ENV_KEY,
|
||||
generationConfig: {
|
||||
extra_body: {
|
||||
enable_thinking: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'qwen3-coder-plus',
|
||||
name: 'qwen3-coder-plus',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue