Skip to content

Instantly share code, notes, and snippets.

@radralph
Last active May 16, 2018 04:38
Show Gist options
  • Save radralph/aa4faf17130741a10140da1686d77c7b to your computer and use it in GitHub Desktop.
Save radralph/aa4faf17130741a10140da1686d77c7b to your computer and use it in GitHub Desktop.
ask "Who would you like to call? Just say Joe or Jane", {
:choices => "Joe, Jane",
:mode => "speech",
:recognizer => "en-PH",
:minConfidence => 0.6,
:onChoice => lambda { |event| say "You said" + event.value},
:onBadChoice => lambda { |event| say "I'm sorry, I didn't understand what you said."},
:onTimeout => lambda { |event| say "I'm sorry, I didn't hear anything"},
:onHangup => lambda { |event| log "Caller disconnected"}
}
hangup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment