My situation is as below.
I am new to Bot-framework and making a chatbot that communicates with QnA-Maker type with KB services, and depending on the certain answer returning ,try to call or start a guided conversation through FormFlow . I'm using SDK-V3(C#.net) and QnAMakerDialog .
IS IT POSSIBLE TO CALL a formflow dialog from a QnAMakerDialog at a certain condition on botbuilder-v3?
Thanks
First thing: you should not be using SDK-V3 if you are starting now: use v4, which is generally available for a few months. v3 will not evolve in the future (apart from a few patches).
Then, have a look to the samples of v4 using
QnA Maker, here: https://github.com/Microsoft/BotBuilder-Samples/blob/master/samples/csharp_dotnetcore/11.qnamaker/QnAMaker/QnABot.csIn this sample, you can see that you can implement your logic in
QnABot.cs: