├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── chatbot_example ├── __init__.py ├── actions.py ├── config.yml ├── credentials.yml ├── data │ ├── nlu.md │ └── stories.md ├── domain.yml ├── endpoints.yml ├── models │ └── 20190619-220022.tar.gz └── report │ ├── result.css │ ├── result.html │ └── result.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/README.md -------------------------------------------------------------------------------- /chatbot_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatbot_example/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/actions.py -------------------------------------------------------------------------------- /chatbot_example/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/config.yml -------------------------------------------------------------------------------- /chatbot_example/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/credentials.yml -------------------------------------------------------------------------------- /chatbot_example/data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/data/nlu.md -------------------------------------------------------------------------------- /chatbot_example/data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/data/stories.md -------------------------------------------------------------------------------- /chatbot_example/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/domain.yml -------------------------------------------------------------------------------- /chatbot_example/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/endpoints.yml -------------------------------------------------------------------------------- /chatbot_example/models/20190619-220022.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/models/20190619-220022.tar.gz -------------------------------------------------------------------------------- /chatbot_example/report/result.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-left: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /chatbot_example/report/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/report/result.html -------------------------------------------------------------------------------- /chatbot_example/report/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/chatbot_example/report/result.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheukting/rasa_workshop/HEAD/requirements.txt --------------------------------------------------------------------------------