settings_test.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. speech_to_text:
  23. - google:
  24. language: "fr-FR"
  25. # ---------------------------
  26. # Text to speech
  27. # ---------------------------
  28. # This is the default TTS that will be used by Kalliope to talk.
  29. default_text_to_speech: "pico2wave"
  30. # where we store generated audio files from TTS engine to reuse them
  31. cache_path: "/tmp/kalliope_tts_cache"
  32. text_to_speech:
  33. - pico2wave:
  34. language: "fr-FR"
  35. cache: True
  36. - voxygen:
  37. voice: "Agnes"
  38. cache: True
  39. # ---------------------------
  40. # Wake up answers
  41. # ---------------------------
  42. # When Kalliope detect the hotword/trigger, he will select randomly a phrase in the following list
  43. # to notify the user that he's listening for orders
  44. random_wake_up_answers:
  45. - "Oui monsieur?"
  46. # You can play a sound when Kalliope detect the hotword/trigger instead of saying something from
  47. # the `random_wake_up_answers`.
  48. # Place here the full path of the sound file or just the name of the file in /usr/lib/kalliope/sounds
  49. # The file must be .wav or .mp3 format. By default two file are provided: ding.wav and dong.wav
  50. random_wake_up_sounds:
  51. - "ding.wav"
  52. - "dong.wav"
  53. # ---------------------------
  54. # Rest API
  55. # ---------------------------
  56. rest_api:
  57. active: True
  58. port: 5000
  59. password_protected: True
  60. login: admin
  61. password: secret
  62. # ---------------------------
  63. # Default Synapse
  64. # ---------------------------
  65. # Specify an optional default synapse response in case your order is not found.
  66. default_synapse: "Default-synapse"
  67. # ---------------------------
  68. # resource directory path
  69. # ---------------------------
  70. resource_directory:
  71. neuron: "/tmp/kalliope/tests/kalliope_resources_dir/neurons"
  72. stt: "/tmp/kalliope/tests/kalliope_resources_dir/stt"
  73. tts: "/tmp/kalliope/tests/kalliope_resources_dir/tts"
  74. trigger: "/tmp/kalliope/tests/kalliope_resources_dir/trigger"