123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- ---
- # ---------------------------
- # Kalliope default settings
- # Use YAML syntax
- # ---------------------------
- # ---------------------------
- # Trigger
- # ---------------------------
- # This is the trigger that will catch your magic work to wake up Kalliope
- default_trigger: "snowboy"
- # Trigger engine configuration
- # Available engine are:
- # - snowboy
- triggers:
- - snowboy:
- pmdl_file: "trigger/snowboy/resources/kalliope-FR-6samples.pmdl"
- # ---------------------------
- # Speech to text
- # ---------------------------
- # This is the STT that will be used by default
- default_speech_to_text: "google"
- speech_to_text:
- - google:
- language: "fr-FR"
- # ---------------------------
- # Text to speech
- # ---------------------------
- # This is the default TTS that will be used by Kalliope to talk.
- default_text_to_speech: "pico2wave"
- # where we store generated audio files from TTS engine to reuse them
- cache_path: "/tmp/kalliope_tts_cache"
- text_to_speech:
- - pico2wave:
- language: "fr-FR"
- cache: True
- - voxygen:
- voice: "Agnes"
- cache: True
- # ---------------------------
- # players
- # ---------------------------
- # This is the sound player that will be used by default
- default_player: "mplayer"
- # players configuration
- # Available engine are:
- # - mplayer
- # - pyalsaaudio
- # - pyaudioplayer
- # - sounddeviceplayer
- players:
- - mplayer: {}
- - pyalsaaudio:
- device: "default"
- # ---------------------------
- # Rest API
- # ---------------------------
- rest_api:
- active: True
- port: 5000
- password_protected: True
- login: admin
- password: secret
- allowed_cors_origin: False
- # ---------------------------
- # Hooks
- # ---------------------------
- hooks:
- on_start:
- - "on-start-synapse"
- - "bring-led-on"
- on_waiting_for_trigger: "test"
- on_triggered:
- - "on-triggered-synapse"
- on_start_listening:
- on_stop_listening:
- on_order_found:
- on_order_not_found:
- - "order-not-found-synapse"
- on_processed_synapses:
- on_deaf: []
- on_undeaf: []
- on_mute: []
- on_unmute: []
- on_start_speaking:
- on_stop_speaking:
- # ---------------------------
- # resource directory path
- # ---------------------------
- resource_directory:
- neuron: "/tmp/kalliope/tests/kalliope_resources_dir/neurons"
- stt: "/tmp/kalliope/tests/kalliope_resources_dir/stt"
- tts: "/tmp/kalliope/tests/kalliope_resources_dir/tts"
- trigger: "/tmp/kalliope/tests/kalliope_resources_dir/trigger"
- # ---------------------------
- # Global files variables
- # /!\ If a variable is defined in different files, the last file defines the value.
- # ---------------------------
- var_files:
- - "../Tests/settings/variables.yml"
- options:
- deaf: True
- mute: False
|