Skip to content

Commit 78e5e6c

Browse files
author
PR Bot
committed
feat: upgrade MiniMax default model to M2.7
- Update MiniMax-M2.7 and MiniMax-M2.7-highspeed as default models - Update config, README, and docs references - Keep all previous models as alternatives
1 parent 64dc033 commit 78e5e6c

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ OpenEvolve implements a sophisticated **evolutionary coding pipeline** that goes
202202
<details>
203203
<summary><b>Advanced LLM Integration</b></summary>
204204

205-
- **Universal API**: Works with OpenAI, Google, MiniMax, local models, and proxies
205+
- **Universal API**: Works with OpenAI, Google, MiniMax (M2.7), local models, and proxies
206206
- **Intelligent Ensembles**: Weighted combinations with sophisticated fallback
207207
- **Test-Time Compute**: Enhanced reasoning through proxy systems (see [OptiLLM setup](#llm-provider-setup))
208208
- **Plugin Ecosystem**: Support for advanced reasoning plugins
@@ -281,7 +281,7 @@ docker run --rm -v $(pwd):/app ghcr.io/algorithmicsuperintelligence/openevolve:l
281281
- **o3-mini**: ~$0.03-0.12 per iteration (more cost-effective)
282282
- **Gemini-2.5-Pro**: ~$0.08-0.30 per iteration
283283
- **Gemini-2.5-Flash**: ~$0.01-0.05 per iteration (fastest and cheapest)
284-
- **MiniMax-M2.5**: ~$0.02-0.08 per iteration (204K context, OpenAI-compatible)
284+
- **MiniMax-M2.7**: ~$0.02-0.08 per iteration (204K context, OpenAI-compatible)
285285
- **Local models**: Nearly free after setup
286286
- **OptiLLM**: Use cheaper models with test-time compute for better results
287287

@@ -332,9 +332,9 @@ llm:
332332
api_base: "https://api.minimax.io/v1"
333333
api_key: "${MINIMAX_API_KEY}"
334334
models:
335-
- name: "MiniMax-M2.5"
335+
- name: "MiniMax-M2.7"
336336
weight: 0.6
337-
- name: "MiniMax-M2.5-highspeed"
337+
- name: "MiniMax-M2.7-highspeed"
338338
weight: 0.4
339339
```
340340

configs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The main configuration file containing all available options with sensible defau
1313
Use this file as a template for your own configurations.
1414

1515
### `minimax_config.yaml`
16-
A complete configuration for using [MiniMax](https://www.minimaxi.com/) models (MiniMax-M2.5, MiniMax-M2.5-highspeed) with OpenEvolve. MiniMax provides an OpenAI-compatible API with 204K context window support.
16+
A complete configuration for using [MiniMax](https://www.minimaxi.com/) models (MiniMax-M2.7, MiniMax-M2.7-highspeed) with OpenEvolve. MiniMax provides an OpenAI-compatible API with 204K context window support.
1717

1818
### `island_config_example.yaml`
1919
A practical example configuration demonstrating proper island-based evolution setup. Shows:

configs/minimax_config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# OpenEvolve Configuration for MiniMax
2-
# MiniMax provides OpenAI-compatible API with powerful models like MiniMax-M2.5
2+
# MiniMax provides OpenAI-compatible API with powerful models like MiniMax-M2.7
33
# Get your API key from: https://platform.minimaxi.com/
44
#
55
# Set your API key:
@@ -18,14 +18,14 @@ llm:
1818

1919
# MiniMax models for evolution
2020
models:
21-
- name: "MiniMax-M2.5"
21+
- name: "MiniMax-M2.7"
2222
weight: 0.6
23-
- name: "MiniMax-M2.5-highspeed"
23+
- name: "MiniMax-M2.7-highspeed"
2424
weight: 0.4
2525

2626
# MiniMax models for LLM feedback
2727
evaluator_models:
28-
- name: "MiniMax-M2.5-highspeed"
28+
- name: "MiniMax-M2.7-highspeed"
2929
weight: 1.0
3030

3131
# Generation parameters

0 commit comments

Comments
 (0)