forked from indently/json_chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.json
38 lines (38 loc) · 1.06 KB
/
bot.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
[
{
"response_type": "greeting",
"user_input": ["hello", "hi", "hey"],
"bot_response": "Hey there!",
"required_words": []
},
{
"response_type": "greeting",
"user_input": ["see you", "goodbye", "bye"],
"bot_response": "See you later!",
"required_words": []
},
{
"response_type": "greeting",
"user_input": ["nice", "to", "meet", "you"],
"bot_response": "The pleasure is all mine!",
"required_words": ["nice", "meet", "you"]
},
{
"response_type": "question",
"user_input": ["how", "to", "learn", "code", "coding", "apps"],
"bot_response": "Start by typing: 'How to learn coding' on Google.",
"required_words": ["learn", "code"]
},
{
"response_type": "question",
"user_input": ["refund", "how", "can", "I", "get"],
"bot_response": "We don't offer refunds for free education.",
"required_words": ["refund", "i"]
},
{
"response_type": "question",
"user_input": ["how", "are", "you"],
"bot_response": "I'm great! Thanks for asking.",
"required_words": ["how", "are", "you"]
}
]