diff --git a/homeassistant/helpers/llm.py b/homeassistant/helpers/llm.py index 9a019551c1e..1eb30fe7512 100644 --- a/homeassistant/helpers/llm.py +++ b/homeassistant/helpers/llm.py @@ -656,7 +656,6 @@ def _get_exposed_entities( if not async_should_expose(hass, assistant, state.entity_id): continue - description: str | None = None entity_entry = entity_registry.async_get(state.entity_id) names = [state.name] area_names = [] @@ -692,9 +691,6 @@ def _get_exposed_entities( if (parsed_utc := dt_util.parse_datetime(state.state)) is not None: info["state"] = dt_util.as_local(parsed_utc).isoformat() - if description: - info["description"] = description - if area_names: info["areas"] = ", ".join(area_names)