From 8c807fd8519b0a39183103c89686bd2c225a1876 Mon Sep 17 00:00:00 2001 From: Francisco August Date: Mon, 17 Aug 2026 10:43:44 -0400 Subject: [PATCH] docs: add MiniMax AI provider to Wave AI modes --- docs/docs/waveai-modes.mdx | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/docs/docs/waveai-modes.mdx b/docs/docs/waveai-modes.mdx index 93403db800..4e649da765 100644 --- a/docs/docs/waveai-modes.mdx +++ b/docs/docs/waveai-modes.mdx @@ -36,6 +36,7 @@ Wave AI now supports provider-based configuration which automatically applies se - **`openrouter`** - OpenRouter API (automatically configures endpoint and secret name) [[see example](#openrouter)] - **`nanogpt`** - NanoGPT API (automatically configures endpoint and secret name) [[see example](#nanogpt)] - **`groq`** - Groq API (automatically configures endpoint and secret name) [[see example](#groq)] +- **`minimax`** - MiniMax AI (OpenAI-compatible API) [[see example](#minimax)] - **`google`** - Google AI (Gemini) [[see example](#google-ai-gemini)] - **`azure`** - Azure OpenAI Service (modern API) [[see example](#azure-openai-modern-api)] - **`azure-legacy`** - Azure OpenAI Service (legacy deployment API) [[see example](#azure-openai-legacy-deployment-api)] @@ -319,6 +320,60 @@ The provider automatically sets: For Groq, you must manually specify `ai:capabilities` based on your model's features. ::: +### MiniMax + +[MiniMax](https://platform.minimax.io/subscribe/token-plan) provides the MiniMax series of AI models with strong coding, reasoning, and multimodal capabilities. MiniMax uses an OpenAI-compatible API: + +```json +{ + "minimax-m3": { + "display:name": "MiniMax-M3", + "display:icon": "server", + "ai:apitype": "openai-chat", + "ai:model": "MiniMax-M3", + "ai:endpoint": "https://api.minimax.io/v1/chat/completions", + "ai:apitokensecretname": "MINIMAX_TOKEN", + "ai:capabilities": ["tools", "images", "pdfs"] + } +} +``` + +Store your MiniMax API token as a secret: + +```bash +wsh secret set MINIMAX_TOKEN=your_minimax_api_token +``` + +Other available MiniMax models include: + +```json +{ + "minimax-m2.7": { + "display:name": "MiniMax-M2.7", + "display:icon": "server", + "ai:apitype": "openai-chat", + "ai:model": "MiniMax-M2.7", + "ai:endpoint": "https://api.minimax.io/v1/chat/completions", + "ai:apitokensecretname": "MINIMAX_TOKEN", + "ai:capabilities": ["tools", "images", "pdfs"] + } +} +``` + +```json +{ + "minimax-m2.7-highspeed": { + "display:name": "MiniMax-M2.7 Highspeed", + "display:icon": "server", + "ai:apitype": "openai-chat", + "ai:model": "MiniMax-M2.7-highspeed", + "ai:endpoint": "https://api.minimax.io/v1/chat/completions", + "ai:apitokensecretname": "MINIMAX_TOKEN", + "ai:capabilities": ["tools", "images", "pdfs"] + } +} +``` + ### Google AI (Gemini) [Google AI](https://ai.google.dev) provides the Gemini family of models. Using the `google` provider simplifies configuration: