This is an intent based chatbot. The bot is in python and the model parameters are tuning using keras tuner.
The model is currently trained on a small number of intents.
The intents file is divided into:
- tags: class name
- patterns: example of users chat
- responses: response of the bot
For e.g.,
{"intents": [
{"tag": "greeting",
"patterns": [
"Hi",
"How are you",
"Is anyone there?",
"Hello",
"Good day",
"Whats up",
"Hey",
"greetings",
"Hi there",
"Hola",
"Hello there",
"Hya",
"Hya there"],
"responses": [
"Hello!",
"Good to see you again!",
"Hi there, how can I help?"]
}
}