-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_template.json
More file actions
101 lines (91 loc) · 2.24 KB
/
config_template.json
File metadata and controls
101 lines (91 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"version": "1.0.0",
"created_at": "2024-01-01T00:00:00",
"updated_at": "2024-01-01T00:00:00",
"logging": {
"level": "INFO",
"file": "automation_agent.log",
"max_size": "10MB",
"backup_count": 5
},
"email": {
"enabled": false,
"from_email": "your_email@example.com",
"smtp": {
"server": "smtp.gmail.com",
"port": 587,
"username": "your_email@gmail.com",
"password": "your_app_password",
"use_tls": true
},
"imap": {
"server": "imap.gmail.com",
"port": 993,
"username": "your_email@gmail.com",
"password": "your_app_password",
"use_ssl": true
},
"recipients": ["team@company.com"],
"templates": {}
},
"whatsapp": {
"enabled": false,
"templates": {}
},
"telegram": {
"enabled": false,
"bot_token": "your_bot_token_from_botfather",
"templates": {}
},
"social_media": {
"enabled": false,
"facebook": {
"email": "your_facebook_email",
"password": "your_facebook_password"
},
"instagram": {
"username": "your_instagram_username",
"password": "your_instagram_password"
},
"linkedin": {
"email": "your_linkedin_email",
"password": "your_linkedin_password"
}
},
"ai": {
"openai": {
"enabled": false,
"api_key": "your_openai_api_key",
"model": "gpt-3.5-turbo"
},
"anthropic": {
"enabled": false,
"api_key": "your_anthropic_api_key",
"model": "claude-3-sonnet-20240229"
}
},
"voice_commands": {
"enabled": true,
"continuous_listening": true,
"timeout": 5,
"phrase_time_limit": 5
},
"safety": {
"confirm_dangerous_actions": true,
"max_file_size": "100MB",
"allowed_file_types": [".txt", ".pdf", ".doc", ".docx", ".jpg", ".png", ".gif"],
"blocked_commands": ["rm -rf /", "format", "del /s /q C:\\"]
},
"automation": {
"enabled": true,
"check_interval": 300,
"max_concurrent_tasks": 5,
"task_timeout": 3600
},
"notifications": {
"enabled": true,
"email_alerts": true,
"desktop_notifications": true,
"sound_alerts": false
}
}