-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
69 lines (69 loc) · 1.95 KB
/
config.example.json
File metadata and controls
69 lines (69 loc) · 1.95 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
69
{
"app_name": "Mexemplar",
"version": "0.1.0",
"debug": false,
"ai": {
"provider": "openai",
"model": "GLM-5.1",
"api_key": "",
"base_url": "https://open.bigmodel.cn/api/coding/paas/v4",
"temperature": 0.7,
"max_tokens": 4096,
"timeout": 60,
"vision_model": "claude-3-5-sonnet-20241022",
"vision_provider": null,
"vision_api_key": null,
"vision_base_url": null,
"compression_model_provider": "anthropic",
"compression_model_name": "claude-3-5-haiku-20241022",
"compression_model_api_key": null,
"compression_model_base_url": null,
"compression_model_temperature": 0.5,
"compression_model_max_tokens": 1024,
"memory_reference_steps_threshold": 3,
"memory_reference_size_threshold": 2000,
"memory_compression_token_threshold": 80000,
"memory_compression_count_threshold": null,
"memory_compression_keep_recent": 20,
"memory_compression_trigger_strategy": "token"
},
"recording": {
"screenshot_quality": 85,
"screenshot_delay_after_action": 0.2,
"enable_video_recording": true,
"video_fps": 15,
"video_quality": 85,
"record_mouse_move": false,
"default_recording_mode": "desktop",
"browser_type": "chromium",
"browser_headless": false,
"browser_start_url": null,
"capture_network_requests": true,
"network_request_filter": "xhr_fetch",
"network_request_timeout": 5.0,
"debug_log_enabled": false,
"persistent_user_data": true,
"user_data_dir": null,
"websocket": {
"enabled": true,
"host": "127.0.0.1",
"port": 8765,
"ping_interval": 30.0,
"max_reconnect_attempts": 10,
"reconnect_delay": 1.0,
"message_queue_size": 1000,
"max_message_size": 52428800,
"max_response_body_size": 5242880
},
"proxy": {
"host": "127.0.0.1",
"port": 8080
}
},
"ui": {
"theme": "light",
"language": "zh_CN",
"window_width": 1200,
"window_height": 800
}
}