settings.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # - voxygen
  33. text_to_speech:
  34. - pico2wave:
  35. language: "fr"
  36. - voxygen:
  37. language: "fr"
  38. voice: "michel"
  39. cache: True
  40. # Trigger engine configuration
  41. # Available engine are:
  42. # - snowboy
  43. triggers:
  44. - snowboy:
  45. pmdl_file: "trigger/snowboy/resources/jarviss.pmdl"