settings.yml 1.0 KB

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