-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathconfig.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"speech_recognition": {
"engine": "google",
"language": "en-US",
"whisper_model": "base",
"energy_threshold": 4000,
"pause_threshold": 0.5,
"timeout": 5
},
"text_to_speech": {
"rate": 150,
"volume": 0.8,
"voice_index": 0
},
"ai_integration": {
"use_ai": true,
"primary_ai": "gemini",
"fallback_ai": "gemini",
"model": "gpt-3.5-turbo",
"max_tokens": 150,
"temperature": 0.7,
"gemini_api_key": "AIzaSyDtxtHhIiMB5Zf14ty1fcLX-eUHRQ8n-U4"
},
"gui": {
"theme": "dark",
"window_size": "800x600",
"start_minimized": false,
"show_notifications": true,
"auto_hide_timeout": 30
},
"system_control": {
"enable_advanced_features": true,
"screenshot_directory": "screenshots",
"recording_directory": "recordings",
"max_recording_duration": 300,
"user_like_open": true
},
"plugins": {
"auto_load": true,
"plugin_directory": "plugins",
"enabled_plugins": [
"weather",
"calculator",
"todo"
]
},
"memory": {
"max_conversations": 1000,
"save_location": "vecna_memory.json",
"auto_save": true
},
"hotkeys": {
"toggle_listening": "ctrl+alt+v",
"show_hide_gui": "ctrl+alt+g",
"emergency_stop": "ctrl+alt+s"
},
"advanced": {
"debug_mode": false,
"log_level": "INFO",
"auto_update_plugins": false,
"backup_settings": true
}
}