Skip to content
Open
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
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ GEMINI_API_KEY=
HUGGINGFACE_API_KEY=
GROQ_API_KEY=
XAI_API_KEY=
MINIMAX_API_KEY=
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,22 @@ DEEPSEEK_API_KEY=your_deepseek_api_key
COMPLETION_MODEL=deepseek/deepseek-chat auto main
```

##### MiniMax

* set the `MINIMAX_API_KEY` in the `.env` file. MiniMax exposes an OpenAI-compatible endpoint, so we route requests through the `openai/` provider in LiteLLM.

```bash
MINIMAX_API_KEY=your_minimax_api_key
```

* run the following command to start Auto-Deep-Research.

```bash
OPENAI_API_KEY=$MINIMAX_API_KEY COMPLETION_MODEL=openai/MiniMax-M2.7 API_BASE_URL=https://api.minimax.io/v1 auto main
```

> Available models: `MiniMax-M2.7`, `MiniMax-M2.7-highspeed`. Use `https://api.minimaxi.com/v1` as `API_BASE_URL` for the Mainland China region.


After the CLI mode is started, you can see the start page of AutoAgent:

Expand Down