├── README.md ├── commands.txt ├── imgs ├── screenshot1.PNG └── screenshot2.PNG ├── index.js ├── nlu ├── classifier.js ├── entity.js ├── intent.js └── rasa │ ├── rasa.js │ └── traning-data.json ├── package.json ├── public ├── bot_pic.png ├── chat.css ├── chat.js ├── index.html ├── jquery-3.2.1.min.js ├── loaders.min.css ├── moment.min.js ├── switchery.min.css ├── switchery.min.js ├── user1.svg └── user2.svg ├── reply.js └── restaurantbot ├── config-spacy-ecb.json ├── config-spacy.json ├── demo-rasa.json ├── nlu.json ├── nohup.out └── projects └── default └── model_20171212-144806 ├── crf_model.pkl ├── entity_synonyms.json ├── intent_classifier.pkl ├── metadata.json ├── regex_featurizer.json └── training_data.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/README.md -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/commands.txt -------------------------------------------------------------------------------- /imgs/screenshot1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/imgs/screenshot1.PNG -------------------------------------------------------------------------------- /imgs/screenshot2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/imgs/screenshot2.PNG -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/index.js -------------------------------------------------------------------------------- /nlu/classifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/nlu/classifier.js -------------------------------------------------------------------------------- /nlu/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/nlu/entity.js -------------------------------------------------------------------------------- /nlu/intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/nlu/intent.js -------------------------------------------------------------------------------- /nlu/rasa/rasa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/nlu/rasa/rasa.js -------------------------------------------------------------------------------- /nlu/rasa/traning-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/nlu/rasa/traning-data.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/package.json -------------------------------------------------------------------------------- /public/bot_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/bot_pic.png -------------------------------------------------------------------------------- /public/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/chat.css -------------------------------------------------------------------------------- /public/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/chat.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/index.html -------------------------------------------------------------------------------- /public/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /public/loaders.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/loaders.min.css -------------------------------------------------------------------------------- /public/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/moment.min.js -------------------------------------------------------------------------------- /public/switchery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/switchery.min.css -------------------------------------------------------------------------------- /public/switchery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/switchery.min.js -------------------------------------------------------------------------------- /public/user1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/user1.svg -------------------------------------------------------------------------------- /public/user2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/public/user2.svg -------------------------------------------------------------------------------- /reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/reply.js -------------------------------------------------------------------------------- /restaurantbot/config-spacy-ecb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/config-spacy-ecb.json -------------------------------------------------------------------------------- /restaurantbot/config-spacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/config-spacy.json -------------------------------------------------------------------------------- /restaurantbot/demo-rasa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/demo-rasa.json -------------------------------------------------------------------------------- /restaurantbot/nlu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/nlu.json -------------------------------------------------------------------------------- /restaurantbot/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/nohup.out -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/crf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/crf_model.pkl -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/entity_synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/entity_synonyms.json -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/intent_classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/intent_classifier.pkl -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/metadata.json -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/regex_featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/regex_featurizer.json -------------------------------------------------------------------------------- /restaurantbot/projects/default/model_20171212-144806/training_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabryxx7/chatbot-node-rasa/HEAD/restaurantbot/projects/default/model_20171212-144806/training_data.json --------------------------------------------------------------------------------