extended_openai_conversation icon indicating copy to clipboard operation
extended_openai_conversation copied to clipboard

Room/Area weird behavior

Open ThreepE0 opened this issue 5 months ago • 12 comments

Hello and thank you for sharing this!

I've got things set up, but noticed that if I use the "1106" gpt 3.5 turbo model, the assist pipeline just stalls showing "..." then eventually nothing at all. I removed "1106" and it's working now.

However, assist seems confused about where lights are located. If I ask it which lights are in xxx room, it tries to infer that information through the naming convention. Looking at the prompt, I see that the entity area isn't provided, so I tried adding it like this:

entity_id,name,state,area,aliases
{% for entity in exposed_entities -%}
{{ entity.entity_id }},{{ entity.name }},{{ entity.state }},{{ entity.area }},{{entity.aliases | join('/')}}
{% endfor -%}

The entity.area doesn't seem to be populated though. Can it be, or is there some other way to get room-based actions working properly?

ThreepE0 avatar Jan 10 '24 15:01 ThreepE0