-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
60 lines (60 loc) · 2.57 KB
/
app.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
{
"name": "Self Learning FAQ Bot",
"description": "A sample FAQ chatbot with automatic learning feature.",
"repository": "https://github.com/dennisetiawan23/ppappti_linebot_h",
"logo": "https://raw.githubusercontent.com/nkjm/faq-bot-sample-en/master/image/logo.png",
"env": {
"LINE_CHANNEL_SECRET": {
"description": "Secret key to validate the access to your webhook. You can find it in LINE Developers Console.",
"required": true
},
"LINE_ACCESS_TOKEN": {
"description": "Token to add to your API call for LINE Messaging API. You can find it in LINE Developers Console.",
"required": true
},
"LINE_ADMIN_USER_ID": {
"description": "Admin's LINE user id whom Bot escalates the question.",
"required": true
},
"DIALOGFLOW_CLIENT_ACCESS_TOKEN": {
"description": "Token to add to your API call for Dialogflow as user. You can find it in agent setting in Dialogflow Console.",
"required": true
},
"DIALOGFLOW_DEVELOPER_ACCESS_TOKEN": {
"description": "Token to add to your API call for Dialogflow as developer. You can find it in agent setting in Dialogflow Console.",
"required": true
},
"GOOGLE_PROJECT_ID": {
"description": "Project ID of Google Cloud Platform which can be found in Agent configuration page of Dialogflow.",
"required": true
},
"GOOGLE_CLIENT_EMAIL": {
"description": "Client Email of Google Cloud Platform which can be found in Agent configuration page of Dialogflow.",
"required": true
},
"GOOGLE_PRIVATE_KEY": {
"description": "Private Key of Google Cloud Platform which can be found in JSON formatted key file of Google Service Account.",
"required": true
},
"GOOGLE_API_KEY": {
"description": "Google API Key for translation.",
"required": false
},
"AUTO_TRANSLATION": {
"description": "Whether to enable auto translation. To enable, you need to set GOOGLE_PROJECT_ID and GOOGLE_API_KEY. Set 'enable' to enable this feature.",
"required": false,
"value": "disable"
},
"DEFAULT_SKILL": {
"description": "Skill to be used when Bot cannot understand the intent.",
"required": true,
"value": "escalation"
},
"DEBUG": {
"description": "Flag to switch debugging level and target scripts.",
"required": false,
"value": "bot-express:*"
}
},
"keywords": ["line", "bot", "chatbot", "faq"]
}