Friday, May 1Digital Marketing Journals

bot-framework

Create chatbot using bot framework sdk and LUIS — Part 5 | by Sushmita Mishra | Jan, 2022
ai bot, ai chat, ai chatbot, best chatbot, bot-framework, chatbot, chatbot ai, chatbot app, chatbot online, chatbot website, chatbot-development, chatbots, conversation with ai, creating chatbots, microsoft-luis, robot chat

Create chatbot using bot framework sdk and LUIS — Part 5 | by Sushmita Mishra | Jan, 2022

This the last part of this blog series.In this part we will complete the coding for view orders and cancel order conversation flow.Changes in vieworder_dialogIn the waterfall steps add a step view_step. Define the async functionfor view_step. Fetch user_id from context object. We have already defined a function getOrders in orderApp module (see previous parts of the blog) to fetch the orders from csv, which are not in “Cancelled” status, for the given user id. Now we will call that function. Function getOrders returns the result in dataframe. Read each row from the dataframe and display the result to the user as bot response. End the dialog to go back to the main dialog.Below is the final code for vieworder_dialog.pyChanges in cancelorder_dialog.pyIn cancelorder_dialog we will add 2 steps ...
Create chatbot using bot framework sdk and LUIS — Part 1 | by Sushmita Mishra | Jan, 2022
ai bot, ai chat, ai chatbot, best chatbot, bot-framework, chatbot, chatbot ai, chatbot app, chatbot online, chatbot website, chatbots, conversation with ai, creating chatbots, luis, robot chat

Create chatbot using bot framework sdk and LUIS — Part 1 | by Sushmita Mishra | Jan, 2022

We will create a simple e-commerce chatbot using Microsoft bot framework SDK in python. Our bot agent is a Bakery Shop agent. Users can request the bot to create an order , view orders and cancel order.Source code for the bot is available here. You can download the code from the git directly or you can follow this blog to code along with me.We will develop the bot in multiple parts.Part 1 — Below mentioned conversation flow we will complete in part 1:bot will welcome and greet the user [this will be implemented using an adaptive card]Bot will ask the user whether he is an existing user or a new user [using option buttons]If user responds as new user then a new user id will be generated and displayed to the user as responseIf the user’s response is “Existing user” then Bot will prompt user ...
Building a Weather Bot using Bot Framework Composer- Part 2 | by Mitusha Arya | Jul, 2021
ai bot, ai chat, ai chatbot, best chatbot, bot-framework, chatbot, chatbot ai, chatbot app, chatbot online, chatbot website, chatbots, conversation with ai, creating chatbots, microsoft, microsoft-bot-framework, robot chat

Building a Weather Bot using Bot Framework Composer- Part 2 | by Mitusha Arya | Jul, 2021

The first part of the tutorial can be found here — https://chatbotslife.com/building-a-weather-bot-with-bot-framework-composer-fa62b7cc9623A dialog contains one or more triggers. Each trigger consists of one or more actions which are the set of instructions that the bot will execute. Dialogs can also call other dialogs and can pass values back and forth between them.In this tutorial, you learn how to:Add dialogs to a basic bot.Run the bot locally and test it.The main function of the bot is to report current weather conditions.To do this, you will create a dialog that:Prompts the user to enter a postal code to use as a location for weather lookup.Calls an external API to retrieve the weather data for the specified postal code.Start Composer.Select the weather_bot bot project from the Recent...
Knowledge bots. Earlier this year, I had a task to… | by Abhinav Ajmera | Apr, 2021
ai bot, ai chat, ai chatbot, best chatbot, bot-framework, botpress, chatbot, chatbot ai, chatbot app, chatbot messenger, chatbot online, chatbot website, chatbots, conversation with ai, creating chatbots, data-science, facebook bot, facebook chatbot, facebook messenger bot, machine-learning, robot chat

Knowledge bots. Earlier this year, I had a task to… | by Abhinav Ajmera | Apr, 2021

Earlier this year, I had a task to create a knowledge bot for an enterprise level platform. The users were primarily the employees of the organization and intention was to use the knowledge bot to share the offering and usage of platform.There are quite a lot of frameworks in the market (each with its own pros and cons) hence it is very important that one selects the right framework depending upon the kind of bot that you are targeting to create. In case of creating the knowledge bots the typical requirements are –1. The main purpose of the knowledge bot is to provide the information about the offering via a guided chat. If the user wishes, he should be able to come out of the guided chat and ask adhoc questions about the offering and go back to the guided chat.2. The knowledge bot should ...