settings.yml 698 B

123456789101112131415161718192021222324252627282930
  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: "pico2wave"
  13. # Spreech to Text engines configuration
  14. # Available engine are:
  15. # - google (via SpeechRecognition)
  16. # -
  17. speech_to_text:
  18. - google:
  19. language: "fr-FR"
  20. - bing
  21. # Text to Spreech engines configuration
  22. # Available engine are:
  23. # - pico2wave
  24. text_to_speech:
  25. - pico2wave:
  26. language: "fr-FR"