@qwen-code/qwen-code 0.10.2 → 0.10.3

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 CHANGED
@@ -123,7 +123,183 @@ Use this if you want more flexibility over which provider and model to use. Supp
123
123
  - **Anthropic**: Claude models
124
124
  - **Google GenAI**: Gemini models
125
125
 
126
- For full details (including `modelProviders` configuration, `.env` file loading, environment variable priorities, and security notes), see the [authentication guide](https://qwenlm.github.io/qwen-code-docs/en/users/configuration/auth/).
126
+ The **recommended** way to configure models and providers is by editing `~/.qwen/settings.json` (create it if it doesn't exist). This file lets you define all available models, API keys, and default settings in one place.
127
+
128
+ ##### Quick Setup in 3 Steps
129
+
130
+ **Step 1:** Create or edit `~/.qwen/settings.json`
131
+
132
+ Here is a complete example:
133
+
134
+ ```json
135
+ {
136
+ "modelProviders": {
137
+ "openai": [
138
+ {
139
+ "id": "qwen3-coder-plus",
140
+ "name": "qwen3-coder-plus",
141
+ "baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
142
+ "description": "Qwen3-Coder via Dashscope",
143
+ "envKey": "DASHSCOPE_API_KEY"
144
+ }
145
+ ]
146
+ },
147
+ "env": {
148
+ "DASHSCOPE_API_KEY": "sk-xxxxxxxxxxxxx"
149
+ },
150
+ "security": {
151
+ "auth": {
152
+ "selectedType": "openai"
153
+ }
154
+ },
155
+ "model": {
156
+ "name": "qwen3-coder-plus"
157
+ }
158
+ }
159
+ ```
160
+
161
+ **Step 2:** Understand each field
162
+
163
+ | Field | What it does |
164
+ | ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
165
+ | `modelProviders` | Declares which models are available and how to connect to them. Keys like `openai`, `anthropic`, `gemini` represent the API protocol. |
166
+ | `modelProviders[].id` | The model ID sent to the API (e.g. `qwen3-coder-plus`, `gpt-4o`). |
167
+ | `modelProviders[].envKey` | The name of the environment variable that holds your API key. |
168
+ | `modelProviders[].baseUrl` | The API endpoint URL (required for non-default endpoints). |
169
+ | `env` | A fallback place to store API keys (lowest priority; prefer `.env` files or `export` for sensitive keys). |
170
+ | `security.auth.selectedType` | The protocol to use on startup (`openai`, `anthropic`, `gemini`, `vertex-ai`). |
171
+ | `model.name` | The default model to use when Qwen Code starts. |
172
+
173
+ **Step 3:** Start Qwen Code — your configuration takes effect automatically:
174
+
175
+ ```bash
176
+ qwen
177
+ ```
178
+
179
+ Use the `/model` command at any time to switch between all configured models.
180
+
181
+ ##### More Examples
182
+
183
+ <details>
184
+ <summary>Coding Plan (Alibaba Cloud Bailian) — fixed monthly fee, higher quotas</summary>
185
+
186
+ ```json
187
+ {
188
+ "modelProviders": {
189
+ "openai": [
190
+ {
191
+ "id": "qwen3-coder-plus",
192
+ "name": "qwen3-coder-plus (Coding Plan)",
193
+ "baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
194
+ "description": "qwen3-coder-plus from Bailian Coding Plan",
195
+ "envKey": "BAILIAN_CODING_PLAN_API_KEY"
196
+ }
197
+ ]
198
+ },
199
+ "env": {
200
+ "BAILIAN_CODING_PLAN_API_KEY": "sk-xxxxxxxxxxxxx"
201
+ },
202
+ "security": {
203
+ "auth": {
204
+ "selectedType": "openai"
205
+ }
206
+ },
207
+ "model": {
208
+ "name": "qwen3-coder-plus"
209
+ }
210
+ }
211
+ ```
212
+
213
+ > Subscribe to the Coding Plan at [Alibaba Cloud Bailian](https://bailian.console.aliyun.com/cn-beijing/?tab=globalset#/efm/coding_plan).
214
+
215
+ </details>
216
+
217
+ <details>
218
+ <summary>Multiple providers (OpenAI + Anthropic + Gemini)</summary>
219
+
220
+ ```json
221
+ {
222
+ "modelProviders": {
223
+ "openai": [
224
+ {
225
+ "id": "gpt-4o",
226
+ "name": "GPT-4o",
227
+ "envKey": "OPENAI_API_KEY",
228
+ "baseUrl": "https://api.openai.com/v1"
229
+ }
230
+ ],
231
+ "anthropic": [
232
+ {
233
+ "id": "claude-sonnet-4-20250514",
234
+ "name": "Claude Sonnet 4",
235
+ "envKey": "ANTHROPIC_API_KEY"
236
+ }
237
+ ],
238
+ "gemini": [
239
+ {
240
+ "id": "gemini-2.5-pro",
241
+ "name": "Gemini 2.5 Pro",
242
+ "envKey": "GEMINI_API_KEY"
243
+ }
244
+ ]
245
+ },
246
+ "env": {
247
+ "OPENAI_API_KEY": "sk-xxxxxxxxxxxxx",
248
+ "ANTHROPIC_API_KEY": "sk-ant-xxxxxxxxxxxxx",
249
+ "GEMINI_API_KEY": "AIzaxxxxxxxxxxxxx"
250
+ },
251
+ "security": {
252
+ "auth": {
253
+ "selectedType": "openai"
254
+ }
255
+ },
256
+ "model": {
257
+ "name": "gpt-4o"
258
+ }
259
+ }
260
+ ```
261
+
262
+ </details>
263
+
264
+ <details>
265
+ <summary>Enable thinking mode (for supported models like qwen3.5-plus)</summary>
266
+
267
+ ```json
268
+ {
269
+ "modelProviders": {
270
+ "openai": [
271
+ {
272
+ "id": "qwen3.5-plus",
273
+ "name": "qwen3.5-plus (thinking)",
274
+ "envKey": "DASHSCOPE_API_KEY",
275
+ "baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
276
+ "generationConfig": {
277
+ "extra_body": {
278
+ "enable_thinking": true
279
+ }
280
+ }
281
+ }
282
+ ]
283
+ },
284
+ "env": {
285
+ "DASHSCOPE_API_KEY": "sk-xxxxxxxxxxxxx"
286
+ },
287
+ "security": {
288
+ "auth": {
289
+ "selectedType": "openai"
290
+ }
291
+ },
292
+ "model": {
293
+ "name": "qwen3.5-plus"
294
+ }
295
+ }
296
+ ```
297
+
298
+ </details>
299
+
300
+ > **Tip:** You can also set API keys via `export` in your shell or `.env` files, which take higher priority than `settings.json` → `env`. See the [authentication guide](https://qwenlm.github.io/qwen-code-docs/en/users/configuration/auth/) for full details.
301
+
302
+ > **Security note:** Never commit API keys to version control. The `~/.qwen/settings.json` file is in your home directory and should stay private.
127
303
 
128
304
  ## Usage
129
305
 
@@ -191,10 +367,21 @@ Build on top of Qwen Code with the TypeScript SDK:
191
367
 
192
368
  Qwen Code can be configured via `settings.json`, environment variables, and CLI flags.
193
369
 
194
- - **User settings**: `~/.qwen/settings.json`
195
- - **Project settings**: `.qwen/settings.json`
370
+ | File | Scope | Description |
371
+ | ----------------------- | ------------- | --------------------------------------------------------------------------------------- |
372
+ | `~/.qwen/settings.json` | User (global) | Applies to all your Qwen Code sessions. **Recommended for `modelProviders` and `env`.** |
373
+ | `.qwen/settings.json` | Project | Applies only when running Qwen Code in this project. Overrides user settings. |
374
+
375
+ The most commonly used top-level fields in `settings.json`:
376
+
377
+ | Field | Description |
378
+ | ---------------------------- | ---------------------------------------------------------------------------------------------------- |
379
+ | `modelProviders` | Define available models per protocol (`openai`, `anthropic`, `gemini`, `vertex-ai`). |
380
+ | `env` | Fallback environment variables (e.g. API keys). Lower priority than shell `export` and `.env` files. |
381
+ | `security.auth.selectedType` | The protocol to use on startup (e.g. `openai`). |
382
+ | `model.name` | The default model to use when Qwen Code starts. |
196
383
 
197
- See [settings](https://qwenlm.github.io/qwen-code-docs/en/users/configuration/settings/) for available options and precedence.
384
+ > See the [Authentication](#api-key-flexible) section above for complete `settings.json` examples, and the [settings reference](https://qwenlm.github.io/qwen-code-docs/en/users/configuration/settings/) for all available options.
198
385
 
199
386
  ## Benchmark Results
200
387
 
package/cli.js CHANGED
@@ -133516,7 +133516,10 @@ var init_tokenLimits = __esm({
133516
133516
  // Commercial Qwen3-Coder-Flash: 1M token context
133517
133517
  [/^qwen3-coder-flash(-.*)?$/, LIMITS["1m"]],
133518
133518
  // catches "qwen3-coder-flash" and date variants
133519
- // Generic coder-model: same as qwen3-coder-plus (1M token context)
133519
+ // Commercial Qwen3.5-Plus: 1M token context
133520
+ [/^qwen3\.5-plus(-.*)?$/, LIMITS["1m"]],
133521
+ // catches "qwen3.5-plus" and date variants
133522
+ // Generic coder-model: same as qwen3.5-plus (1M token context)
133520
133523
  [/^coder-model$/, LIMITS["1m"]],
133521
133524
  // Commercial Qwen3-Max-Preview: 256K token context
133522
133525
  [/^qwen3-max(-preview)?(-.*)?$/, LIMITS["256k"]],
@@ -133584,7 +133587,9 @@ var init_tokenLimits = __esm({
133584
133587
  // -------------------
133585
133588
  // Qwen3-Coder-Plus: 65,536 max output tokens
133586
133589
  [/^qwen3-coder-plus(-.*)?$/, LIMITS["64k"]],
133587
- // Generic coder-model: same as qwen3-coder-plus (64K max output tokens)
133590
+ // Qwen3.5-Plus: 65,536 max output tokens
133591
+ [/^qwen3\.5-plus(-.*)?$/, LIMITS["64k"]],
133592
+ // Generic coder-model: same as qwen3.5-plus (64K max output tokens)
133588
133593
  [/^coder-model$/, LIMITS["64k"]],
133589
133594
  // Qwen3-Max: 65,536 max output tokens
133590
133595
  [/^qwen3-max(-preview)?(-.*)?$/, LIMITS["64k"]],
@@ -133691,7 +133696,7 @@ var init_constants3 = __esm({
133691
133696
  {
133692
133697
  id: "coder-model",
133693
133698
  name: "coder-model",
133694
- description: "The latest Qwen Coder model from Alibaba Cloud ModelStudio",
133699
+ description: "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance",
133695
133700
  capabilities: { vision: false }
133696
133701
  },
133697
133702
  {
@@ -157317,7 +157322,7 @@ __export(geminiContentGenerator_exports, {
157317
157322
  createGeminiContentGenerator: () => createGeminiContentGenerator
157318
157323
  });
157319
157324
  function createGeminiContentGenerator(config2, gcConfig) {
157320
- const version2 = "0.10.2";
157325
+ const version2 = "0.10.3";
157321
157326
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
157322
157327
  const baseHeaders = {
157323
157328
  "User-Agent": userAgent2
@@ -298070,7 +298075,7 @@ var init_de = __esm({
298070
298075
  "(set)": "(gesetzt)",
298071
298076
  "(not set)": "(nicht gesetzt)",
298072
298077
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Modell konnte nicht auf '{{modelId}}' umgestellt werden.\n\n{{error}}",
298073
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "Das neueste Qwen Coder Modell von Alibaba Cloud ModelStudio (Version: qwen3-coder-plus-2025-09-23)",
298078
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 effizientes Hybridmodell mit f\xFChrender Programmierleistung",
298074
298079
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "Das neueste Qwen Vision Modell von Alibaba Cloud ModelStudio (Version: qwen3-vl-plus-2025-09-23)",
298075
298080
  // ============================================================================
298076
298081
  // Dialogs - Permissions
@@ -299140,7 +299145,7 @@ var init_en3 = __esm({
299140
299145
  "(set)": "(set)",
299141
299146
  "(not set)": "(not set)",
299142
299147
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Failed to switch model to '{{modelId}}'.\n\n{{error}}",
299143
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)",
299148
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance",
299144
299149
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)",
299145
299150
  // ============================================================================
299146
299151
  // Dialogs - Permissions
@@ -300021,7 +300026,7 @@ var init_ja = __esm({
300021
300026
  // Dialogs - Model
300022
300027
  "Select Model": "\u30E2\u30C7\u30EB\u3092\u9078\u629E",
300023
300028
  "(Press Esc to close)": "(Esc \u3067\u9589\u3058\u308B)",
300024
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "Alibaba Cloud ModelStudio\u306E\u6700\u65B0Qwen Coder\u30E2\u30C7\u30EB(\u30D0\u30FC\u30B8\u30E7\u30F3: qwen3-coder-plus-2025-09-23)",
300029
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 \u52B9\u7387\u7684\u306A\u30CF\u30A4\u30D6\u30EA\u30C3\u30C9\u30E2\u30C7\u30EB\u3001\u696D\u754C\u30C8\u30C3\u30D7\u30AF\u30E9\u30B9\u306E\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u6027\u80FD",
300025
300030
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "Alibaba Cloud ModelStudio\u306E\u6700\u65B0Qwen Vision\u30E2\u30C7\u30EB(\u30D0\u30FC\u30B8\u30E7\u30F3: qwen3-vl-plus-2025-09-23)",
300026
300031
  // Dialogs - Permissions
300027
300032
  "Manage folder trust settings": "\u30D5\u30A9\u30EB\u30C0\u4FE1\u983C\u8A2D\u5B9A\u3092\u7BA1\u7406",
@@ -300930,7 +300935,7 @@ var init_pt = __esm({
300930
300935
  "(set)": "(definido)",
300931
300936
  "(not set)": "(n\xE3o definido)",
300932
300937
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}": "Falha ao trocar o modelo para '{{modelId}}'.\n\n{{error}}",
300933
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "O modelo Qwen Coder mais recente do Alibaba Cloud ModelStudio (vers\xE3o: qwen3-coder-plus-2025-09-23)",
300938
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 modelo h\xEDbrido eficiente com desempenho l\xEDder em programa\xE7\xE3o",
300934
300939
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "O modelo Qwen Vision mais recente do Alibaba Cloud ModelStudio (vers\xE3o: qwen3-vl-plus-2025-09-23)",
300935
300940
  // ============================================================================
300936
300941
  // Dialogs - Permissions
@@ -301999,7 +302004,7 @@ var init_ru = __esm({
301999
302004
  "(set)": "(\u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E)",
302000
302005
  "(not set)": "(\u043D\u0435 \u0437\u0430\u0434\u0430\u043D\u043E)",
302001
302006
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}": "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C\u0441\u044F \u043D\u0430 \u043C\u043E\u0434\u0435\u043B\u044C '{{modelId}}'.\n\n{{error}}",
302002
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u043C\u043E\u0434\u0435\u043B\u044C Qwen Coder \u043E\u0442 Alibaba Cloud ModelStudio (\u0432\u0435\u0440\u0441\u0438\u044F: qwen3-coder-plus-2025-09-23)",
302007
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 \u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u0430\u044F \u0433\u0438\u0431\u0440\u0438\u0434\u043D\u0430\u044F \u043C\u043E\u0434\u0435\u043B\u044C \u0441 \u043B\u0438\u0434\u0438\u0440\u0443\u044E\u0449\u0435\u0439 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C\u044E \u0432 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0438",
302003
302008
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u043C\u043E\u0434\u0435\u043B\u044C Qwen Vision \u043E\u0442 Alibaba Cloud ModelStudio (\u0432\u0435\u0440\u0441\u0438\u044F: qwen3-vl-plus-2025-09-23)",
302004
302009
  // ============================================================================
302005
302010
  // Диалоги - Разрешения
@@ -303069,7 +303074,7 @@ var init_zh = __esm({
303069
303074
  "(set)": "(\u5DF2\u8BBE\u7F6E)",
303070
303075
  "(not set)": "(\u672A\u8BBE\u7F6E)",
303071
303076
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}": "\u65E0\u6CD5\u5207\u6362\u5230\u6A21\u578B '{{modelId}}'.\n\n{{error}}",
303072
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)": "\u6765\u81EA\u963F\u91CC\u4E91 ModelStudio \u7684\u6700\u65B0 Qwen Coder \u6A21\u578B\uFF08\u7248\u672C\uFF1Aqwen3-coder-plus-2025-09-23\uFF09",
303077
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance": "Qwen 3.5 Plus \u2014 \u9AD8\u6548\u6DF7\u5408\u67B6\u6784\uFF0C\u7F16\u7A0B\u6027\u80FD\u4E1A\u754C\u9886\u5148",
303073
303078
  "The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)": "\u6765\u81EA\u963F\u91CC\u4E91 ModelStudio \u7684\u6700\u65B0 Qwen Vision \u6A21\u578B\uFF08\u7248\u672C\uFF1Aqwen3-vl-plus-2025-09-23\uFF09",
303074
303079
  // ============================================================================
303075
303080
  // Dialogs - Permissions
@@ -374373,7 +374378,7 @@ __name(getPackageJson, "getPackageJson");
374373
374378
  // packages/cli/src/utils/version.ts
374374
374379
  async function getCliVersion() {
374375
374380
  const pkgJson = await getPackageJson();
374376
- return "0.10.2";
374381
+ return "0.10.3";
374377
374382
  }
374378
374383
  __name(getCliVersion, "getCliVersion");
374379
374384
 
@@ -381922,7 +381927,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
381922
381927
 
381923
381928
  // packages/cli/src/generated/git-commit.ts
381924
381929
  init_esbuild_shims();
381925
- var GIT_COMMIT_INFO = "72ed0d7b";
381930
+ var GIT_COMMIT_INFO = "4629b198";
381926
381931
 
381927
381932
  // packages/cli/src/utils/systemInfo.ts
381928
381933
  async function getNpmVersion() {
@@ -419716,7 +419721,7 @@ var AVAILABLE_MODELS_QWEN = [
419716
419721
  label: MAINLINE_CODER,
419717
419722
  get description() {
419718
419723
  return t4(
419719
- "The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)"
419724
+ "Qwen 3.5 Plus \u2014 efficient hybrid model with leading coding performance"
419720
419725
  );
419721
419726
  }
419722
419727
  },
@@ -436573,7 +436578,7 @@ var GeminiAgent = class {
436573
436578
  name: APPROVAL_MODE_INFO[mode].name,
436574
436579
  description: APPROVAL_MODE_INFO[mode].description
436575
436580
  }));
436576
- const version2 = "0.10.2";
436581
+ const version2 = "0.10.3";
436577
436582
  return {
436578
436583
  protocolVersion: PROTOCOL_VERSION,
436579
436584
  agentInfo: {
package/locales/de.js CHANGED
@@ -1030,8 +1030,8 @@ export default {
1030
1030
  '(not set)': '(nicht gesetzt)',
1031
1031
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}":
1032
1032
  "Modell konnte nicht auf '{{modelId}}' umgestellt werden.\n\n{{error}}",
1033
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
1034
- 'Das neueste Qwen Coder Modell von Alibaba Cloud ModelStudio (Version: qwen3-coder-plus-2025-09-23)',
1033
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
1034
+ 'Qwen 3.5 Plus effizientes Hybridmodell mit führender Programmierleistung',
1035
1035
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
1036
1036
  'Das neueste Qwen Vision Modell von Alibaba Cloud ModelStudio (Version: qwen3-vl-plus-2025-09-23)',
1037
1037
 
package/locales/en.js CHANGED
@@ -1017,8 +1017,8 @@ export default {
1017
1017
  '(not set)': '(not set)',
1018
1018
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}":
1019
1019
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}",
1020
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
1021
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)',
1020
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
1021
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance',
1022
1022
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
1023
1023
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)',
1024
1024
 
package/locales/ja.js CHANGED
@@ -731,8 +731,8 @@ export default {
731
731
  // Dialogs - Model
732
732
  'Select Model': 'モデルを選択',
733
733
  '(Press Esc to close)': '(Esc で閉じる)',
734
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
735
- 'Alibaba Cloud ModelStudioの最新Qwen Coderモデル(バージョン: qwen3-coder-plus-2025-09-23)',
734
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
735
+ 'Qwen 3.5 Plus 効率的なハイブリッドモデル、業界トップクラスのコーディング性能',
736
736
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
737
737
  'Alibaba Cloud ModelStudioの最新Qwen Visionモデル(バージョン: qwen3-vl-plus-2025-09-23)',
738
738
  // Dialogs - Permissions
package/locales/pt.js CHANGED
@@ -1039,8 +1039,8 @@ export default {
1039
1039
  '(not set)': '(não definido)',
1040
1040
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}":
1041
1041
  "Falha ao trocar o modelo para '{{modelId}}'.\n\n{{error}}",
1042
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
1043
- 'O modelo Qwen Coder mais recente do Alibaba Cloud ModelStudio (versão: qwen3-coder-plus-2025-09-23)',
1042
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
1043
+ 'Qwen 3.5 Plus modelo híbrido eficiente com desempenho líder em programação',
1044
1044
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
1045
1045
  'O modelo Qwen Vision mais recente do Alibaba Cloud ModelStudio (versão: qwen3-vl-plus-2025-09-23)',
1046
1046
 
package/locales/ru.js CHANGED
@@ -1032,8 +1032,8 @@ export default {
1032
1032
  '(not set)': '(не задано)',
1033
1033
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}":
1034
1034
  "Не удалось переключиться на модель '{{modelId}}'.\n\n{{error}}",
1035
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
1036
- 'Последняя модель Qwen Coder от Alibaba Cloud ModelStudio (версия: qwen3-coder-plus-2025-09-23)',
1035
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
1036
+ 'Qwen 3.5 Plus эффективная гибридная модель с лидирующей производительностью в программировании',
1037
1037
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
1038
1038
  'Последняя модель Qwen Vision от Alibaba Cloud ModelStudio (версия: qwen3-vl-plus-2025-09-23)',
1039
1039
 
package/locales/zh.js CHANGED
@@ -958,8 +958,8 @@ export default {
958
958
  '(not set)': '(未设置)',
959
959
  "Failed to switch model to '{{modelId}}'.\n\n{{error}}":
960
960
  "无法切换到模型 '{{modelId}}'.\n\n{{error}}",
961
- 'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
962
- '来自阿里云 ModelStudio 的最新 Qwen Coder 模型(版本:qwen3-coder-plus-2025-09-23)',
961
+ 'Qwen 3.5 Plus efficient hybrid model with leading coding performance':
962
+ 'Qwen 3.5 Plus 高效混合架构,编程性能业界领先',
963
963
  'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
964
964
  '来自阿里云 ModelStudio 的最新 Qwen Vision 模型(版本:qwen3-vl-plus-2025-09-23)',
965
965
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwen-code/qwen-code",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
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.2"
23
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.10.3"
24
24
  },
25
25
  "dependencies": {},
26
26
  "optionalDependencies": {