I created the bot service through the "Azure Portal" with Node.js and LUIS. When the bot is created, I can forever see the loading of the chat interface with the message "Loading chat interface". Bot Developer Interface
So, I opened Bot through "My bots" on "dev.botframework.com" and tested the connection. Error with error below. Chat window
When I pinged "Hello" in the chat window, I could see an error in log exclusion when executing the function: Functions.messages. mscorlib: Error: cannot find module 'botbuilder'
I could see the dependency "botbuildr" in "package.json" as shown below.
{ "name": "luisbot", "version": "1.0.0", "description": "", "main": "index.js", "dependencies": { "botbuilder": "^3.7.0", "botbuilder-azure": "3.0.2" }, "devDependencies": { "restify": "^4.3.0" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" }
Any suggestions for error?
source share