-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-config.json
63 lines (63 loc) · 1.87 KB
/
example-config.json
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
{
"openai_api_key": "<api key>",
"max_tokens": 1000,
"delay_between_loops": 5,
"personal_info": {
"name": "<your name>",
"date_of_birth": "<your date of birth>",
"phone_number": "<your phone number>"
},
"single_chats": [
{
"name": "<name 1>",
"phone_number": "<phone number 1>",
"about": "<information 1>",
"prompt": "<prompt>",
"context": true,
"enabled": false,
"only_reply_focus_mode": true,
"number_previous_messages": 14,
"emoji_pasta": false,
"bot_trigger_command": ""
}
],
"default_single_chat": {
"about": "<information 1>",
"prompt": "<prompt>",
"context": false,
"enabled": false,
"only_reply_focus_mode": true,
"number_previous_messages": 0,
"emoji_pasta": false,
"bot_trigger_command": "!bot"
},
"group_chats": [
{
"name": "<name of groupchat>",
"prompt": "<prompt>",
"context": true,
"enabled": false,
"only_reply_focus_mode": true,
"number_previous_messages": 15,
"emoji_pasta": true,
"bot_trigger_command": "!bot",
"recipients": [
{
"name": "<person name 1>",
"phone_number": "<phone number 1>",
"about": "<information 1>"
},
{
"name": "<person name 2>",
"phone_number": "<phone number 2>",
"about": "<information 2>"
},
{
"name": "<person name 3>",
"phone_number": "<phone number 3>",
"about": "<information 3>"
}
]
}
]
}