-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathconfig.example.json
More file actions
68 lines (68 loc) · 1.54 KB
/
config.example.json
File metadata and controls
68 lines (68 loc) · 1.54 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
58
59
60
61
62
63
64
65
66
67
68
{
"agents": {
"defaults": {
"workspace": "~/.picoclaw/workspace",
"restrict_to_workspace": false,
"model_name": "pico-mini-local",
"max_tokens": 2000,
"temperature": 0.7,
"max_tool_iterations": 10
}
},
"model_list": [
{
"model_name": "pico-mini-local",
"model": "openai/qwen3.5-35b-a3b",
"api_base": "http://localhost:8000/v1",
"api_key": "local",
"request_timeout": 300
}
],
"channels": {},
"tools": {
"web": {
"enabled": true,
"duckduckgo": {
"enabled": true,
"max_results": 5
}
},
"exec": {
"enabled": true,
"enable_deny_patterns": true
},
"mcp": {
"enabled": true,
"discovery": {
"enabled": true,
"ttl": 5,
"max_search_results": 5,
"use_bm25": true
},
"servers": {
"duckduckgo-search": {
"enabled": true,
"command": "npx",
"args": ["-y", "@nicoleahmed/duckduckgo-mcp-server"]
},
"fetch": {
"enabled": true,
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-fetch"]
}
}
},
"read_file": { "enabled": true },
"write_file": { "enabled": true },
"edit_file": { "enabled": true },
"append_file": { "enabled": true },
"list_dir": { "enabled": true },
"web_fetch": { "enabled": true },
"subagent": { "enabled": true },
"spawn": { "enabled": true }
},
"gateway": {
"host": "127.0.0.1",
"port": 18790
}
}