@qwen-code/qwen-code 0.10.5 → 0.10.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/cli.js +111 -17
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -207,6 +207,42 @@ Use the `/model` command at any time to switch between all configured models.
|
|
|
207
207
|
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
|
|
208
208
|
"description": "qwen3-coder-plus from Bailian Coding Plan",
|
|
209
209
|
"envKey": "BAILIAN_CODING_PLAN_API_KEY"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "qwen3-coder-next",
|
|
213
|
+
"name": "qwen3-coder-next (Coding Plan)",
|
|
214
|
+
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
|
|
215
|
+
"description": "qwen3-coder-next with thinking enabled from Bailian Coding Plan",
|
|
216
|
+
"envKey": "BAILIAN_CODING_PLAN_API_KEY",
|
|
217
|
+
"generationConfig": {
|
|
218
|
+
"extra_body": {
|
|
219
|
+
"enable_thinking": true
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": "glm-4.7",
|
|
225
|
+
"name": "glm-4.7 (Coding Plan)",
|
|
226
|
+
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
|
|
227
|
+
"description": "glm-4.7 with thinking enabled from Bailian Coding Plan",
|
|
228
|
+
"envKey": "BAILIAN_CODING_PLAN_API_KEY",
|
|
229
|
+
"generationConfig": {
|
|
230
|
+
"extra_body": {
|
|
231
|
+
"enable_thinking": true
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "kimi-k2.5",
|
|
237
|
+
"name": "kimi-k2.5 (Coding Plan)",
|
|
238
|
+
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
|
|
239
|
+
"description": "kimi-k2.5 with thinking enabled from Bailian Coding Plan",
|
|
240
|
+
"envKey": "BAILIAN_CODING_PLAN_API_KEY",
|
|
241
|
+
"generationConfig": {
|
|
242
|
+
"extra_body": {
|
|
243
|
+
"enable_thinking": true
|
|
244
|
+
}
|
|
245
|
+
}
|
|
210
246
|
}
|
|
211
247
|
]
|
|
212
248
|
},
|
package/cli.js
CHANGED
|
@@ -157322,7 +157322,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
157322
157322
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
157323
157323
|
});
|
|
157324
157324
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
157325
|
-
const version2 = "0.10.
|
|
157325
|
+
const version2 = "0.10.6";
|
|
157326
157326
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
157327
157327
|
const baseHeaders = {
|
|
157328
157328
|
"User-Agent": userAgent2
|
|
@@ -374444,7 +374444,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
374444
374444
|
// packages/cli/src/utils/version.ts
|
|
374445
374445
|
async function getCliVersion() {
|
|
374446
374446
|
const pkgJson = await getPackageJson();
|
|
374447
|
-
return "0.10.
|
|
374447
|
+
return "0.10.6";
|
|
374448
374448
|
}
|
|
374449
374449
|
__name(getCliVersion, "getCliVersion");
|
|
374450
374450
|
|
|
@@ -381993,7 +381993,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
381993
381993
|
|
|
381994
381994
|
// packages/cli/src/generated/git-commit.ts
|
|
381995
381995
|
init_esbuild_shims();
|
|
381996
|
-
var GIT_COMMIT_INFO = "
|
|
381996
|
+
var GIT_COMMIT_INFO = "ebc2a01f";
|
|
381997
381997
|
|
|
381998
381998
|
// packages/cli/src/utils/systemInfo.ts
|
|
381999
381999
|
async function getNpmVersion() {
|
|
@@ -392607,8 +392607,7 @@ function generateCodingPlanTemplate(region) {
|
|
|
392607
392607
|
return [
|
|
392608
392608
|
{
|
|
392609
392609
|
id: "qwen3.5-plus",
|
|
392610
|
-
name: "qwen3.5-plus",
|
|
392611
|
-
description: "qwen3.5-plus model with thinking enabled from Bailian Coding Plan",
|
|
392610
|
+
name: "[Bailian Coding Plan] qwen3.5-plus",
|
|
392612
392611
|
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392613
392612
|
envKey: CODING_PLAN_ENV_KEY,
|
|
392614
392613
|
generationConfig: {
|
|
@@ -392619,15 +392618,63 @@ function generateCodingPlanTemplate(region) {
|
|
|
392619
392618
|
},
|
|
392620
392619
|
{
|
|
392621
392620
|
id: "qwen3-coder-plus",
|
|
392622
|
-
name: "qwen3-coder-plus",
|
|
392621
|
+
name: "[Bailian Coding Plan] qwen3-coder-plus",
|
|
392622
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392623
|
+
envKey: CODING_PLAN_ENV_KEY
|
|
392624
|
+
},
|
|
392625
|
+
{
|
|
392626
|
+
id: "qwen3-coder-next",
|
|
392627
|
+
name: "[Bailian Coding Plan] qwen3-coder-next",
|
|
392623
392628
|
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392624
|
-
description: "qwen3-coder-plus model from Bailian Coding Plan",
|
|
392625
392629
|
envKey: CODING_PLAN_ENV_KEY
|
|
392626
392630
|
},
|
|
392627
392631
|
{
|
|
392628
392632
|
id: "qwen3-max-2026-01-23",
|
|
392629
|
-
name: "qwen3-max-2026-01-23",
|
|
392630
|
-
|
|
392633
|
+
name: "[Bailian Coding Plan] qwen3-max-2026-01-23",
|
|
392634
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392635
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392636
|
+
generationConfig: {
|
|
392637
|
+
extra_body: {
|
|
392638
|
+
enable_thinking: true
|
|
392639
|
+
}
|
|
392640
|
+
}
|
|
392641
|
+
},
|
|
392642
|
+
{
|
|
392643
|
+
id: "glm-4.7",
|
|
392644
|
+
name: "[Bailian Coding Plan] glm-4.7",
|
|
392645
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392646
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392647
|
+
generationConfig: {
|
|
392648
|
+
extra_body: {
|
|
392649
|
+
enable_thinking: true
|
|
392650
|
+
}
|
|
392651
|
+
}
|
|
392652
|
+
},
|
|
392653
|
+
{
|
|
392654
|
+
id: "glm-5",
|
|
392655
|
+
name: "[Bailian Coding Plan] glm-5",
|
|
392656
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392657
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392658
|
+
generationConfig: {
|
|
392659
|
+
extra_body: {
|
|
392660
|
+
enable_thinking: true
|
|
392661
|
+
}
|
|
392662
|
+
}
|
|
392663
|
+
},
|
|
392664
|
+
{
|
|
392665
|
+
id: "MiniMax-M2.5",
|
|
392666
|
+
name: "[Bailian Coding Plan] MiniMax-M2.5",
|
|
392667
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392668
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392669
|
+
generationConfig: {
|
|
392670
|
+
extra_body: {
|
|
392671
|
+
enable_thinking: true
|
|
392672
|
+
}
|
|
392673
|
+
}
|
|
392674
|
+
},
|
|
392675
|
+
{
|
|
392676
|
+
id: "kimi-k2.5",
|
|
392677
|
+
name: "[Bailian Coding Plan] kimi-k2.5",
|
|
392631
392678
|
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392632
392679
|
envKey: CODING_PLAN_ENV_KEY,
|
|
392633
392680
|
generationConfig: {
|
|
@@ -392641,8 +392688,7 @@ function generateCodingPlanTemplate(region) {
|
|
|
392641
392688
|
return [
|
|
392642
392689
|
{
|
|
392643
392690
|
id: "qwen3.5-plus",
|
|
392644
|
-
name: "qwen3.5-plus",
|
|
392645
|
-
description: "qwen3.5-plus model with thinking enabled from Coding Plan (Global/Intl)",
|
|
392691
|
+
name: "[Bailian Coding Plan for Global/Intl] qwen3.5-plus",
|
|
392646
392692
|
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392647
392693
|
envKey: CODING_PLAN_ENV_KEY,
|
|
392648
392694
|
generationConfig: {
|
|
@@ -392653,15 +392699,63 @@ function generateCodingPlanTemplate(region) {
|
|
|
392653
392699
|
},
|
|
392654
392700
|
{
|
|
392655
392701
|
id: "qwen3-coder-plus",
|
|
392656
|
-
name: "qwen3-coder-plus",
|
|
392702
|
+
name: "[Bailian Coding Plan for Global/Intl] qwen3-coder-plus",
|
|
392703
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392704
|
+
envKey: CODING_PLAN_ENV_KEY
|
|
392705
|
+
},
|
|
392706
|
+
{
|
|
392707
|
+
id: "qwen3-coder-next",
|
|
392708
|
+
name: "[Bailian Coding Plan for Global/Intl] qwen3-coder-next",
|
|
392657
392709
|
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392658
|
-
description: "qwen3-coder-plus model from Coding Plan (Global/Intl)",
|
|
392659
392710
|
envKey: CODING_PLAN_ENV_KEY
|
|
392660
392711
|
},
|
|
392661
392712
|
{
|
|
392662
392713
|
id: "qwen3-max-2026-01-23",
|
|
392663
|
-
name: "qwen3-max-2026-01-23",
|
|
392664
|
-
|
|
392714
|
+
name: "[Bailian Coding Plan for Global/Intl] qwen3-max-2026-01-23",
|
|
392715
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392716
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392717
|
+
generationConfig: {
|
|
392718
|
+
extra_body: {
|
|
392719
|
+
enable_thinking: true
|
|
392720
|
+
}
|
|
392721
|
+
}
|
|
392722
|
+
},
|
|
392723
|
+
{
|
|
392724
|
+
id: "glm-4.7",
|
|
392725
|
+
name: "[Bailian Coding Plan for Global/Intl] glm-4.7",
|
|
392726
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392727
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392728
|
+
generationConfig: {
|
|
392729
|
+
extra_body: {
|
|
392730
|
+
enable_thinking: true
|
|
392731
|
+
}
|
|
392732
|
+
}
|
|
392733
|
+
},
|
|
392734
|
+
{
|
|
392735
|
+
id: "glm-5",
|
|
392736
|
+
name: "[Bailian Coding Plan for Global/Intl] glm-5",
|
|
392737
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392738
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392739
|
+
generationConfig: {
|
|
392740
|
+
extra_body: {
|
|
392741
|
+
enable_thinking: true
|
|
392742
|
+
}
|
|
392743
|
+
}
|
|
392744
|
+
},
|
|
392745
|
+
{
|
|
392746
|
+
id: "MiniMax-M2.5",
|
|
392747
|
+
name: "[Bailian Coding Plan for Global/Intl] MiniMax-M2.5",
|
|
392748
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392749
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392750
|
+
generationConfig: {
|
|
392751
|
+
extra_body: {
|
|
392752
|
+
enable_thinking: true
|
|
392753
|
+
}
|
|
392754
|
+
}
|
|
392755
|
+
},
|
|
392756
|
+
{
|
|
392757
|
+
id: "kimi-k2.5",
|
|
392758
|
+
name: "[Bailian Coding Plan for Global/Intl] kimi-k2.5",
|
|
392665
392759
|
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392666
392760
|
envKey: CODING_PLAN_ENV_KEY,
|
|
392667
392761
|
generationConfig: {
|
|
@@ -435694,7 +435788,7 @@ var AcpFileSystemService = class {
|
|
|
435694
435788
|
line: null,
|
|
435695
435789
|
limit: 1
|
|
435696
435790
|
});
|
|
435697
|
-
return response.content.
|
|
435791
|
+
return response.content.length > 0 && response.content.codePointAt(0) === 65279;
|
|
435698
435792
|
} catch {
|
|
435699
435793
|
}
|
|
435700
435794
|
}
|
|
@@ -436736,7 +436830,7 @@ var GeminiAgent = class {
|
|
|
436736
436830
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
436737
436831
|
description: APPROVAL_MODE_INFO[mode].description
|
|
436738
436832
|
}));
|
|
436739
|
-
const version2 = "0.10.
|
|
436833
|
+
const version2 = "0.10.6";
|
|
436740
436834
|
return {
|
|
436741
436835
|
protocolVersion: PROTOCOL_VERSION,
|
|
436742
436836
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.6",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"locales"
|
|
21
21
|
],
|
|
22
22
|
"config": {
|
|
23
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.10.
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.10.6"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"optionalDependencies": {
|