Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ecommerce Chatbot | 84 | 5 years ago | mit | JavaScript | ||||||
An example of a chatbot built with Microsoft Bot Framework and featuring e-commerce capabilities via Moltin, Azure Search, Recommendations API, and LUIS | ||||||||||
Go Adbbot | 47 | 9 months ago | May 24, 2021 | 1 | mit | Go | ||||
android bot based on adb and golang | ||||||||||
Mybot | 30 | 2 years ago | 1 | mit | JavaScript | |||||
🧠 Create chatbots easily with Bot Framework! 🤖 | ||||||||||
Metagon | 10 | a year ago | 3 | bsd-3-clause | JavaScript | |||||
A multi-platform bot that brings you nice images, useful tools, and endless fun! | ||||||||||
Bot Framework V4 With Azure Search | 4 | 4 years ago | HTML | |||||||
This is a demo for Azure Search with Bot Framework v4 C# application. | ||||||||||
Phinder | 4 | 7 years ago | mit | JavaScript | ||||||
Yet another photo finder bot | ||||||||||
Bot V3 Search Select Result Sample | 3 | 5 years ago | 1 | mit | C# | |||||
A sample bot project where a users initiaties a search and selects a result |
Having a users select from a list of items is a relatively common scenario for bots. However, the implementation of this scenario requires a relatively complex chain of Dialogs with data being passed between them both in terms of the user's initial query and the chosen result coming back down the chain.
This repository contains a simple example of such an implementation. It uses a simple IDialog
which initiates the process in response to any message but this could easily be substituted with a LuisDialog
fr handling different intents.
The sample is a simple Bot Application created from the BotBuilder template. The interesting bits start at RootDialog.cs.
This is the basic flow this sample achieves.