Created
April 21, 2017 01:22
-
-
Save radralph/1e7fbfdaf8d5011fd0e993833c6447e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ask "please choose from blue,yellow or green", { | |
| :choices => "blue,yellow,green", | |
| :recognizer => "en-PH", | |
| :timeout => 20, | |
| :bargein => false, | |
| :mode => "speech", | |
| :onChoice => lambda { |event| @answer = event.value}, | |
| :onBadChoice => lambda { |event| say "Sorry, we did not recognized your speech"}, | |
| :onTimeout => lambda { |event| say "Sorry, we did not receive your input"}} | |
| say "you said" + @answer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment