Merge pull request #86 from modelstudioai/feat/change-model

feat: change vision describe example model
This commit is contained in:
clark-fc
2026-07-03 17:52:02 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -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
+1 -1
View File
@@ -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
```