forked from derisk-ai/OpenDerisk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathderisk.json
More file actions
46 lines (45 loc) · 883 Bytes
/
derisk.json
File metadata and controls
46 lines (45 loc) · 883 Bytes
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
{
"name": "OpenDeRisk",
"version": "0.1.0",
"default_model": {
"provider": "openai",
"model_id": "gpt-4",
"api_key": "",
"temperature": 0.7,
"max_tokens": 4096
},
"agents": {
"primary": {
"name": "primary",
"description": "主Agent",
"permission": {
"default_action": "ask",
"rules": {
"*": "allow",
"*.env": "ask",
"*.secret*": "ask"
}
},
"max_steps": 20,
"color": "#4A90E2"
}
},
"sandbox": {
"enabled": false,
"image": "python:3.11-slim",
"memory_limit": "512m",
"timeout": 300,
"network_enabled": false
},
"oauth2": {
"enabled": false,
"providers": [],
"admin_users": []
},
"workspace": "/Users/tuyang/.derisk/workspace",
"log_level": "INFO",
"server": {
"host": "127.0.0.1",
"port": 7777
}
}