Skip to content

Commit 4b7a32a

Browse files
committed
docs: add per-modality default model configuration to skill
Document the new config keys for setting default models across text, speech, video, and music modalities.
1 parent aff1e03 commit 4b7a32a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

skill/SKILL.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,3 +403,26 @@ mmx config show
403403
export MINIMAX_API_KEY=sk-xxxxx
404404
export MINIMAX_REGION=cn
405405
```
406+
407+
### Default Model Configuration
408+
409+
Set per-modality defaults so you don't need `--model` every time:
410+
411+
```bash
412+
# Set defaults
413+
mmx config set --key default-text-model --value MiniMax-M2.7-highspeed
414+
mmx config set --key default-speech-model --value speech-2.8-hd
415+
mmx config set --key default-video-model --value MiniMax-Hailuo-2.3
416+
mmx config set --key default-music-model --value music-2.6
417+
418+
# Use without --model
419+
mmx text chat --message "Hello"
420+
mmx speech synthesize --text "Hello" --out hello.mp3
421+
mmx video generate --prompt "Ocean waves"
422+
mmx music generate --prompt "Upbeat pop" --instrumental
423+
424+
# --model still overrides per-call
425+
mmx text chat --model MiniMax-M2.7 --message "Hello"
426+
```
427+
428+
**Resolution priority**: `--model` flag > config default > hardcoded fallback.

0 commit comments

Comments
 (0)