-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.json
32 lines (32 loc) · 1000 Bytes
/
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
[
{
"response_type": "greeting",
"user_input": ["hello", "hi", "hey"],
"bot_response": "Hey there! How can I help",
"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", "you", "can", "help", "me"],
"bot_response": "Give me responses json file and query prompt, I create one Chatbot for you without doing any coding.",
"required_words": ["help", "me"]
},
{
"response_type": "question",
"user_input": ["how", "are", "you"],
"bot_response": "I'm great! Thanks for asking.",
"required_words": ["how", "are", "you"]
}
]