settings.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ---
  2. # ---------------------------
  3. # Kalliope default settings
  4. # Use YAML syntax
  5. # ---------------------------
  6. # ---------------------------
  7. # Trigger
  8. # ---------------------------
  9. # This is the trigger that will catch your magic work to wake up Kalliope
  10. default_trigger: "snowboy"
  11. # Trigger engine configuration
  12. # Available engine are:
  13. # - snowboy
  14. triggers:
  15. - snowboy:
  16. pmdl_file: "trigger/snowboy/resources/kalliope-FR-6samples.pmdl"
  17. # ---------------------------
  18. # Speech to text
  19. # ---------------------------
  20. # This is the STT that will be used by default
  21. default_speech_to_text: "google"
  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. - wit:
  30. key: "B5JI3YUSLYOYWNIDBINBVM34XUODME2K"
  31. - bing: # API not working : credential fails ..
  32. key: "9e48ddaf75904838bedc11aea6b36fb0"
  33. - apiai: # Fail retriving the text from the audio file ..
  34. key: "e0cbff154af44944a6b9f82c0668b527"
  35. language: "fr"
  36. - houndify: # In the online documentation but Not implemented yet in the speech recognition lib ..?
  37. key: "7zj90T7qAV74OYXk4X4vI2Xhk7wPsJu4aEZ0G5Ll-BMmV1JGtFpCxtSH9SmTY4G3bpEJ7a5y_GTQid-CAKI6vw=="
  38. client_id: "lN4JXeaSticbSo9-llczbA=="
  39. # ---------------------------
  40. # Text to speech
  41. # ---------------------------
  42. # This is the default TTS that will be used by Kalliope to talk.
  43. default_text_to_speech: "pico2wave"
  44. # Text to Spreech engines configuration
  45. # Available engine are:
  46. # - pico2wave
  47. # - voxygen
  48. text_to_speech:
  49. - pico2wave:
  50. language: "fr-FR"
  51. cache: True
  52. - voxygen:
  53. language: "fr"
  54. voice: "Emma"
  55. cache: True
  56. - acapela:
  57. language: "sonid15"
  58. voice: "Manon"
  59. cache: True
  60. - googletts:
  61. language: "fr"
  62. cache: True
  63. - voicerss:
  64. language: "fr-fr"
  65. cache: True
  66. # ---------------------------
  67. # Wake up answers
  68. # ---------------------------
  69. # When Kalliope detect the hotword/trigger, he will select randomly a phrase in the following list
  70. # to notify the user that he's listening for orders
  71. random_wake_up_answers:
  72. - "Oui monsieur?"
  73. - "Je vous écoute"
  74. - "Monsieur?"
  75. - "Que puis-je faire pour vous?"
  76. - "J'écoute"
  77. - "Oui?"
  78. # You can play a sound when Kalliope detect the hotword/trigger instead of saying something from
  79. # the `random_wake_up_answers`.
  80. # Place here the full path of the sound file or just the name of the file in /usr/lib/kalliope/sounds
  81. # The file must be .wav or .mp3 format. By default two file are provided: ding.wav and dong.wav
  82. random_wake_up_sounds:
  83. - "ding.wav"
  84. - "dong.wav"
  85. # - "/my/personal/full/path/my_file.mp3"
  86. # ---------------------------
  87. # Rest API
  88. # ---------------------------
  89. rest_api:
  90. active: True
  91. port: 5000
  92. password_protected: True
  93. login: admin
  94. password: secret