settings.yml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ---
  2. # ---------------------------
  3. # Kalliope default settings
  4. # Use YAML syntax
  5. # ---------------------------
  6. # This is the trigger that will catch your magic work to wake up Kalliope
  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 Kalliope to talk.
  11. default_text_to_speech: "pico2wave"
  12. # When Kalliope 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. # You can play a sound when Kalliope detect the hotword/trigger instead of saying something from
  22. # the `random_wake_up_answers`.
  23. # Place here the full path of the sound file or just the name of the file in /usr/lib/kalliope/sounds
  24. # The file must be .wav or .mp3 format. By default two file are provided: ding.wav and dong.wav
  25. random_wake_up_sounds:
  26. - "ding.wav"
  27. - "dong.wav"
  28. # - "/my/personal/full/path/my_file.mp3"
  29. # Spreech to Text engines configuration
  30. # Available engine are:
  31. # - google (via SpeechRecognition)
  32. # -
  33. speech_to_text:
  34. - google:
  35. language: "fr-FR"
  36. - wit:
  37. key: "B5JI3YUSLYOYWNIDBINBVM34XUODME2K"
  38. - bing: # API not working : credential fails ..
  39. key: "9e48ddaf75904838bedc11aea6b36fb0"
  40. - apiai: # Fail retriving the text from the audio file ..
  41. key: "e0cbff154af44944a6b9f82c0668b527"
  42. language: "fr"
  43. - houndify: # In the online documentation but Not implemented yet in the speech recognition lib ..?
  44. key: "7zj90T7qAV74OYXk4X4vI2Xhk7wPsJu4aEZ0G5Ll-BMmV1JGtFpCxtSH9SmTY4G3bpEJ7a5y_GTQid-CAKI6vw=="
  45. client_id: "lN4JXeaSticbSo9-llczbA=="
  46. # Text to Spreech engines configuration
  47. # Available engine are:
  48. # - pico2wave
  49. # - voxygen
  50. text_to_speech:
  51. - pico2wave:
  52. language: "fr-FR"
  53. cache: True
  54. - voxygen:
  55. language: "fr"
  56. voice: "Emma"
  57. cache: True
  58. - acapela:
  59. language: "sonid15"
  60. voice: "Manon"
  61. cache: True
  62. - googletts:
  63. language: "fr"
  64. cache: True
  65. - voicerss:
  66. language: "fr-fr"
  67. cache: True
  68. # Trigger engine configuration
  69. # Available engine are:
  70. # - snowboy
  71. triggers:
  72. - snowboy:
  73. pmdl_file: "trigger/snowboy/resources/kalliope-FR-6samples.pmdl"