Skip to content

Commit c4a72e4

Browse files
committed
doc(config): add Aliyun BaiLian CoT analysis and update detailed configurations
1 parent bc8be6c commit c4a72e4

1 file changed

Lines changed: 31 additions & 2 deletions

File tree

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,29 @@ llm:
354354
model: "moa&readurls-o3" # Test-time compute + web access
355355
```
356356
357+
</details>
358+
<details>
359+
<summary><b>🕵 Aliyun BaiLian(CoT analysis)</b></summary>
360+
The `enable_thinking` parameter can only be enabled when specifying a model in the `models` list.
361+
362+
```yaml
363+
# config.yaml
364+
llm:
365+
api_base: "https://dashscope.aliyuncs.com/compatible-mode/v1"
366+
thinking_budget: 2048
367+
models:
368+
- name: "qwen-flash"
369+
weight: 0.5
370+
enable_thinking: false
371+
- name: "qwen-plus"
372+
weight: 0.5
373+
enable_thinking: true
374+
```
375+
376+
```bash
377+
export OPENAI_API_KEY="your-bailian-api-key"
378+
```
379+
357380
</details>
358381

359382
## Examples Gallery
@@ -450,12 +473,18 @@ random_seed: 42 # Full reproducibility
450473
451474
llm:
452475
# Ensemble configuration
476+
api_base: "https://dashscope.aliyuncs.com/compatible-mode/v1"
477+
thinking_budget: 2048 # budget for thinking models, only work when enable_thinking
453478
models:
454-
- name: "gemini-2.5-pro"
479+
- name: "qwen-plus"
455480
weight: 0.6
456-
- name: "gemini-2.5-flash"
481+
enable_thinking: true # important: if the API provider donot provide this paramters, set this will cause fail!
482+
- name: "qwen-flash"
457483
weight: 0.4
484+
enable_thinking: false
458485
temperature: 0.7
486+
max_tokens: 16384
487+
timeout: 300
459488
460489
database:
461490
# MAP-Elites quality-diversity

0 commit comments

Comments
 (0)