-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.jsonc
More file actions
56 lines (56 loc) · 1.11 KB
/
config.jsonc
File metadata and controls
56 lines (56 loc) · 1.11 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
{
"embedding": {
"provider": "local",
"model": "all-MiniLM-L6-v2",
"dimensions": 384,
"baseUrl": "",
"apiKey": ""
},
"dedupThreshold": 0.25,
"logging": {
"enabled": false,
"debug": false,
"file": ""
},
"compaction": {
"customPrompt": true,
"maxContextTokens": 4000
},
"memoryInjection": {
"enabled": true,
"debug": false,
"maxTokens": 2000,
"cacheTtlMs": 30000
},
"messagesTransform": {
"enabled": true,
"debug": false
},
"executionModel": "",
"auditorModel": "",
// Per-agent overrides (temperature range: 0.0 - 2.0)
// "agents": {
// "architect": { "temperature": 0.0 },
// "librarian": { "temperature": 0.0 },
// "auditor": { "temperature": 0.0 },
// "code": {}
// },
"loop": {
"enabled": true,
"defaultMaxIterations": 15,
"cleanupWorktree": false,
"defaultAudit": true,
"model": "",
"minAudits": 1,
"stallTimeoutMs": 60000
},
"sandbox": {
"mode": "off",
"image": "ocm-sandbox:latest"
},
"tui": {
"sidebar": true,
"showLoops": true,
"showVersion": true
}
}