├── .DS_Store ├── Notebook ├── .DS_Store └── Conversational_Chatbot.ipynb ├── README.md ├── __pycache__ └── actions.cpython-36.pyc ├── actions.py ├── config.yml ├── data ├── nlu.md └── stories.md ├── dialogue_management_model.py ├── domain.yml ├── gif └── Robo.gif ├── models ├── dialogue │ ├── domain.json │ ├── domain.yml │ ├── policy_0_MemoizationPolicy │ │ ├── featurizer.json │ │ └── memorized_turns.json │ ├── policy_1_KerasPolicy │ │ ├── featurizer.json │ │ ├── keras_model.h5 │ │ └── keras_policy.json │ ├── policy_2_FallbackPolicy │ │ └── fallback_policy.json │ └── policy_metadata.json └── nlu │ └── default │ └── current │ ├── crf_model.pkl │ ├── entity_synonyms.json │ ├── intent_classifier_sklearn.pkl │ ├── metadata.json │ └── training_data.json ├── nlu_model.py ├── rasa_core.log ├── run_app.py ├── story_graph.dot └── train_online.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/.DS_Store -------------------------------------------------------------------------------- /Notebook/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/Notebook/.DS_Store -------------------------------------------------------------------------------- /Notebook/Conversational_Chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/Notebook/Conversational_Chatbot.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/actions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/__pycache__/actions.cpython-36.pyc -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/actions.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/config.yml -------------------------------------------------------------------------------- /data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/data/nlu.md -------------------------------------------------------------------------------- /data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/data/stories.md -------------------------------------------------------------------------------- /dialogue_management_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/dialogue_management_model.py -------------------------------------------------------------------------------- /domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/domain.yml -------------------------------------------------------------------------------- /gif/Robo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/gif/Robo.gif -------------------------------------------------------------------------------- /models/dialogue/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/domain.json -------------------------------------------------------------------------------- /models/dialogue/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/domain.yml -------------------------------------------------------------------------------- /models/dialogue/policy_0_MemoizationPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_0_MemoizationPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue/policy_0_MemoizationPolicy/memorized_turns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_0_MemoizationPolicy/memorized_turns.json -------------------------------------------------------------------------------- /models/dialogue/policy_1_KerasPolicy/featurizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_1_KerasPolicy/featurizer.json -------------------------------------------------------------------------------- /models/dialogue/policy_1_KerasPolicy/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_1_KerasPolicy/keras_model.h5 -------------------------------------------------------------------------------- /models/dialogue/policy_1_KerasPolicy/keras_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_1_KerasPolicy/keras_policy.json -------------------------------------------------------------------------------- /models/dialogue/policy_2_FallbackPolicy/fallback_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_2_FallbackPolicy/fallback_policy.json -------------------------------------------------------------------------------- /models/dialogue/policy_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/dialogue/policy_metadata.json -------------------------------------------------------------------------------- /models/nlu/default/current/crf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/nlu/default/current/crf_model.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/entity_synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/nlu/default/current/entity_synonyms.json -------------------------------------------------------------------------------- /models/nlu/default/current/intent_classifier_sklearn.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/nlu/default/current/intent_classifier_sklearn.pkl -------------------------------------------------------------------------------- /models/nlu/default/current/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/nlu/default/current/metadata.json -------------------------------------------------------------------------------- /models/nlu/default/current/training_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/models/nlu/default/current/training_data.json -------------------------------------------------------------------------------- /nlu_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/nlu_model.py -------------------------------------------------------------------------------- /rasa_core.log: -------------------------------------------------------------------------------- 1 | Rasa process starting 2 | -------------------------------------------------------------------------------- /run_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/run_app.py -------------------------------------------------------------------------------- /story_graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/story_graph.dot -------------------------------------------------------------------------------- /train_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parulnith/Building-a-Conversational-Chatbot-for-Slack-using-Rasa-and-Python/HEAD/train_online.py --------------------------------------------------------------------------------