-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbrowserbird.example.json
More file actions
57 lines (57 loc) · 1.15 KB
/
browserbird.example.json
File metadata and controls
57 lines (57 loc) · 1.15 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
{
"timezone": "UTC",
"slack": {
"botToken": "env:SLACK_BOT_TOKEN",
"appToken": "env:SLACK_APP_TOKEN",
"requireMention": true,
"coalesce": {
"debounceMs": 3000,
"bypassDms": true
},
"channels": ["*"],
"quietHours": {
"enabled": false,
"start": "23:00",
"end": "08:00",
"timezone": "Asia/Tbilisi"
}
},
"agents": [
{
"id": "default",
"name": "BrowserBird",
"model": "sonnet",
"fallbackModel": "haiku",
"maxBudgetUsd": 5,
"maxTurns": 50,
"permissionMode": "auto",
"systemPrompt": "You are responding in a Slack workspace. Be concise, helpful, and natural.",
"channels": ["*"]
}
],
"sessions": {
"ttlHours": 72,
"maxConcurrent": 5,
"processTimeoutMs": 300000
},
"database": {
"retentionDays": 30
},
"browser": {
"enabled": false,
"mcpConfigPath": null,
"vncPort": 5900,
"novncPort": 6080,
"novncHost": "localhost"
},
"automations": {
"maxAttempts": 3,
"maxConsecutiveFailures": 2
},
"web": {
"enabled": true,
"host": "127.0.0.1",
"port": 18800,
"corsOrigin": ""
}
}