├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── actions.py ├── config.yml ├── credentials.yml ├── data ├── nlu.md └── stories.md ├── domain.yml └── endpoints.yml /.gitignore: -------------------------------------------------------------------------------- 1 | models/ 2 | ./stories.md 3 | .idea 4 | __pycache__ 5 | rasa_core.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/actions.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/config.yml -------------------------------------------------------------------------------- /credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/credentials.yml -------------------------------------------------------------------------------- /data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/data/nlu.md -------------------------------------------------------------------------------- /data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/data/stories.md -------------------------------------------------------------------------------- /domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/domain.yml -------------------------------------------------------------------------------- /endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul051296/small-talk-rasa-stack/HEAD/endpoints.yml --------------------------------------------------------------------------------