-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig.example.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathconfig.example.json
File metadata and controls
65 lines (65 loc) · 1.55 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"schemaVersion": 1,
"output": {
"jsonlPath": "./out/{requestId}.events.jsonl",
"resultPath": "./out/{requestId}.result.json",
"summaryPath": "./out/{requestId}.summary.md"
},
"defaults": {
"defaultAgents": ["architect", "bughunter"],
"participantsPolicy": {
"minParticipants": 2,
"onInsufficientParticipants": "interrupt"
},
"language": "en",
"minRounds": 2,
"maxRounds": 3,
"perTaskTimeoutMs": 1200000,
"perRoundTimeoutMs": 1200000,
"consensusThreshold": 1,
"composer": "builtin",
"includeDeliberationTrace": false,
"traceLevel": "compact"
},
"providers": {
"openai_local": {
"type": "api",
"protocol": "openai-compatible",
"baseUrl": "http://127.0.0.1:11434/v1",
"apiKeyEnv": "OPENAI_API_KEY",
"models": {
"gpt-4.1": {
"providerModel": "gpt-4.1",
"reasoning": "minimal"
}
}
},
"claude_cli": {
"type": "cli",
"cliType": "claude",
"command": "claude",
"args": ["--print", "--permission-mode", "bypassPermissions"],
"models": {
"claude-sonnet-4-5": {
"providerModel": "claude-sonnet-4-5",
"reasoning": "medium"
}
}
}
},
"agents": [
{
"id": "architect",
"provider": "claude_cli",
"model": "claude-sonnet-4-5",
"role": "architecture-reviewer",
"reasoning": "high"
},
{
"id": "bughunter",
"provider": "openai_local",
"model": "gpt-4.1",
"role": "correctness-reviewer"
}
]
}