Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ understudy wizard
| **OpenAI** | `OPENAI_API_KEY` | GPT-4.x, GPT-5.x, `o*`, and related OpenAI models available in your current Understudy runtime |
| **OpenAI Codex** | `OPENAI_API_KEY` or OAuth | Codex/Responses models such as `gpt-5.4`; shares auth with OpenAI |
| **Google / Gemini** | `GOOGLE_API_KEY` or `GEMINI_API_KEY` | `gemini` is accepted as a provider alias for `google` |
| **MiniMax** | `MINIMAX_API_KEY` | `MiniMax-M2.7`, `MiniMax-M2.7-highspeed`, `MiniMax-M2.5`, `MiniMax-M2.5-highspeed`; use `minimax-cn` provider for the China endpoint |
| **MiniMax** | `MINIMAX_API_KEY` | `MiniMax-M3`, `MiniMax-M2.7`, `MiniMax-M2.7-highspeed`; use `minimax-cn` provider for the China endpoint |
| **Additional compatible providers** | Provider-specific auth | Depending on your current Understudy runtime, examples may include GitHub Copilot, OpenRouter, xAI, Mistral, Groq, Bedrock, Vertex, and more |
| **Custom providers / models** | Provider-specific auth | You can add custom model entries through the underlying model registry |

Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ understudy wizard
| **OpenAI** | `OPENAI_API_KEY` | 当前 Understudy 运行时可用的 GPT-4.x、GPT-5.x、`o*` 等 OpenAI 模型 |
| **OpenAI Codex** | `OPENAI_API_KEY` 或 OAuth | 例如 `gpt-5.4` 这类 Codex / Responses 模型;与 OpenAI 共用认证 |
| **Google / Gemini** | `GOOGLE_API_KEY` 或 `GEMINI_API_KEY` | `gemini` 可作为 `google` 的提供方别名 |
| **MiniMax** | `MINIMAX_API_KEY` | `MiniMax-M2.7`、`MiniMax-M2.7-highspeed`、`MiniMax-M2.5`、`MiniMax-M2.5-highspeed`;使用 `minimax-cn` 提供方可切换至国内端点 |
| **MiniMax** | `MINIMAX_API_KEY` | `MiniMax-M3`、`MiniMax-M2.7`、`MiniMax-M2.7-highspeed`;使用 `minimax-cn` 提供方可切换至国内端点 |
| **更多兼容提供方** | 提供方自己的认证方式 | 取决于当前 Understudy 运行时,常见示例包括 GitHub Copilot、OpenRouter、xAI、Mistral、Groq、Bedrock、Vertex 等 |
| **自定义提供方 / 模型** | 提供方自己的认证方式 | 可以通过底层 model registry 增加自定义模型条目 |

Expand Down
3 changes: 1 addition & 2 deletions apps/cli/src/commands/model-support.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ export const BUILTIN_MODELS: Record<string, string[]> = {
"gemini-1.5-pro",
],
minimax: [
"MiniMax-M3",
Comment thread
s-JoL marked this conversation as resolved.
"MiniMax-M2.7",
"MiniMax-M2.7-highspeed",
"MiniMax-M2.5",
"MiniMax-M2.5-highspeed",
],
};

Expand Down
Loading