├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── others.md └── stale.yml ├── .gitignore ├── Dockerfile ├── README.md ├── _helpers ├── build_domain.py ├── example_count.py └── requirements-helpers.txt ├── actions ├── README.txt ├── __init__.py ├── actions.py └── requirements-actions.txt ├── app └── app.md ├── config.yml ├── credentials.yml ├── data ├── data.json ├── lookups │ ├── person_name.txt │ ├── person_name.yml │ └── txt_to_yml.py ├── nlu │ ├── account_management.yml │ ├── action_intents.yml │ ├── chitchat.yml │ ├── faq.yml │ ├── help.yml │ ├── languages.yml │ ├── nlu.yml │ ├── out_of_scope.yml │ ├── queries.yml │ ├── topics.yml │ └── troubleshooting.yml ├── rules │ ├── rules.yml │ ├── rules_actions.yml │ ├── rules_chitchat.yml │ ├── rules_form.yml │ └── rules_upcoming_features.yml └── stories │ ├── conversations.yml │ ├── stories.yml │ ├── stories_actions.yml │ ├── stories_chitchat.yml │ ├── stories_form.yml │ └── stories_upcoming_features.yml ├── domain.yml ├── endpoints.yml ├── models └── models.md └── tests └── test_stories.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /_helpers/build_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/_helpers/build_domain.py -------------------------------------------------------------------------------- /_helpers/example_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/_helpers/example_count.py -------------------------------------------------------------------------------- /_helpers/requirements-helpers.txt: -------------------------------------------------------------------------------- 1 | hiyapyco==0.4.16 -------------------------------------------------------------------------------- /actions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/actions/README.txt -------------------------------------------------------------------------------- /actions/__init__.py: -------------------------------------------------------------------------------- 1 | # Executed on startup 2 | # rasa run actions -------------------------------------------------------------------------------- /actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/actions/actions.py -------------------------------------------------------------------------------- /actions/requirements-actions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/actions/requirements-actions.txt -------------------------------------------------------------------------------- /app/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/app/app.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/config.yml -------------------------------------------------------------------------------- /credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/credentials.yml -------------------------------------------------------------------------------- /data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/data.json -------------------------------------------------------------------------------- /data/lookups/person_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/lookups/person_name.txt -------------------------------------------------------------------------------- /data/lookups/person_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/lookups/person_name.yml -------------------------------------------------------------------------------- /data/lookups/txt_to_yml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/lookups/txt_to_yml.py -------------------------------------------------------------------------------- /data/nlu/account_management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/account_management.yml -------------------------------------------------------------------------------- /data/nlu/action_intents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/action_intents.yml -------------------------------------------------------------------------------- /data/nlu/chitchat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/chitchat.yml -------------------------------------------------------------------------------- /data/nlu/faq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/faq.yml -------------------------------------------------------------------------------- /data/nlu/help.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/help.yml -------------------------------------------------------------------------------- /data/nlu/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/languages.yml -------------------------------------------------------------------------------- /data/nlu/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/nlu.yml -------------------------------------------------------------------------------- /data/nlu/out_of_scope.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/out_of_scope.yml -------------------------------------------------------------------------------- /data/nlu/queries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/queries.yml -------------------------------------------------------------------------------- /data/nlu/topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/topics.yml -------------------------------------------------------------------------------- /data/nlu/troubleshooting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/nlu/troubleshooting.yml -------------------------------------------------------------------------------- /data/rules/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/rules/rules.yml -------------------------------------------------------------------------------- /data/rules/rules_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/rules/rules_actions.yml -------------------------------------------------------------------------------- /data/rules/rules_chitchat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/rules/rules_chitchat.yml -------------------------------------------------------------------------------- /data/rules/rules_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/rules/rules_form.yml -------------------------------------------------------------------------------- /data/rules/rules_upcoming_features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/rules/rules_upcoming_features.yml -------------------------------------------------------------------------------- /data/stories/conversations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/conversations.yml -------------------------------------------------------------------------------- /data/stories/stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/stories.yml -------------------------------------------------------------------------------- /data/stories/stories_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/stories_actions.yml -------------------------------------------------------------------------------- /data/stories/stories_chitchat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/stories_chitchat.yml -------------------------------------------------------------------------------- /data/stories/stories_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/stories_form.yml -------------------------------------------------------------------------------- /data/stories/stories_upcoming_features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/data/stories/stories_upcoming_features.yml -------------------------------------------------------------------------------- /domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/domain.yml -------------------------------------------------------------------------------- /endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/endpoints.yml -------------------------------------------------------------------------------- /models/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/models/models.md -------------------------------------------------------------------------------- /tests/test_stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRahme/FYP-Chatbot/HEAD/tests/test_stories.yml --------------------------------------------------------------------------------