Guest User

new voice commands for sentry mode

a guest
Mar 31st, 2019
2,178
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2. "command_type" : "sentry_on",
  3. "description" : "keep tesla safe",
  4. "command_regexp" : "^(keep (?:(((my )?)(car|tesla))|summer) safe)$",
  5. "tests_match": [
  6. ["keep summer safe"],
  7. ["keep tesla safe"],
  8. ["keep my tesla safe"],
  9. ["keep car safe"],
  10. ["keep my car safe"]
  11. ]
  12. },
  13. {
  14. "command_type" : "sentry_on",
  15. "description" : "turn sentry on",
  16. "command_regexp" : "^((turn )?(sentry|century)( mode)? on)$",
  17. "tests_match": [
  18. ["sentry on"],
  19. ["sentry mode on"],
  20. ["turn sentry mode on"]
  21. ]
  22. },
  23. {
  24. "command_type" : "sentry_off",
  25. "description" : "turn sentry off",
  26. "command_regexp" : "^((turn )?(sentry|century)( mode)? off)$",
  27. "tests_match": [
  28. ["sentry off"],
  29. ["sentry mode off"],
  30. ["turn sentry mode off"]
  31. ]
  32. },
  33. {
  34. "command_type" : "sentry_on",
  35. "description" : "enable sentry mode",
  36. "command_regexp" : "^(enable (sentry|century)( mode)?)$",
  37. "tests_match": [
  38. ["enable sentry"],
  39. ["enable sentry mode"],
  40. ["enable century mode"]
  41. ]
  42. },
  43. {
  44. "command_type" : "sentry_off",
  45. "description" : "disable sentry mode",
  46. "command_regexp" : "^(disable (sentry|century)( mode)?)$",
  47. "tests_match": [
  48. ["disable sentry"],
  49. ["disable sentry mode"],
  50. ["disable century mode"]
  51. ]
  52. }
RAW Paste Data