Skip to content

AshWinShaRma37/ChatBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChatBot

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:

  1. tags: class name
  2. patterns: example of users chat
  3. 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?"]
    }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published