From eee62a46a23f925e7ee891ef0c0ee5ca2271a462 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Wed, 14 Jan 2026 17:43:52 -0500 Subject: [PATCH] docs: update minimax preset references to 'mm' Align README and CLI help with actual preset ID. --- README.md | 2 +- src/commands/api-command.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a4cd177..92adff4a 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ The dashboard provides visual management for all account types: | **GLM** | API Key | `ccs glm` | Cost-optimized execution | | **Kimi** | API Key | `ccs kimi` | Long-context, thinking mode | | **Azure Foundry** | API Key | `ccs foundry` | Claude via Microsoft Azure | -| **Minimax** | API Key | `ccs minimax` | M2 series, 1M context | +| **Minimax** | API Key | `ccs mm` | M2 series, 1M context | | **DeepSeek** | API Key | `ccs deepseek` | V3.2 and R1 reasoning | | **Qwen** | API Key | `ccs qwen` | Alibaba Cloud, qwen3-coder | diff --git a/src/commands/api-command.ts b/src/commands/api-command.ts index 06dfa95f..1c51b9fa 100644 --- a/src/commands/api-command.ts +++ b/src/commands/api-command.ts @@ -426,7 +426,7 @@ async function showHelp(): Promise { console.log(''); console.log(subheader('Options')); console.log( - ` ${color('--preset ', 'command')} Use provider preset (openrouter, glm, glmt, kimi, foundry, minimax, deepseek, qwen)` + ` ${color('--preset ', 'command')} Use provider preset (openrouter, glm, glmt, kimi, foundry, mm, deepseek, qwen)` ); console.log(` ${color('--base-url ', 'command')} API base URL (create)`); console.log(` ${color('--api-key ', 'command')} API key (create)`); @@ -442,7 +442,7 @@ async function showHelp(): Promise { console.log(` ${color('glmt', 'command')} GLMT - GLM with Thinking mode`); console.log(` ${color('kimi', 'command')} Kimi - Moonshot AI reasoning model`); console.log(` ${color('foundry', 'command')} Azure Foundry - Claude via Microsoft Azure`); - console.log(` ${color('minimax', 'command')} Minimax - M2 series with 1M context`); + console.log(` ${color('mm', 'command')} Minimax - M2 series with 1M context`); console.log(` ${color('deepseek', 'command')} DeepSeek - V3.2 and R1 reasoning (128K)`); console.log( ` ${color('qwen', 'command')} Qwen - Alibaba Cloud qwen3-coder-plus (256K)`