forked from hwfengcs/DM-Code-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
26 lines (26 loc) · 783 Bytes
/
Copy pathconfig.json.example
File metadata and controls
26 lines (26 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"provider": "deepseek",
"model": "deepseek-chat",
"base_url": "https://api.deepseek.com",
"max_steps": 100,
"temperature": 0.7,
"show_steps": false,
"max_observation_chars": 8000,
"context_token_budget": 24000,
"enable_edit_guard": true,
"llm_max_retries": 2,
"enable_reflexion": false,
"max_trials": 3,
"enable_critic": false,
"enable_adaptive_replanning": false,
"max_replans": -1,
"enable_repeated_failure_policy_experiment": false,
"enable_evolution": false,
"enable_memory_hygiene": false,
"enable_llm_compression": false,
"enable_circuit_breaker": false,
"circuit_breaker_threshold": 3,
"circuit_breaker_cooldown": 5,
"reflexion_memory_file": "",
"_comment": "Gemini uses the google.genai SDK and does not require base_url."
}