├── .idea ├── misc.xml ├── modules.xml ├── untitled8.iml └── workspace.xml ├── README.md ├── __pycache__ └── mappings.cpython-37.pyc ├── aiml ├── AimlParser.py ├── AimlParser.pyc ├── DefaultSubs.py ├── DefaultSubs.pyc ├── Kernel.py ├── Kernel.pyc ├── PatternMgr.py ├── PatternMgr.pyc ├── Utils.py ├── Utils.pyc ├── WordSub.py ├── WordSub.pyc ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── AimlParser.cpython-36.pyc │ ├── AimlParser.cpython-37.pyc │ ├── DefaultSubs.cpython-36.pyc │ ├── DefaultSubs.cpython-37.pyc │ ├── Kernel.cpython-36.pyc │ ├── Kernel.cpython-37.pyc │ ├── PatternMgr.cpython-36.pyc │ ├── PatternMgr.cpython-37.pyc │ ├── Utils.cpython-36.pyc │ ├── Utils.cpython-37.pyc │ ├── WordSub.cpython-36.pyc │ ├── WordSub.cpython-37.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── constants.cpython-36.pyc │ └── constants.cpython-37.pyc ├── constants.py ├── constants.pyc └── script │ ├── __init__.py │ ├── aimlvalidate.py │ └── bot.py ├── database ├── bot.aiml ├── bot_profile.aiml ├── bye.aiml ├── date.aiml ├── default.aiml ├── domain_Admissions.aiml ├── domain_ExamCell.aiml ├── domain_PlacementCell.aiml ├── domain_academics.aiml ├── domain_notice.aiml ├── emotion.aiml ├── invalidated_log.txt ├── questions.txt ├── std-65percent.aiml ├── std-botmaster.aiml ├── std-connect.aiml ├── std-disconnect.aiml ├── std-errors.aiml ├── std-hello.aiml ├── std-knowledge.aiml ├── std-numbers.aiml ├── std-personality.aiml ├── std-profile.aiml ├── std-suffixes.aiml ├── std-that.aiml └── std-yesno.aiml ├── main_with_session.py ├── mappings.py ├── seminar2_progress ├── __pycache__ │ ├── sntnce.cpython-36.pyc │ └── sntnce.cpython-37.pyc ├── shrya │ ├── __pycache__ │ │ ├── db.cpython-36.pyc │ │ └── keywords.cpython-36.pyc │ ├── db.py │ ├── gpa_query.py │ ├── keywords.py │ ├── sqlite.rar │ └── sqlite │ │ └── db │ │ └── pythonsqlite.db └── sntnce.py ├── seminar2_progress\shrya\db\sqlite\db\pythonsqlite.db ├── static └── style.css ├── std-startup.xml ├── stress.py ├── templates └── index.html └── test ├── __init__.py ├── __main__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── __main__.cpython-36.pyc ├── test_encoding.cpython-36.pyc ├── test_kernel.cpython-36.pyc ├── test_utils.cpython-36.pyc └── test_wordsub.cpython-36.pyc ├── encoding.aiml ├── self-test.aiml ├── test_encoding.py ├── test_kernel.py ├── test_utils.py └── test_wordsub.py /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/untitled8.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/.idea/untitled8.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/mappings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/__pycache__/mappings.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/AimlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/AimlParser.py -------------------------------------------------------------------------------- /aiml/AimlParser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/AimlParser.pyc -------------------------------------------------------------------------------- /aiml/DefaultSubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/DefaultSubs.py -------------------------------------------------------------------------------- /aiml/DefaultSubs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/DefaultSubs.pyc -------------------------------------------------------------------------------- /aiml/Kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/Kernel.py -------------------------------------------------------------------------------- /aiml/Kernel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/Kernel.pyc -------------------------------------------------------------------------------- /aiml/PatternMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/PatternMgr.py -------------------------------------------------------------------------------- /aiml/PatternMgr.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/PatternMgr.pyc -------------------------------------------------------------------------------- /aiml/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/Utils.py -------------------------------------------------------------------------------- /aiml/Utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/Utils.pyc -------------------------------------------------------------------------------- /aiml/WordSub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/WordSub.py -------------------------------------------------------------------------------- /aiml/WordSub.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/WordSub.pyc -------------------------------------------------------------------------------- /aiml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__init__.py -------------------------------------------------------------------------------- /aiml/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__init__.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/AimlParser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/AimlParser.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/AimlParser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/AimlParser.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/DefaultSubs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/DefaultSubs.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/DefaultSubs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/DefaultSubs.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/Kernel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/Kernel.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/Kernel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/Kernel.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/PatternMgr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/PatternMgr.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/PatternMgr.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/PatternMgr.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/Utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/Utils.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/Utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/Utils.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/WordSub.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/WordSub.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/WordSub.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/WordSub.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/constants.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/constants.cpython-36.pyc -------------------------------------------------------------------------------- /aiml/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /aiml/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/constants.py -------------------------------------------------------------------------------- /aiml/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/constants.pyc -------------------------------------------------------------------------------- /aiml/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aiml/script/aimlvalidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/script/aimlvalidate.py -------------------------------------------------------------------------------- /aiml/script/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/aiml/script/bot.py -------------------------------------------------------------------------------- /database/bot.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/bot.aiml -------------------------------------------------------------------------------- /database/bot_profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/bot_profile.aiml -------------------------------------------------------------------------------- /database/bye.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/bye.aiml -------------------------------------------------------------------------------- /database/date.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/date.aiml -------------------------------------------------------------------------------- /database/default.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/default.aiml -------------------------------------------------------------------------------- /database/domain_Admissions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/domain_Admissions.aiml -------------------------------------------------------------------------------- /database/domain_ExamCell.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/domain_ExamCell.aiml -------------------------------------------------------------------------------- /database/domain_PlacementCell.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/domain_PlacementCell.aiml -------------------------------------------------------------------------------- /database/domain_academics.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/domain_academics.aiml -------------------------------------------------------------------------------- /database/domain_notice.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/domain_notice.aiml -------------------------------------------------------------------------------- /database/emotion.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/emotion.aiml -------------------------------------------------------------------------------- /database/invalidated_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/questions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/questions.txt -------------------------------------------------------------------------------- /database/std-65percent.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-65percent.aiml -------------------------------------------------------------------------------- /database/std-botmaster.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-botmaster.aiml -------------------------------------------------------------------------------- /database/std-connect.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-connect.aiml -------------------------------------------------------------------------------- /database/std-disconnect.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-disconnect.aiml -------------------------------------------------------------------------------- /database/std-errors.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-errors.aiml -------------------------------------------------------------------------------- /database/std-hello.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-hello.aiml -------------------------------------------------------------------------------- /database/std-knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-knowledge.aiml -------------------------------------------------------------------------------- /database/std-numbers.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-numbers.aiml -------------------------------------------------------------------------------- /database/std-personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-personality.aiml -------------------------------------------------------------------------------- /database/std-profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-profile.aiml -------------------------------------------------------------------------------- /database/std-suffixes.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-suffixes.aiml -------------------------------------------------------------------------------- /database/std-that.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-that.aiml -------------------------------------------------------------------------------- /database/std-yesno.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/database/std-yesno.aiml -------------------------------------------------------------------------------- /main_with_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/main_with_session.py -------------------------------------------------------------------------------- /mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/mappings.py -------------------------------------------------------------------------------- /seminar2_progress/__pycache__/sntnce.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/__pycache__/sntnce.cpython-36.pyc -------------------------------------------------------------------------------- /seminar2_progress/__pycache__/sntnce.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/__pycache__/sntnce.cpython-37.pyc -------------------------------------------------------------------------------- /seminar2_progress/shrya/__pycache__/db.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/__pycache__/db.cpython-36.pyc -------------------------------------------------------------------------------- /seminar2_progress/shrya/__pycache__/keywords.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/__pycache__/keywords.cpython-36.pyc -------------------------------------------------------------------------------- /seminar2_progress/shrya/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/db.py -------------------------------------------------------------------------------- /seminar2_progress/shrya/gpa_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/gpa_query.py -------------------------------------------------------------------------------- /seminar2_progress/shrya/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/keywords.py -------------------------------------------------------------------------------- /seminar2_progress/shrya/sqlite.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/sqlite.rar -------------------------------------------------------------------------------- /seminar2_progress/shrya/sqlite/db/pythonsqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/shrya/sqlite/db/pythonsqlite.db -------------------------------------------------------------------------------- /seminar2_progress/sntnce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/seminar2_progress/sntnce.py -------------------------------------------------------------------------------- /seminar2_progress\shrya\db\sqlite\db\pythonsqlite.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/static/style.css -------------------------------------------------------------------------------- /std-startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/std-startup.xml -------------------------------------------------------------------------------- /stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/stress.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/templates/index.html -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__main__.py -------------------------------------------------------------------------------- /test/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/__main__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/__main__.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_encoding.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/test_encoding.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_kernel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/test_kernel.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/test_utils.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_wordsub.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/__pycache__/test_wordsub.cpython-36.pyc -------------------------------------------------------------------------------- /test/encoding.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/encoding.aiml -------------------------------------------------------------------------------- /test/self-test.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/self-test.aiml -------------------------------------------------------------------------------- /test/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/test_encoding.py -------------------------------------------------------------------------------- /test/test_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/test_kernel.py -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/test_utils.py -------------------------------------------------------------------------------- /test/test_wordsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderchintan/College-Information-Chatbot-Information/HEAD/test/test_wordsub.py --------------------------------------------------------------------------------