├── .DS_Store ├── .gitignore ├── Procfile ├── README.md ├── docs └── bg_chatbot.png ├── requirements.txt ├── resources ├── dm │ ├── constants.json │ └── map_fsm.json ├── nlg │ ├── constants.json │ ├── default_response.json │ └── template_response.json └── nlu │ ├── business_intent.json │ ├── comparison.json │ ├── configs.json │ ├── entity.json │ ├── map_order_entity.json │ ├── question_signal.json │ └── random_intent.json └── src ├── backend ├── backend │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── monitor │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── channel ├── mobile_app_telegram │ ├── Procfile │ ├── app.py │ ├── callback.py │ └── requirements.txt └── web │ ├── .DS_Store │ ├── static │ ├── img │ │ ├── logobk.png │ │ └── logobkcrop.png │ └── styles │ │ ├── hcmut_fix.png │ │ ├── style.css │ │ └── style_chatbox.css │ └── templates │ ├── bot.html │ └── graduation-cap-solid.svg ├── core ├── dialog_management │ ├── .DS_Store │ ├── __init__.py │ ├── db_query.py │ ├── fsm_agent.py │ ├── state_tracker.py │ └── utils.py ├── language_generating │ ├── __init__.py │ ├── response_generation.py │ └── utils.py └── language_understanding │ ├── __init__.py │ ├── entity_recognize.py │ ├── intent_recognize.py │ ├── user_action.py │ ├── utils.py │ └── vietnamese_standardize.py ├── main.py └── ui_admin.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn -b :$PORT app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/README.md -------------------------------------------------------------------------------- /docs/bg_chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/docs/bg_chatbot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/dm/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/dm/constants.json -------------------------------------------------------------------------------- /resources/dm/map_fsm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/dm/map_fsm.json -------------------------------------------------------------------------------- /resources/nlg/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlg/constants.json -------------------------------------------------------------------------------- /resources/nlg/default_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlg/default_response.json -------------------------------------------------------------------------------- /resources/nlg/template_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlg/template_response.json -------------------------------------------------------------------------------- /resources/nlu/business_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/business_intent.json -------------------------------------------------------------------------------- /resources/nlu/comparison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/comparison.json -------------------------------------------------------------------------------- /resources/nlu/configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/configs.json -------------------------------------------------------------------------------- /resources/nlu/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/entity.json -------------------------------------------------------------------------------- /resources/nlu/map_order_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/map_order_entity.json -------------------------------------------------------------------------------- /resources/nlu/question_signal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/question_signal.json -------------------------------------------------------------------------------- /resources/nlu/random_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/resources/nlu/random_intent.json -------------------------------------------------------------------------------- /src/backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/backend/asgi.py -------------------------------------------------------------------------------- /src/backend/backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/backend/settings.py -------------------------------------------------------------------------------- /src/backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/backend/urls.py -------------------------------------------------------------------------------- /src/backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/backend/wsgi.py -------------------------------------------------------------------------------- /src/backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/db.sqlite3 -------------------------------------------------------------------------------- /src/backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/manage.py -------------------------------------------------------------------------------- /src/backend/monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/monitor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/admin.py -------------------------------------------------------------------------------- /src/backend/monitor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/apps.py -------------------------------------------------------------------------------- /src/backend/monitor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/monitor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/models.py -------------------------------------------------------------------------------- /src/backend/monitor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/tests.py -------------------------------------------------------------------------------- /src/backend/monitor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/urls.py -------------------------------------------------------------------------------- /src/backend/monitor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/backend/monitor/views.py -------------------------------------------------------------------------------- /src/channel/mobile_app_telegram/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /src/channel/mobile_app_telegram/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/mobile_app_telegram/app.py -------------------------------------------------------------------------------- /src/channel/mobile_app_telegram/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/mobile_app_telegram/callback.py -------------------------------------------------------------------------------- /src/channel/mobile_app_telegram/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/mobile_app_telegram/requirements.txt -------------------------------------------------------------------------------- /src/channel/web/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/.DS_Store -------------------------------------------------------------------------------- /src/channel/web/static/img/logobk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/static/img/logobk.png -------------------------------------------------------------------------------- /src/channel/web/static/img/logobkcrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/static/img/logobkcrop.png -------------------------------------------------------------------------------- /src/channel/web/static/styles/hcmut_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/static/styles/hcmut_fix.png -------------------------------------------------------------------------------- /src/channel/web/static/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/static/styles/style.css -------------------------------------------------------------------------------- /src/channel/web/static/styles/style_chatbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/static/styles/style_chatbox.css -------------------------------------------------------------------------------- /src/channel/web/templates/bot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/templates/bot.html -------------------------------------------------------------------------------- /src/channel/web/templates/graduation-cap-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/channel/web/templates/graduation-cap-solid.svg -------------------------------------------------------------------------------- /src/core/dialog_management/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/.DS_Store -------------------------------------------------------------------------------- /src/core/dialog_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/__init__.py -------------------------------------------------------------------------------- /src/core/dialog_management/db_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/db_query.py -------------------------------------------------------------------------------- /src/core/dialog_management/fsm_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/fsm_agent.py -------------------------------------------------------------------------------- /src/core/dialog_management/state_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/state_tracker.py -------------------------------------------------------------------------------- /src/core/dialog_management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/dialog_management/utils.py -------------------------------------------------------------------------------- /src/core/language_generating/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_generating/__init__.py -------------------------------------------------------------------------------- /src/core/language_generating/response_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_generating/response_generation.py -------------------------------------------------------------------------------- /src/core/language_generating/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_generating/utils.py -------------------------------------------------------------------------------- /src/core/language_understanding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/__init__.py -------------------------------------------------------------------------------- /src/core/language_understanding/entity_recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/entity_recognize.py -------------------------------------------------------------------------------- /src/core/language_understanding/intent_recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/intent_recognize.py -------------------------------------------------------------------------------- /src/core/language_understanding/user_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/user_action.py -------------------------------------------------------------------------------- /src/core/language_understanding/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/utils.py -------------------------------------------------------------------------------- /src/core/language_understanding/vietnamese_standardize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/core/language_understanding/vietnamese_standardize.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/ui_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taindp98/Vietnamese-Chatbot/HEAD/src/ui_admin.py --------------------------------------------------------------------------------