Skip to content

Commit ca21ba4

Browse files
Added few Conversational Models
1 parent 4256fbd commit ca21ba4

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

Config_Models/core_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"Botname": "Braggi",
3-
"Conversational Models Loaded": null
3+
"Conversational Models Loaded": ["conv-facts.json", "conv-poems.json"]
44
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{"intents": [
2+
{"tag": "greeting",
3+
"patterns": ["Hi", "How are you", "Hey there", "Hello", "Good day"],
4+
"responses": ["Hello, I am the bot", "Good to see you again", "Hi there, how can I help?"]
5+
},
6+
{"tag": "goodbye",
7+
"patterns": ["Bye", "See you later", "Goodbye"],
8+
"responses": ["See you later", "Have a nice day", "Bye! Bye!"]
9+
},
10+
{"tag": "thanks",
11+
"patterns": ["Thanks", "Thank you", "That's helpful"],
12+
"responses": ["Glad I could help! :)", "Sure, Any time!", "The pleasure's all mine :)"]
13+
},
14+
{"tag": "tellfact",
15+
"patterns": ["Yell me something cool", "I'm bored", "Say something" ],
16+
"responses": ["Did you know ? You can jump of a plane without a parachute, but only once :P", "Banging your head against a wall burns 150 calories an hour."]
17+
}
18+
]
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{"intents": [
2+
{"tag": "greeting",
3+
"patterns": ["Hi", "How are you", "Hey there", "Hello", "Good day"],
4+
"responses": ["Hello, I am the bot", "Good to see you again", "Hi there, how can I help?"]
5+
},
6+
{"tag": "goodbye",
7+
"patterns": ["Bye", "See you later", "Goodbye"],
8+
"responses": ["See you later", "Have a nice day", "Bye! Bye!"]
9+
},
10+
{"tag": "thanks",
11+
"patterns": ["Thanks", "Thank you", "That's helpful"],
12+
"responses": ["Glad I could help! :)", "Sure, Any time!", "The pleasure's all mine :)"]
13+
},
14+
{"tag": "tellpoem",
15+
"patterns": ["Yell me something cool", "I'm bored", "Say something" ],
16+
"responses": ["Roses are red. Violets are blue, Bring me an A or no more Tofu.", "Roses are red. Violets are blue, your phone is smart, why not you ?"]
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)