Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. var intents = new builder.IntentDialog();
  2. bot.dialog('/', intents);
  3. intents.matches(/^Hi/i, [
  4. function(session)
  5. {
  6. builder.Prompts.text(session, 'Hi there! How are you today?');
  7. },
  8. function(session, results)
  9. {
  10. session.send('%s! How can I help you?', results.response);
  11. }
  12. ]);
  13. intents.matches(/^need version/i, builder.DialogAction.send('The Latest Bot version is 1.1'));
  14. intents.onDefault(builder.DialogAction.send('Hi there! How can I help you today?'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement