Can I create FormFlow dialogs using Node.js?

Frequently Asked Questions about the Bot Framework ( http://docs.botframework.com/faq/#what-does-the-bot-builder-sdk-provide-to-developers-how-does-it-work ) indicates that the SDK Bot Builder allows developers to create "FormFlow" dialogs to help with complex issues like multi-turn and ambiguous, but I can only find FormFlow in the C # documentation.

Can I create FormFlow dialogs using the Node.js SDK? If so, can someone point me to the documentation? Thank you very much.

+4
source share
1 answer

No, FormFlow uses .NET reflection to output information from your data structures to build a dialog.

+4
source

Source: https://habr.com/ru/post/1263060/


All Articles