forked from tech-shrimp/qwen_autogui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
29 lines (29 loc) · 787 Bytes
/
Copy pathconfig.json.example
File metadata and controls
29 lines (29 loc) · 787 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
{
"api": {
"base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"api_key": "你的API Key",
"model": "qwen3.5-plus",
"max_tokens": 8192,
"temperature": 0.7
},
"screen": {
"capture_quality": 0.95,
"compression_level": 6,
"max_width": 1280,
"max_height": 720,
"allowed_region": null
},
"agent": {
"max_iterations": 20,
"delay_between_actions": 1.0,
"confidence_threshold": 0.7,
"max_history_rounds": 10
},
"safety": {
"enable_confirmation": true,
"fallback_action": "block",
"dangerous_keys": ["delete", "backspace", "escape"],
"dangerous_hotkeys": [["ctrl", "w"], ["alt", "f4"], ["ctrl", "shift", "delete"]],
"dangerous_patterns": ["rm ", "del ", "format ", "shutdown", "reboot"]
}
}