Skip to content

Commit 115f462

Browse files
committed
docs(text): drop MiniMax-M2.7-highspeed from example commands
MiniMax-M2.7-highspeed is no longer the recommended fast variant in the M3 era. Reword the chat/repl examples to demonstrate --system without --model, letting the new default (M3) apply. Help descriptions already reference M3 only. Follow-up to the previous commit on this branch; no code or test changes.
1 parent 22c1a6b commit 115f462

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/text/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default defineCommand({
171171
],
172172
examples: [
173173
'mmx text chat --message "What is MiniMax?"',
174-
'mmx text chat --model MiniMax-M2.7-highspeed --system "You are a coding assistant." --message "Write fizzbuzz in Python"',
174+
'mmx text chat --system "You are a coding assistant." --message "Write fizzbuzz in Python"',
175175
'mmx text chat --message "Hello" --message "assistant:Hi!" --message "How are you?"',
176176
'cat conversation.json | mmx text chat --messages-file - --stream',
177177
'mmx text chat --message "Hello" --output json',

src/commands/text/repl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export default defineCommand({
302302
],
303303
examples: [
304304
'mmx text repl',
305-
'mmx text repl --model MiniMax-M2.7-highspeed --system "You are a coding assistant."',
305+
'mmx text repl --system "You are a coding assistant."',
306306
'mmx text repl --temperature 0.7 --max-tokens 8192',
307307
],
308308
async run(config: Config, flags: GlobalFlags) {

0 commit comments

Comments
 (0)