Advertisement
Guest User

test

a guest
Sep 19th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. event = ask("welcome please select New, buy, or sell", {
  2. "choices":"buy, sell, new",
  3. "timeout":10.0,
  4. "onBadChoice": lambda event : say("I'm sorry, I didn't understand that. You can select New, buy, or sell."),
  5. })
  6. say("you have chosen " + event.value)
  7. r = record("tell me your buying details", {
  8. "beep":True,
  9. "maxTime":60,
  10. "silenceTimeout":7,
  11. "terminator":"#",
  12. "transcriptionOutURI": "http://app.inflack.com:8800/record/?type=buy",
  13. "transcriptionOutFormat": "json",
  14. "transcriptionID": callerID
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement