-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
35 lines (35 loc) · 1.21 KB
/
Copy pathconfig.example.json
File metadata and controls
35 lines (35 loc) · 1.21 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
{
"owner": "stamat",
"bot_token": "",
"poll_interval": 60,
"allowed_tools": "Read,Edit,Write,Grep,Glob,Bash(git:*)",
"job_timeout": 3600,
"retry_delay": 18600,
"context_limit": 50,
"ack_model": "",
"runners": {
"claude": ["claude", "-p", "{prompt}",
"--model", "claude-opus-4-8",
"--effort", "high",
"--output-format", "json",
"--permission-mode", "acceptEdits",
"--allowed-tools", "{allowed_tools}"],
"fable": ["claude", "-p", "{prompt}",
"--model", "claude-fable-5",
"--effort", "xhigh",
"--output-format", "json",
"--permission-mode", "acceptEdits",
"--allowed-tools", "{allowed_tools}"],
"haiku": ["claude", "-p", "{prompt}",
"--model", "claude-haiku-4-5-20251001",
"--output-format", "json",
"--permission-mode", "acceptEdits",
"--allowed-tools", "{allowed_tools}"],
"mini": ["uvx", "--with", "fastapi", "--with", "orjson", "mini-swe-agent",
"-t", "{prompt}", "-y", "--exit-immediately", "--cost-limit", "0"]
},
"env": {
"ANTHROPIC_BASE_URL": "",
"ANTHROPIC_MODEL": ""
}
}