-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevit.core.toml.example
More file actions
52 lines (43 loc) · 1.09 KB
/
devit.core.toml.example
File metadata and controls
52 lines (43 loc) · 1.09 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
# DevIt Core Configuration — copy to devit.core.toml and adjust paths
#
# This file is local to your machine. Never commit devit.core.toml itself.
[workspace]
sandbox_root = "/path/to/your/workspace"
allowed_paths = [
"/path/to/your/workspace",
]
[daemon]
socket = "/tmp/devitd.sock"
mode = "daemon"
[orchestration.capabilities.screenshot]
enabled = true
rate_limit = "10/minute"
[orchestration.capabilities.desktop]
enabled = true
keyboard = true
mouse = true
rate_limit = "100/minute"
[tools.screenshot]
enabled = true
backend = "scrot"
format = "png"
output_dir = ".devit/screenshots"
[tools.desktop]
enabled = true
[workers.claude_code]
type = "cli"
binary = "claude"
args = ["--print", "--output-format", "json", "--dangerously-skip-permissions"]
timeout = 60
parse_mode = "json"
[workers.ollama_test]
type = "cli"
binary = "ollama"
args = ["run", "{model}", "--format", "json"]
timeout = 256
parse_mode = "json"
default_model = "mistral-nemo:12b"
allowed_models = ["llama3:8b", "llama3.3:70b", "mistral-nemo:12b"]
[orchestration.notify_hook]
enabled = false
# command = "/path/to/your/notify-hook"