-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.json
More file actions
48 lines (48 loc) · 1.22 KB
/
config.example.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"host": "127.0.0.1",
"port": 8080,
"db": "nullboiler.db",
"api_token": null,
"self_url": null,
"workers": [
{
"id": "nullclaw-1",
"url": "http://localhost:3000/webhook",
"token": "set_same_value_as_nullclaw_gateway_paired_tokens",
"protocol": "webhook",
"tags": ["coder", "researcher"],
"max_concurrent": 3
},
{
"id": "zeroclaw-1",
"url": "http://localhost:42617/api/chat",
"token": "set_zeroclaw_gateway_token",
"protocol": "api_chat",
"tags": ["reviewer"],
"max_concurrent": 2
},
{
"id": "openclaw-1",
"url": "http://localhost:42617/v1/chat/completions",
"token": "set_gateway_token",
"protocol": "openai_chat",
"model": "anthropic/claude-sonnet-4-6",
"tags": ["writer", "editor"],
"max_concurrent": 2
},
{
"id": "nullclaw-a2a",
"url": "http://localhost:3000",
"token": "set_same_value_as_nullclaw_gateway_paired_tokens",
"protocol": "a2a",
"tags": ["coder", "agent"],
"max_concurrent": 3
}
],
"engine": {
"poll_interval_ms": 500,
"default_timeout_ms": 300000,
"default_max_attempts": 1,
"health_check_interval_ms": 30000
}
}