Introduction
I have recently worked on building a question answering model using Haystack. The model takes as input, a question and returns an answer based on the closed domain data, which in my case is, Information about Machine Learning. I want to integrate this model into a chatbot and add it to my website.
Problem
The problem that I am facing is that I cannot find any tools or resources that would help me do this. Most of them use intents and entities etc, while I want to focus on a more simple solution of just question answering.
Are there any tools that build a chatbot for a website and allow integration of my model for responding to the user input?
Additional Information
My model is written in Python. Right now I have deployed on a sample web app using flask and I get inputs using a form.