-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.example.json
More file actions
57 lines (57 loc) · 1.61 KB
/
config.example.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"shared": {
"ownerTelegramId": "123456789",
"cwd": "/Users/you",
"httpProxy": "",
"defaultVerboseLevel": 1,
"executor": "direct",
"tasksDb": "tasks.db",
"enableGroupSharedContext": true,
"groupContextMaxMessages": 30,
"groupContextMaxTokens": 3000,
"groupContextTtlMs": 1200000,
"sharedContextBackend": "sqlite",
"sharedContextDb": "shared-context.db",
"sharedContextJsonPath": "shared-context.json",
"redisUrl": "redis://localhost:6379",
"triggerDedupTtlMs": 300000,
"sessionTimeoutMs": 900000,
"a2aEnabled": false,
"a2aPorts": { "claude": 18810, "codex": 18811, "gemini": 18812 },
"a2aMaxGeneration": 2,
"a2aCooldownMs": 60000,
"a2aMaxResponsesPerWindow": 3,
"a2aWindowMs": 300000,
"a2aCircuitBreakerThreshold": 3,
"a2aCircuitBreakerResetMs": 30000,
"streamPreviewEnabled": true,
"streamPreviewIntervalMs": 700,
"streamPreviewMinDeltaChars": 20,
"streamPreviewMaxChars": 3900,
"streamPreviewActivationChars": 50
},
"backends": {
"claude": {
"enabled": true,
"telegramBotToken": "123456:replace-me",
"sessionsDb": "sessions.db",
"model": "claude-sonnet-4-7",
"permissionMode": "default"
},
"codex": {
"enabled": true,
"telegramBotToken": "123456:replace-me",
"sessionsDb": "sessions-codex.db",
"model": ""
},
"gemini": {
"enabled": false,
"telegramBotToken": "",
"sessionsDb": "sessions-gemini.db",
"model": "gemini-2.5-pro",
"oauthClientId": "",
"oauthClientSecret": "",
"googleCloudProject": ""
}
}
}