├── README.md ├── __init__.py ├── core ├── __init__.py ├── chatbot.py ├── config.cfg ├── crawler │ ├── __init__.py │ ├── crawl.py │ └── search.py ├── deeplearning │ ├── README.md │ ├── __init__.py │ └── deep.py ├── log │ └── .gitkeep ├── resources │ ├── basic.aiml │ ├── common.aiml │ ├── learn.aiml │ ├── load.aiml │ └── sensitive.txt ├── tool │ ├── __init__.py │ └── filter.py └── web │ ├── __init__.py │ ├── server.py │ ├── static │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── images │ │ ├── ai.png │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── keyboard.png │ │ └── me.png │ └── js │ │ ├── chat.js │ │ └── jquery-3.3.1.min.js │ └── templates │ └── index.html └── docs ├── 1.png └── 2.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/chatbot.py -------------------------------------------------------------------------------- /core/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/config.cfg -------------------------------------------------------------------------------- /core/crawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/crawler/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/crawler/crawl.py -------------------------------------------------------------------------------- /core/crawler/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/crawler/search.py -------------------------------------------------------------------------------- /core/deeplearning/README.md: -------------------------------------------------------------------------------- 1 | # TODO -------------------------------------------------------------------------------- /core/deeplearning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deeplearning/deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/deeplearning/deep.py -------------------------------------------------------------------------------- /core/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/resources/basic.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/resources/basic.aiml -------------------------------------------------------------------------------- /core/resources/common.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/resources/common.aiml -------------------------------------------------------------------------------- /core/resources/learn.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/resources/learn.aiml -------------------------------------------------------------------------------- /core/resources/load.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/resources/load.aiml -------------------------------------------------------------------------------- /core/resources/sensitive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/resources/sensitive.txt -------------------------------------------------------------------------------- /core/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tool/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/tool/filter.py -------------------------------------------------------------------------------- /core/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/__init__.py -------------------------------------------------------------------------------- /core/web/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/server.py -------------------------------------------------------------------------------- /core/web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/css/style.css -------------------------------------------------------------------------------- /core/web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/favicon.ico -------------------------------------------------------------------------------- /core/web/static/images/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/images/ai.png -------------------------------------------------------------------------------- /core/web/static/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/images/bg.jpg -------------------------------------------------------------------------------- /core/web/static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/images/bg.png -------------------------------------------------------------------------------- /core/web/static/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/images/keyboard.png -------------------------------------------------------------------------------- /core/web/static/images/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/images/me.png -------------------------------------------------------------------------------- /core/web/static/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/js/chat.js -------------------------------------------------------------------------------- /core/web/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /core/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/core/web/templates/index.html -------------------------------------------------------------------------------- /docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/docs/1.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbincheng1997/chatbot-aiml-webqa/HEAD/docs/2.png --------------------------------------------------------------------------------