Skip to content

Commit a830965

Browse files
committed
feat(omni): add new voice option to omni chat command
1 parent 62ad876 commit a830965

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

packages/cli/src/commands/omni/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { promptText, failIfMissing } from "../../output/prompt.ts";
2121
import { emitResult } from "../../output/output.ts";
2222
import { resolveOutputDir, resolveCredential } from "bailian-cli-core";
2323

24-
const OMNI_VOICES = ["Chelsie", "Cherry", "Ethan", "Serena", "Tina"];
24+
const OMNI_VOICES = ["Chelsie", "Cherry", "Ethan", "Serena", "Sunny", "Tina"];
2525

2626
/**
2727
* Extension to input audio format.

packages/cli/src/commands/video/edit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default defineCommand({
8181
},
8282
],
8383
examples: [
84-
'bl video edit --video https://example.com/input.mp4 --prompt " Convert the entire scene to claymation style"',
84+
'bl video edit --video https://example.com/input.mp4 --prompt "Convert the entire scene to claymation style"',
8585
'bl video edit --video https://example.com/input.mp4 --prompt "Replace the outfit with the style shown in the image" --ref-image https://example.com/clothes.png',
8686
'bl video edit --video https://example.com/input.mp4 --prompt "Convert to anime style" --resolution 720P --download output.mp4',
8787
'bl video edit --video https://example.com/input.mp4 --prompt "Put clothes on the kitten in the video" --watermark false',

skills/bailian-cli/reference/omni.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ Index: [index.md](index.md)
2323

2424
#### Options
2525

26-
| Flag | Type | Required | Description |
27-
| ---------------------- | ------- | -------- | ----------------------------------------------------------------------------- |
28-
| `--message <text>` | array | yes | Message text (repeatable, prefix role: to set role) |
29-
| `--model <model>` | string | no | Model ID (default: qwen3.5-omni-plus) |
30-
| `--system <text>` | string | no | System prompt |
31-
| `--image <url>` | array | no | Image URL or local file (repeatable) |
32-
| `--audio <url>` | array | no | Audio URL or local file (.wav/.mp3/.amr/.aac/.m4a/.ogg/.3gp/.3gpp) |
33-
| `--video <url>` | array | no | Video file URL / local path, or comma-separated frame URLs |
34-
| `--voice <voice>` | string | no | Output voice (default: Cherry). Options: Chelsie, Cherry, Ethan, Serena, Tina |
35-
| `--audio-format <fmt>` | string | no | Audio output format (default: wav) |
36-
| `--audio-out <path>` | string | no | Save audio to file (default: auto-generate) |
37-
| `--text-only` | boolean | no | Output text only, no audio generation |
38-
| `--max-tokens <n>` | number | no | Maximum tokens to generate |
39-
| `--temperature <n>` | number | no | Sampling temperature (0.0, 2.0] |
26+
| Flag | Type | Required | Description |
27+
| ---------------------- | ------- | -------- | ------------------------------------------------------------------------------------ |
28+
| `--message <text>` | array | yes | Message text (repeatable, prefix role: to set role) |
29+
| `--model <model>` | string | no | Model ID (default: qwen3.5-omni-plus) |
30+
| `--system <text>` | string | no | System prompt |
31+
| `--image <url>` | array | no | Image URL or local file (repeatable) |
32+
| `--audio <url>` | array | no | Audio URL or local file (.wav/.mp3/.amr/.aac/.m4a/.ogg/.3gp/.3gpp) |
33+
| `--video <url>` | array | no | Video file URL / local path, or comma-separated frame URLs |
34+
| `--voice <voice>` | string | no | Output voice (default: Cherry). Options: Chelsie, Cherry, Ethan, Serena, Sunny, Tina |
35+
| `--audio-format <fmt>` | string | no | Audio output format (default: wav) |
36+
| `--audio-out <path>` | string | no | Save audio to file (default: auto-generate) |
37+
| `--text-only` | boolean | no | Output text only, no audio generation |
38+
| `--max-tokens <n>` | number | no | Maximum tokens to generate |
39+
| `--temperature <n>` | number | no | Sampling temperature (0.0, 2.0] |
4040

4141
#### Examples
4242

skills/bailian-cli/reference/video.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ bl video download --task-id 3b256896-xxxx --out video.mp4 --quiet
7474
#### Examples
7575

7676
```bash
77-
bl video edit --video https://example.com/input.mp4 --prompt " Convert the entire scene to claymation style"
77+
bl video edit --video https://example.com/input.mp4 --prompt "Convert the entire scene to claymation style"
7878
```
7979

8080
```bash

0 commit comments

Comments
 (0)