@qwen-code/qwen-code 0.10.4 → 0.10.5
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 +13 -1
- package/cli.js +29 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -189,6 +189,18 @@ Use the `/model` command at any time to switch between all configured models.
|
|
|
189
189
|
{
|
|
190
190
|
"modelProviders": {
|
|
191
191
|
"openai": [
|
|
192
|
+
{
|
|
193
|
+
"id": "qwen3.5-plus",
|
|
194
|
+
"name": "qwen3.5-plus (Coding Plan)",
|
|
195
|
+
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
|
|
196
|
+
"description": "qwen3.5-plus with thinking enabled from Bailian Coding Plan",
|
|
197
|
+
"envKey": "BAILIAN_CODING_PLAN_API_KEY",
|
|
198
|
+
"generationConfig": {
|
|
199
|
+
"extra_body": {
|
|
200
|
+
"enable_thinking": true
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
},
|
|
192
204
|
{
|
|
193
205
|
"id": "qwen3-coder-plus",
|
|
194
206
|
"name": "qwen3-coder-plus (Coding Plan)",
|
|
@@ -212,7 +224,7 @@ Use the `/model` command at any time to switch between all configured models.
|
|
|
212
224
|
}
|
|
213
225
|
```
|
|
214
226
|
|
|
215
|
-
> Subscribe to the Coding Plan at [Alibaba Cloud Bailian](https://
|
|
227
|
+
> Subscribe to the Coding Plan and get your API key at [Alibaba Cloud Bailian](https://modelstudio.console.aliyun.com/?tab=dashboard#/efm/coding_plan).
|
|
216
228
|
|
|
217
229
|
</details>
|
|
218
230
|
|
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.5";
|
|
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.5";
|
|
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 = "135b47db";
|
|
381997
381997
|
|
|
381998
381998
|
// packages/cli/src/utils/systemInfo.ts
|
|
381999
381999
|
async function getNpmVersion() {
|
|
@@ -392605,6 +392605,18 @@ __name(computeCodingPlanVersion, "computeCodingPlanVersion");
|
|
|
392605
392605
|
function generateCodingPlanTemplate(region) {
|
|
392606
392606
|
if (region === "china" /* CHINA */) {
|
|
392607
392607
|
return [
|
|
392608
|
+
{
|
|
392609
|
+
id: "qwen3.5-plus",
|
|
392610
|
+
name: "qwen3.5-plus",
|
|
392611
|
+
description: "qwen3.5-plus model with thinking enabled from Bailian Coding Plan",
|
|
392612
|
+
baseUrl: "https://coding.dashscope.aliyuncs.com/v1",
|
|
392613
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392614
|
+
generationConfig: {
|
|
392615
|
+
extra_body: {
|
|
392616
|
+
enable_thinking: true
|
|
392617
|
+
}
|
|
392618
|
+
}
|
|
392619
|
+
},
|
|
392608
392620
|
{
|
|
392609
392621
|
id: "qwen3-coder-plus",
|
|
392610
392622
|
name: "qwen3-coder-plus",
|
|
@@ -392627,6 +392639,18 @@ function generateCodingPlanTemplate(region) {
|
|
|
392627
392639
|
];
|
|
392628
392640
|
}
|
|
392629
392641
|
return [
|
|
392642
|
+
{
|
|
392643
|
+
id: "qwen3.5-plus",
|
|
392644
|
+
name: "qwen3.5-plus",
|
|
392645
|
+
description: "qwen3.5-plus model with thinking enabled from Coding Plan (Global/Intl)",
|
|
392646
|
+
baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",
|
|
392647
|
+
envKey: CODING_PLAN_ENV_KEY,
|
|
392648
|
+
generationConfig: {
|
|
392649
|
+
extra_body: {
|
|
392650
|
+
enable_thinking: true
|
|
392651
|
+
}
|
|
392652
|
+
}
|
|
392653
|
+
},
|
|
392630
392654
|
{
|
|
392631
392655
|
id: "qwen3-coder-plus",
|
|
392632
392656
|
name: "qwen3-coder-plus",
|
|
@@ -419075,7 +419099,7 @@ init_esbuild_shims();
|
|
|
419075
419099
|
var import_react80 = __toESM(require_react(), 1);
|
|
419076
419100
|
var import_jsx_runtime80 = __toESM(require_jsx_runtime(), 1);
|
|
419077
419101
|
var CODING_PLAN_API_KEY_URL = "https://bailian.console.aliyun.com/?tab=model#/efm/coding_plan";
|
|
419078
|
-
var CODING_PLAN_INTL_API_KEY_URL = "https://modelstudio.console.alibabacloud.com
|
|
419102
|
+
var CODING_PLAN_INTL_API_KEY_URL = "https://modelstudio.console.alibabacloud.com/?tab=dashboard#/efm/coding_plan";
|
|
419079
419103
|
function ApiKeyInput({
|
|
419080
419104
|
onSubmit,
|
|
419081
419105
|
onCancel,
|
|
@@ -436712,7 +436736,7 @@ var GeminiAgent = class {
|
|
|
436712
436736
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
436713
436737
|
description: APPROVAL_MODE_INFO[mode].description
|
|
436714
436738
|
}));
|
|
436715
|
-
const version2 = "0.10.
|
|
436739
|
+
const version2 = "0.10.5";
|
|
436716
436740
|
return {
|
|
436717
436741
|
protocolVersion: PROTOCOL_VERSION,
|
|
436718
436742
|
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.5",
|
|
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.5"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"optionalDependencies": {
|