-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmax-quality.settings.json
More file actions
34 lines (31 loc) · 912 Bytes
/
Copy pathmax-quality.settings.json
File metadata and controls
34 lines (31 loc) · 912 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
27
28
29
30
31
32
33
34
{
"tools": { "bash": "on" },
"agent_engine_config": {
"pipeline_worker_model": "anthropic/claude-fable-5",
"pipeline_judge_model": "openai/gpt-5.5",
"pipeline_triage_model": "deepseek/deepseek-chat",
"default_model": "anthropic/claude-fable-5",
"allowed_models": [
"anthropic/claude-fable-5",
"openai/gpt-5.5",
"gemini/gemini-3-pro",
"deepseek/deepseek-chat"
],
"auto_mode": "off",
"effort_auto": "off",
"reasoning_auto": "off",
"agents": {
"worker": {
"effort": "xhigh",
"reasoning": "on"
},
"judge": {
"effort": "high",
"reasoning": "on",
"prompt": "You are a strict, evidence-first code judge. Claimed success without deterministic evidence is a FAIL.",
"params": { "service_tier": "priority" }
},
"triage": { "effort": "low", "reasoning": "off" }
}
}
}