Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions docs/docs/waveai-modes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down Expand Up @@ -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:
Expand Down
Loading