-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.advanced.example.json
More file actions
67 lines (67 loc) · 1.29 KB
/
config.advanced.example.json
File metadata and controls
67 lines (67 loc) · 1.29 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
66
67
{
"comment": "Advanced mode configuration with three different models for different roles",
"mode": "advanced",
"roles": {
"architect": {
"model": "claude",
"modelType": "claude-opus-4-1",
"temperature": 0.5,
"maxTokens": 4096
},
"developer": {
"model": "gpt",
"modelType": "gpt-4-turbo",
"temperature": 0.7,
"maxTokens": 4096
},
"reviewer": {
"model": "deepseek",
"modelType": "deepseek-chat",
"temperature": 0.3,
"maxTokens": 2048
}
},
"tools": {
"enabled": [
"read_file",
"write_file",
"test_runner",
"code_search",
"git_diff",
"complexity_analyzer"
],
"securityRules": {
"allowedPaths": [
"./src",
"./tests",
"./config",
"./"
],
"forbiddenPaths": [
"/etc",
"/root",
"/sys",
"/proc",
"./.git",
"./node_modules"
],
"maxFileSize": 10485760,
"timeoutMs": 30000
}
},
"apiKeys": {
"claude": "sk-ant-...",
"openai": "sk-...",
"deepseek": "sk-..."
},
"retryPolicy": {
"maxRetries": 3,
"backoffMs": 1000,
"maxBackoffMs": 30000,
"backoffMultiplier": 2
},
"logging": {
"level": "info",
"format": "text"
}
}