Hello, I’m trying to configure intent_script for dialogflow.
To try to better organize HA wanted to put my intent_script in a folder and for that I set like this:
intent_script: !include_dir_merge_list configs/intent
But after placing the yaml files in the folder intents do not work, In the yaml files I tried these ways
Temperatura.yaml
speech:
text: We have {{ states.sensor.temperature }} degrees
action:
service: notify.notify
data_template:
message: Hello from an intent!
2º Try
Temperatura:
speech:
text: We have {{ states.sensor.temperature }} degrees
action:
service: notify.notify
data_template:
message: Hello from an intent!
3º Try
- Temperatura:
speech:
text: We have {{ states.sensor.temperature }} degrees
action:
service: notify.notify
data_template:
message: Hello from an intent!
With these attempts I was unsuccessful, but if so:
intent_script:
Temperatura:
speech:
text: We have {{ states.sensor.temperature }} degrees
action:
service: notify.notify
data_template:
message: Hello from an intent!
everything works correctly.
Is possible to configure with include_dir_merge_list configs?
Thank you