Skip to content

Instantly share code, notes, and snippets.

@jazzedge
Last active July 28, 2017 16:27
Show Gist options
  • Select an option

  • Save jazzedge/45b61659d0442f1f6e67c40bdb0604d1 to your computer and use it in GitHub Desktop.

Select an option

Save jazzedge/45b61659d0442f1f6e67c40bdb0604d1 to your computer and use it in GitHub Desktop.
Bot Simple waterfall example
bot.dialog('greetings', [
// Step 1
function (session, args, next) {
builder.Prompts.text(session, 'Hi! What is your name?');
},
// Step 2
function (session, args, next) {
session.endDialog('Hello %s!', args.response);
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment