So I found this which might help. I tried defining my own intent scripts too, but it was too much of a PITA, I ended up using automations instead.
Thanks, @thegreekgeek@midwest.social. I didn't know you could use special sentence syntax in automations. That's pretty helpful because an action can be conditional, and I think you can even make them conditional based on which specific trigger fired the automation.
It still seems odd that I'd have to make separate automations for each helper I want to address (or separate automation conditions for each), as opposed to having the spoken command have a "variable" and then use that variable to determine which input help to return the value of. But if that's possible, maybe it's just beyond my skill level.
I can think of a couple ways you could have it be one automation, the first is you'd have multiple triggers with different ids and use the choose action to select the response based on the trigger id.
The other way that I'm a bit less sure about is passing the name of the input_date helper through to the response with a wildcard. You'd probably have to set the {{ trigger.slot.event }} as a variable and match that to an alias or an entity_id.
Yes, @thegreekgeek@midwest.social, now knowing that I can use sentence syntax in automations, I have built 1 automation to handle my specific needs. But each trigger is a hardcoded value instead of a "variable". For example, trigger 1 is "sentence = 'what is the date of my birthday'" and I trigger an action conditionally to speak the value of input_date.event_1
because I know that's where I stored the date for "my birthday".
What would be awesome is your 2nd suggestion: passing the name of the input_date helper through to the response with a wildcard. I can't figure out how to do that. I've tried defining and using slots but I just don't understand the syntax. Which file do I define the slots in, and what is the syntax?
I did just check to see if you can pass along wildcards in an automation, which you can! I used this automation:
alias: sentence test
description:
trigger:
- platform: conversation
command:
- When is [my] {date}
condition: []
action:
- set_conversation_response: curses, that damnable {{ trigger.slots.game }}
enabled: false
- choose:
- conditions:
- condition: template
value_template: '{{ ''birthday'' in trigger.slots.date }}'
sequence:
- set_conversation_response: >-
curses, that damnable {{ trigger.slots.date }}! It completely
slipped my mind
- conditions:
- condition: template
value_template: '{{ ''christmas'' in trigger.slots.date }}'
sequence:
- set_conversation_response: sir you know when {{ trigger.slots.date }} is!
This should give you a framework to build off of. It looks like when you don't define a list of slots in an intent it just passes the wildcard along in a slot.
That is HUGE! Thank you, @thegreekgeek@midwest.social! This makes customizing conversations from automations so much more powerful and flexible!
No problem! I've been puttering around trying to figure this out and this post gave me the push I needed lol
I'm embarassed but very pleased that your example also taught me about set_conversation_response
! I had been using tts.speak, which meant I had to define a specific media player, which wasn't always I wanted to do. This is great!
homeassistant
Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io