Hello nice to meet you. I am new to the DeepPavlov framework and am aiming to utilize it to create a production-ready basic chatbot. Currently I have ventured the FAQ model in the deeppavlov framework and now want to create an API endpoint so that I can incorporate it to a site where users will ask questions. I am hoping questions can be sent as an HTTP request through an deeppavlov api where the FAQ model will generate an answer and return it through the API.
I am a great fan of the framework and am amazed by its features! But there are various confusing parts not explained in the documentations which is causing several issues.
To attempt this I have read over both the documentation for deeppavlov and deeppavlov agent. But I am confused on multiple parts. In the DeepPavlov’s master documentation on the REST API section, it is very unclear how each models are to be prepared for a rest api. There are no examples and the only available guide is a command-line script for starting a riseapi. But it does not explain how we incorporate our model to the api nor how we are supposed to exactly interact with the api.
Thus, while searching for a better solution, I came across the deeppavlov agent library and read its documentations. I have also seen the example demo you have given on this link: https://github.com/deepmipt/dp-dream-demos
But this demo does not explain how we would incorporate models from the original deeppavlov framework like FAQ, ODQA into the Deeppavlov Agent and create an API with it. It also does not explain how we are to interact with the API to have a conversation using chatbots.
It is just a little bit sad to me that you have built such an amazing library but people are unable to use the features because it is too confusing on how to make the features actually work or function at higher customized level instead of the basic basic level.
In conclusion, could you please explain how we would create an interactive API for the deeppavlov models?