settings.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. # ---------------------------
  3. # JARVIS default settings
  4. # Use YAML syntax
  5. # ---------------------------
  6. # This is the trigger that will catch your magic work to wake up JARVIS
  7. default_trigger: "snowboy"
  8. # This is the STT that will be used by default
  9. default_speech_to_text: "google"
  10. # This is the default TTS that will be used by JARVIS to talk.
  11. default_text_to_speech: "pico2wave"
  12. # When jarvis detect the hotword/trigger, he will select randomly a phrase in the following list
  13. # to notify the user that he's listening for orders
  14. random_wake_up_answers:
  15. - "Oui monsieur?"
  16. - "Je vous écoute"
  17. - "Monsieur?"
  18. - "Que puis-je faire pour vous?"
  19. - "J'écoute"
  20. - "Oui?"
  21. # Spreech to Text engines configuration
  22. # Available engine are:
  23. # - google (via SpeechRecognition)
  24. # -
  25. speech_to_text:
  26. - google:
  27. language: "fr-FR"
  28. - bing
  29. # Text to Spreech engines configuration
  30. # Available engine are:
  31. # - pico2wave
  32. text_to_speech:
  33. - pico2wave:
  34. language: "fr"
  35. - voxygen:
  36. language: "fr"
  37. voice: "michel"
  38. cache: True
  39. triggers:
  40. - snowboy:
  41. pmdl_file: "jarviss.pmdl"