├── .gitattributes ├── MedicalChatbots ├── __pycache__ │ ├── chat_robot.cpython-310.pyc │ ├── get_answer.cpython-310.pyc │ ├── get_cql.cpython-310.pyc │ ├── keyword_template.cpython-310.pyc │ └── question_analysis.cpython-310.pyc ├── build_medicalgraph.py ├── chat_robot.py ├── clear_graph.py ├── data │ └── medicine.json ├── dict │ ├── check.txt │ ├── deny.txt │ ├── department.txt │ ├── disease.txt │ ├── drug.txt │ ├── food.txt │ ├── symptom.txt │ ├── template_answers.txt │ └── template_issues.txt ├── get_answer.py ├── get_cql.py ├── keyword_template.py ├── main.py ├── question_analysis.py └── static │ ├── css │ └── index.css │ ├── img │ ├── empty.jpg │ ├── fasong-tijiao.png │ ├── logo.jpg │ ├── shanchu.png │ ├── user.jpg │ ├── xiaoxi.png │ └── xiazai.png │ ├── index.html │ └── js │ ├── axios.min.js │ └── vue.js └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/.gitattributes -------------------------------------------------------------------------------- /MedicalChatbots/__pycache__/chat_robot.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/__pycache__/chat_robot.cpython-310.pyc -------------------------------------------------------------------------------- /MedicalChatbots/__pycache__/get_answer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/__pycache__/get_answer.cpython-310.pyc -------------------------------------------------------------------------------- /MedicalChatbots/__pycache__/get_cql.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/__pycache__/get_cql.cpython-310.pyc -------------------------------------------------------------------------------- /MedicalChatbots/__pycache__/keyword_template.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/__pycache__/keyword_template.cpython-310.pyc -------------------------------------------------------------------------------- /MedicalChatbots/__pycache__/question_analysis.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/__pycache__/question_analysis.cpython-310.pyc -------------------------------------------------------------------------------- /MedicalChatbots/build_medicalgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/build_medicalgraph.py -------------------------------------------------------------------------------- /MedicalChatbots/chat_robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/chat_robot.py -------------------------------------------------------------------------------- /MedicalChatbots/clear_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/clear_graph.py -------------------------------------------------------------------------------- /MedicalChatbots/data/medicine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/data/medicine.json -------------------------------------------------------------------------------- /MedicalChatbots/dict/check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/check.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/deny.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/department.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/department.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/disease.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/drug.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/food.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/symptom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/symptom.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/template_answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/template_answers.txt -------------------------------------------------------------------------------- /MedicalChatbots/dict/template_issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/dict/template_issues.txt -------------------------------------------------------------------------------- /MedicalChatbots/get_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/get_answer.py -------------------------------------------------------------------------------- /MedicalChatbots/get_cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/get_cql.py -------------------------------------------------------------------------------- /MedicalChatbots/keyword_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/keyword_template.py -------------------------------------------------------------------------------- /MedicalChatbots/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/main.py -------------------------------------------------------------------------------- /MedicalChatbots/question_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/question_analysis.py -------------------------------------------------------------------------------- /MedicalChatbots/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/css/index.css -------------------------------------------------------------------------------- /MedicalChatbots/static/img/empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/empty.jpg -------------------------------------------------------------------------------- /MedicalChatbots/static/img/fasong-tijiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/fasong-tijiao.png -------------------------------------------------------------------------------- /MedicalChatbots/static/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/logo.jpg -------------------------------------------------------------------------------- /MedicalChatbots/static/img/shanchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/shanchu.png -------------------------------------------------------------------------------- /MedicalChatbots/static/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/user.jpg -------------------------------------------------------------------------------- /MedicalChatbots/static/img/xiaoxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/xiaoxi.png -------------------------------------------------------------------------------- /MedicalChatbots/static/img/xiazai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/img/xiazai.png -------------------------------------------------------------------------------- /MedicalChatbots/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/index.html -------------------------------------------------------------------------------- /MedicalChatbots/static/js/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/js/axios.min.js -------------------------------------------------------------------------------- /MedicalChatbots/static/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/MedicalChatbots/static/js/vue.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Groot-lin/MedicalChatbots/HEAD/README.md --------------------------------------------------------------------------------