Release v2.0.0

This commit is contained in:
SMKRV
2024-11-22 16:58:22 +03:00
parent d35ded6502
commit 72621d9d0e
2 changed files with 11 additions and 4 deletions
+4 -4
View File
@@ -62,6 +62,9 @@ async def async_setup_entry(
class HATextAISensor(CoordinatorEntity, SensorEntity):
"""HA text AI Sensor."""
_attr_has_entity_name = True
_attr_translation_key = "ha_text_ai"
def __init__(
self,
coordinator: HATextAICoordinator,
@@ -71,10 +74,7 @@ class HATextAISensor(CoordinatorEntity, SensorEntity):
super().__init__(coordinator)
self._config_entry = config_entry
self._attr_unique_id = config_entry.entry_id
self._attr_suggested_display_precision = 0
self._error_count = 0
self._last_error = None
self._state = STATE_INITIALIZING
self._attr_device_info = {
"identifiers": {(DOMAIN, self._attr_unique_id)},
"name": "HA Text AI",
@@ -66,5 +66,12 @@
}
}
}
},
"entity": {
"sensor": {
"ha_text_ai": {
"name": "HA Text AI"
}
}
}
}