Microsoft Bot Builder is a powerful framework for constructing bots that can handle both freeform interactions and more guided ones where the possibilities are explicitly shown to the user. It is easy to use and leverages C# to provide a natural way to write Bots.
High Level Features:
- Powerful dialog system with dialogs that are isolated and composable.
- Built-in dialogs for simple things like Yes/No, strings, numbers, enumerations.
- Built-in dialogs that utilize powerful AI frameworks like LUIS
- Bots are stateless which helps them scale.
- Form Flow for automatically generating a Bot from a C# class for filling in the class and that supports help, navigation, clarification and confirmation.
Get started with the Bot Builder!
There are several samples in this directory.
- Microsoft.Bot.Sample.SimpleEchoBot -- Bot Connector example done with the Bot Builder framework.
- Microsoft.Bot.Sample.EchoBot -- Add state onto the previous example.
- Microsoft.Bot.Sample.SimpleSandwichBot -- FormFlow example of how easy it is to create a rich dialog with guided conversation, help and clarification.
- Microsoft.Bot.Sample.AnnotatedSandwichBot -- Builds on the previous example to add attributes, messages, confirmation and business logic.
- Microsoft.Bot.Sample.SimpleAlarmBot -- Integration of http://luis.ai with the dialog system to set alarms.
- Microsoft.Bot.Sample.AlarmBot -- Add alarm logic to previous bot and send alarms proactively
- Microsoft.Bot.Sample.PizzaBot -- Integration of http://luis.ai with FormFlow.
- Microsoft.Bot.Sample.GraphBot -- Integration of Microsoft Graph Api with dialog system.
- Microsoft.Bot.Sample.SimpleFacebookAuthBot -- A bot showcasing OAuth authentication using Facebook graph API.
- Microsoft.Bot.Sample.SimpleIVRBot -- A sample IVR bot using Skype calling API.
- Stock_Bot -- Samples that show calling a web service, LUIS, and LUIS Dialog.
- SearchPoweredBots -- Samples that show integration of Azure Search with dialogs.
You can find more samples in the Bot Builder SDK Samples repo