First we need to install Bot Framework Emulator Install :::> https://github.com/Microsoft/BotFramework-Emulator/releases/download/v3.5.37/botframework-emulator-3.5.37-windows-setup.exe 2. Configure LUIS app https://luis.ai/ Create an Application in Luis Create Intents Each intent inside at least, we need to create one Phrase Create Entities and train Your bot application in LUIS. upload Luis sample json { "query" : "Upcomming movie" , "topScoringIntent" : { "intent" : "Hero" , "score" : 0.921233 }, "entities" : [ { "entity" : "ReleaseDate" , "type" : "Date" , "startIndex" : 10 , "endIndex" : 13 , "score" : 0.7615982 } ] } Or use this link to configure https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-get-started-create-app Next Step: for all Applications : ==========...