├── .gitignore ├── Images ├── DefaultChatbotResponse.png ├── DirectoryStructure.png ├── Models.png └── Samples.png ├── LICENSE ├── Procfile ├── README.md ├── Seq2Seq.py ├── Word2Vec.py ├── createDataset.py ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/DefaultChatbotResponse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Images/DefaultChatbotResponse.png -------------------------------------------------------------------------------- /Images/DirectoryStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Images/DirectoryStructure.png -------------------------------------------------------------------------------- /Images/Models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Images/Models.png -------------------------------------------------------------------------------- /Images/Samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Images/Samples.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/README.md -------------------------------------------------------------------------------- /Seq2Seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Seq2Seq.py -------------------------------------------------------------------------------- /Word2Vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/Word2Vec.py -------------------------------------------------------------------------------- /createDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/createDataset.py -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeshpande3/Facebook-Messenger-Bot/HEAD/package.json --------------------------------------------------------------------------------