Skip to content

Instantly share code, notes, and snippets.

@kiramishima
Created July 9, 2017 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiramishima/bfcf988306103575c20546da3f7556e6 to your computer and use it in GitHub Desktop.
Save kiramishima/bfcf988306103575c20546da3f7556e6 to your computer and use it in GitHub Desktop.
Bot Inteligentes con LUIS
bot.dialog('/none', function(session){
session.send("No intent");
})
bot.dialog('/getWeather', function(session){
//Add custom code here to implent get weather feature
session.send("GetWeather intent");
})
bot.dialog('/bookFlight', function(session){
//Add custom code here to implent book flight feature
session.send("BookFlight intent");
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment