├── .github └── workflows │ └── ci.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── easy-rasa.py ├── easy-rasa ├── __init__.py ├── data │ └── nlu_sample_format_for_conversion.csv └── main.py ├── nlu_sample_format_for_conversion.csv └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include csvtorasa/data/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/README.md -------------------------------------------------------------------------------- /easy-rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/easy-rasa.py -------------------------------------------------------------------------------- /easy-rasa/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import create_rasa_files, download_csv 2 | -------------------------------------------------------------------------------- /easy-rasa/data/nlu_sample_format_for_conversion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/easy-rasa/data/nlu_sample_format_for_conversion.csv -------------------------------------------------------------------------------- /easy-rasa/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/easy-rasa/main.py -------------------------------------------------------------------------------- /nlu_sample_format_for_conversion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/nlu_sample_format_for_conversion.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LohithArcot/easy-rasa/HEAD/setup.py --------------------------------------------------------------------------------