#Ask Question - unknown error
1 messages · Page 1 of 1 (latest)
Not without you sharing what you tried with the new ask_question action
So initially, after the update, my device was not reacheable so I rebooted it and restarted the integration. I did this one more time and nothing changed. The Wyoming satellite works for announce and requests (with responses) but doesn't with as question. I compiled all the needed fields asked by the action, yet I'm always seeing this "unknown error"
Sorry for the lack of details in the first message. Let me know if I can do any more troubleshooting to help you out
Please post the YAML code of your automation/script in which you are using assist_satellite.ask_question
description: ""
triggers:
- trigger: state
entity_id:
- light.livingroom
from: "off"
to: "on"
conditions: []
actions:
- action: assist_satellite.ask_question
metadata: {}
data:
question: Should I keep the light on?
preannounce: false
entity_id: assist_satellite.home
answers:
- id: affermative
sentences:
- Yes
- id: negative
sentences:
- "No"
response_variable: lightask
mode: single
I changed it to this (I only changed the trigger entity_id, the assist satellite entity_id and I translated the sentences to Dutch, as that's the language of my voice pipeline)
alias: Ask Test
description: ""
triggers:
- trigger: state
entity_id:
- input_boolean.test
from: "off"
to: "on"
conditions: []
actions:
- action: assist_satellite.ask_question
metadata: {}
data:
question: Should I keep the light on?
preannounce: false
entity_id: assist_satellite.martijn
answers:
- id: affermative
sentences:
- Ja
- id: negative
sentences:
- Nee
response_variable: lightask
mode: single
for me it works fine, my voice satellite asks the question, and when I respond with either Ja or Nee it processes the response
as there are no further actions, nothing happens
I'm using a Voice PE, but I don't see anytihng wrong with your automation
Where do you see this unknown error?