Has anybody got this working well with HA? I am trying to get it to work by using phrases such as “I am hot”, etc without too much luck. Even using the HA sentences parser I am not getting it to recognize the phrasing. I beat my head on it for a while with ChatGPT so I thought I would ask if anybody else has got it working. My main goal it to get it working so I can set it up at my mother in laws as well. She is losing her vision and anything I can do to help her make her life a little bit easier I am there.
I have updated my config/intents/en.yaml file to include
AdjustTemperature:
slots:
temperature_direction:
freezing
cold
cool
warm
hot
boiling
sentences:
I am {temperature_direction}
I’m {temperature_direction}
I feel {temperature_direction}
It’s too {temperature_direction}
It’s feeling {temperature_direction}
I’m feeling {temperature_direction}
I have also added this to my intent_script. yaml file
AdjustTemperature:
speech:
text: >
{% if temperature_direction in [‘hot’, ‘boiling’, ‘warm’] %}
Okay, lowering the temperature by one degree.
{% elif temperature_direction in [‘cold’, ‘freezing’, ‘cool’] %}
Please could you post your code a preformatted text (</> in the toolbar). It’s quite difficult to follow otherwise and people need to be able to copy it to test it.
I am open to whatever works best. I have a local LLM set up at home but for my mother in laws she is set up using HA cloud. I was trying to set it up at my home first for testing then setting it up at my mother in laws house. Since she has a hard time seeing being able to voice that she is either cold or hot and having the ecobee adjust itself is my main goal.