I have an intent file called alexa_intents.yaml that looks like this
#################################################################
WatchIntent:
action:
- service: scene.turn_on
entity_id: scene.watch_television
#################################################################
StopWatchIntent:
action:
- service: scene.turn_on
entity_id: scene.stop_watch_television
It is included in my configuration.yaml file using this line
intent_script: !include alexa_intents/alexa_intents.yaml
Once my intents get more sophisticated I know that I will want each intent to be in a separate file. Is there a way to split this file up into 2 files?
Thank you
Steven