I was following code sample about QnA Maker multiturn feature. If I want to use that I have to fill QnAMakerOptions.context
in request for Generate Answer API. Its type is QnARequestContext
and this interface specifies 2 fields: previousQnAId
and previousUserQuery
.
In that code sample only previousQnAId
is filled which makes sense for me because for context only follow up questions QnA Maker needs to know what was the previous question. But what is purpose of previousUserQuery
and why should I use that?
I was trying to understand it from API documentation but I was unable to do so.