Guest User

Untitled

a guest
May 21st, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. call "9273953465", {:callerID => 'sip:21588260@sip.tropo.net'}
  2. ask "Who would you like to call? Just say Joe or John", {
  3. :choices => "Joe, John",
  4. :mode => "speech",
  5. :recognizer => "en-PH",
  6. :minConfidence => 0.6,
  7. :onChoice => lambda { |event| say "You said" + event.value},
  8. :onBadChoice => lambda { |event| say "I'm sorry, I didn't understand what you said."},
  9. :onTimeout => lambda { |event| say "I'm sorry, I didn't hear anything"},
  10. :onHangup => lambda { |event| log "Caller disconnected"}
  11. }
  12. hangup
Add Comment
Please, Sign In to add comment