Implements the question-answering chatbot
# Test Example
#test
import tempfile
from os import path
with tempfile.TemporaryDirectory() as tmpdirname:
cb = ChatBot(
faq_data_file=path.join(tmpdirname,'faq_example.csv'),
context_data_file=path.join(tmpdirname,'context_example.csv'),
download_models=False
)
cb.chatbot()