📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-02 16:01:55 +00:00
parent 8696cd9e52
commit ac7fffe532
834 changed files with 153251 additions and 1426 deletions
@@ -53,14 +53,14 @@ Always use these flags in non-interactive (agent/CI) contexts:
### text chat
Chat completion. Default model: `MiniMax-M2.7`.
Chat completion. Default model: `MiniMax-M3`. Pass `--model MiniMax-M2.7` for the previous-generation default when reproducing older outputs.
```bash
mmx text chat --message <text> [flags]
```
```bash
# Single message
# Single message (uses MiniMax-M3 by default)
mmx text chat --message "user:What is MiniMax?" --output json --quiet
# Multi-turn with system prompt
@@ -69,6 +69,9 @@ mmx text chat \
--message "user:Write fizzbuzz in Python" \
--output json
# Pin to the previous-generation model
mmx text chat --model MiniMax-M2.7 --message "user:Hello" --output json
# From file
cat conversation.json | mmx text chat --messages-file - --output json
```