Hi, I am having a problem for using custom sentences in the "custom_sentences/en "path with the config.yaml for controlling media players... it responds but doesn't execute actions. Does anyone have solutions for that, because I followed the documentation and did the exact first, then tried modifying the "intent_script" in configuration.yaml in different ways, and nothing works: https://www.home-assistant.io/voice_control/custom_sentences/
`
Example config/custom_sentences/en/media.yaml
language: "en"
intents:
SetVolume:
data:
- sentences:
- "(set|change) {media_player} volume to {volume} [percent]"
- "(set|change) [the] volume for {media_player} to {volume} [percent]"
- "(set|change) [the] {media_player} volume to {volume} [percent]"
lists:
media_player:
values:
- in: "living room"
out: "media_player.lg_tv"
- in: "bedroom"
out: "media_player.vlc_telnet"
volume:
range:
from: 0
to: 100
`