0
votes

I need to call the formflow from LUIS using bot framework 4.0. Is it possible to do? If anyone has done it before please share reference links. Thanks, Sheveta

2
what have you tried ?Kunal Mukherjee

2 Answers

3
votes

I am not sure exactly what you are trying to achieve here, but FormFlow has been deprecated from the core SDK as of v4. It is however available via the Bot Builder Community project on GitHub over at https://github.com/BotBuilderCommunity/botbuilder-community-dotnet or via NuGet at https://www.nuget.org/packages/Bot.Builder.Community.Dialogs.FormFlow/

0
votes

FormFlows are removed from the Bot Framework SDK v4, they were an essential part of SDK v3 nonetheless.

However if you want to mimic the functionality of FormFlows the closest you can get using purely SDK v4 is by using Waterfall dialogs which are like mini dialogs prompted at each step.

And also like Gary said, you can use the Bot.Builder.Community.Dialogs.FormFlow nuget package for getting a port into SDK v4.