Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/commands/src/commands/vision/describe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default defineCommand({
'--image https://example.com/photo.jpg --prompt "What breed is this dog?"',
'--video https://example.com/video.mp4 --prompt "Summarize the video content"',
"--video ./local-video.mp4",
'--image photo.png --prompt "Extract the text" --model qwen-vl-plus',
'--image photo.png --prompt "Extract the text" --model qwen3-vl-plus',
],
async run(config: Config, flags: GlobalFlags) {
let image = (flags.image ?? (flags._positional as string[] | undefined)?.[0]) as
Expand Down
2 changes: 1 addition & 1 deletion skills/bailian-cli/reference/vision.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ bl vision describe --video ./local-video.mp4
```

```bash
bl vision describe --image photo.png --prompt "Extract the text" --model qwen-vl-plus
bl vision describe --image photo.png --prompt "Extract the text" --model qwen3-vl-plus
```