I want to use Assist locally, to make sure that its not a problem with STT I’m testing with the assist in writing.
I have an AC that i gave an alias to call it AC, i can set the temperature perfectly fine but trying to switching it off is where I have problems.
Hope somebody can help me to make it possible and probably tell my what I’m doing wrong
what might be more interesting is which entity-type you are “calling” (and the name of that entity)
Try with a simple “turn off ac”, that is if ac is that name of the device/entity
And ofcause make sure that entity/device is “exposed” to the assist
Yeah… based on the “Ac is cool” response it seems like it is exposed and is a climate entity. Looking at the HassTurnOff - name_only intents, climate entities aren’t included specifically, so OP will probably be best off using a custom sentence.
You aren’t doing anything wrong, you’ve just bumped up against one of the quirks of the built-in voice intents… The easiest solution is to set up an automation with a Sentence trigger.
You could also create a helper “template switch” and turn that on/off with reference to conditions for the the respective states for on/off ( Off/Heat , or what ever states it has )
I.e State
choose:
- conditions:
- condition: climate.is_hvac_mode
target:
entity_id: climate.your_hvac
options:
behavior: any
for: "00:00:00"
hvac_mode:
- off
sequence:
- action: climate.set_hvac_mode
metadata: {}
target:
entity_id: climate.your_hvac
data:
hvac_mode: "heat"
*** Actions on Turn Off ***
action: climate.set_hvac_mode
metadata: {}
target:
entity_id: climate.your_hvac
data:
hvac_mode: off