scalability4all / voice-enabled-chatbot

Implementing a voice enabled chatbot which converses with a user via their voice in natural language. Website: https://scalability4all.github.io/
MIT License
38 stars 52 forks source link

Caseinsensitivity for text input #48

Open GargiVyas31 opened 4 years ago

pep8speaks commented 4 years ago

Hello @GargiVyas31! Thanks for updating this PR.

There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers:

Comment last updated at 2020-04-16 17:42:25 UTC
satyammittal commented 4 years ago

@GargiVyas31 Please fix the pep8 issues.

GargiVyas31 commented 4 years ago

I can't see any issues. The branch has no issues. Pls check.

satyammittal commented 4 years ago

Issues are listed here: https://github.com/scalability4all/voice-enabled-chatbot/pull/48#issuecomment-605615413

gautamig54 commented 4 years ago

Hi! I tried using the pyspellchecker library for autocorrecting the words. It did not work effectively for me. Eg. When I typed "how ar you?", it returned me the incorrect work as "you?" and suggested "you". It did not consider "ar". I think the library provided a provision to customise the spell check. We need to upload a text file, containing the customised input to the chatbot and correct the user input accordingly. Or you can try hunspell library which works better that pyspellchecker. Great work! Thanks!