-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
50 lines (50 loc) · 887 Bytes
/
config.example.json
File metadata and controls
50 lines (50 loc) · 887 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"mode": "simple",
"roles": {
"model": "claude",
"modelType": "claude-sonnet-4-5",
"role": "architect",
"temperature": 0.7,
"maxTokens": 4096
},
"tools": {
"enabled": [
"read_file",
"write_file",
"test_runner",
"code_search"
],
"securityRules": {
"allowedPaths": [
"./src",
"./tests",
"./"
],
"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"
}
}