ai bot, ai chat, ai chatbot, best chatbot, chatbot, chatbot ai, chatbot app, chatbot online, chatbot website, chatbot-development, chatbots, conversation with ai, creating chatbots, microsoft-bot-framework, microsoft-luis, robot chat
Create chatbot using bot framework sdk and LUIS — Part 3 | by Sushmita Mishra | Jan, 2022
In Part-1 and Part-2 we created a basic e-comm chatbot and started creating ‘create order’ conversation flow. In this part we will be generating order id and saving the order details in data storage. In next part we will be adding intelligence using LUIS. Complete source code is here.Following tasks we will complete in this part:Generate order ID for the order details provided by the userCreate a csv file to save the order details against the user id. (to keep this tutorial simple we r using csv for data storage, replace it with your database).Create a csv file to store order details:In the project folder add a new folder. Name it Data. Create a csv file order_dummy.csv with 5 columns — user_id, order_id, creation_date, order_status, order_description.Create helper functions to manage orde...



