Skip to content

Commit 03d1c48

Browse files
committed
feat(cli): update the default vision model to qwen3-vl-plus
1 parent ee8aed0 commit 03d1c48

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bl auth login --console
9999

100100
# Browse apps / free-tier quota
101101
bl app list
102-
bl usage free --model qwen3-vl-plus
102+
bl usage free --model qwen3-max
103103
```
104104

105105
> More examples and scenarios: [Aliyun Model Studio CLI Site](https://bailian.console.aliyun.com/cli?source_channel=cli_github&)

README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ bl auth login --console
9797

9898
# 浏览应用 / 免费额度
9999
bl app list
100-
bl usage free --model qwen3-vl-plus
100+
bl usage free --model qwen3-max
101101
```
102102

103103
> 更多案例与使用场景:[阿里云百炼 CLI 官方主页](https://bailian.console.aliyun.com/cli)

packages/cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bl auth login --console
9999

100100
# Browse apps / free-tier quota
101101
bl app list
102-
bl usage free --model qwen3-vl-plus
102+
bl usage free --model qwen3-max
103103
```
104104

105105
> More examples and scenarios: [Aliyun Model Studio CLI Site](https://bailian.console.aliyun.com/cli?source_channel=cli_github&)

packages/cli/README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ bl auth login --console
9797

9898
# 浏览应用 / 免费额度
9999
bl app list
100-
bl usage free --model qwen3-vl-plus
100+
bl usage free --model qwen3-max
101101
```
102102

103103
> 更多案例与使用场景:[阿里云百炼 CLI 官方主页](https://bailian.console.aliyun.com/cli)

packages/cli/src/commands/console/call.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineCommand({
3232
},
3333
],
3434
examples: [
35-
`bl console call --api zeldaEasy.broadscope-bailian.freeTrial.queryFreeTierQuota --data '{"queryFreeTierQuotaRequest":{"models":["qwen3-vl-plus"]}}'`,
35+
`bl console call --api zeldaEasy.broadscope-bailian.freeTrial.queryFreeTierQuota --data '{"queryFreeTierQuotaRequest":{"models":["qwen3-max"]}}'`,
3636
`bl console call --api some.api.name --data '{"key":"value"}' --region cn-beijing`,
3737
],
3838
async run(config: Config, flags: GlobalFlags) {

packages/cli/src/commands/usage/free.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default defineCommand({
1818
options: [
1919
{
2020
flag: "--model <model>",
21-
description: "Model name to query (e.g. qwen3-vl-plus, qwen-turbo)",
21+
description: "Model name to query (e.g. qwen3-max, qwen-turbo)",
2222
required: true,
2323
},
2424
{
@@ -27,9 +27,9 @@ export default defineCommand({
2727
},
2828
],
2929
examples: [
30-
"bl usage free --model qwen3-vl-plus",
30+
"bl usage free --model qwen3-max",
3131
"bl usage free --model qwen-turbo --output json",
32-
"bl usage free --model qwen3-vl-plus --region cn-beijing",
32+
"bl usage free --model qwen3-max --region cn-beijing",
3333
],
3434
async run(config: Config, flags: GlobalFlags) {
3535
const model = flags.model as string;

0 commit comments

Comments
 (0)