├── .idea ├── .gitignore ├── Chat bot.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE.md ├── README.md ├── Steps.txt ├── data.csv ├── main.py ├── personal.csv ├── questions.csv └── responds.csv /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Chat bot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/Chat bot.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/README.md -------------------------------------------------------------------------------- /Steps.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/main.py -------------------------------------------------------------------------------- /personal.csv: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/questions.csv -------------------------------------------------------------------------------- /responds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DasunThathsara/Simple-Chat-Bot/HEAD/responds.csv --------------------------------------------------------------------------------