mirror of
https://github.com/smkrv/ha-text-ai.git
synced 2026-07-28 22:13:52 +08:00
Release v2.0.0
This commit is contained in:
@@ -59,33 +59,31 @@ async def async_setup_entry(
|
|||||||
coordinator = hass.data[DOMAIN][entry.entry_id]
|
coordinator = hass.data[DOMAIN][entry.entry_id]
|
||||||
async_add_entities([HATextAISensor(coordinator, entry)], True)
|
async_add_entities([HATextAISensor(coordinator, entry)], True)
|
||||||
|
|
||||||
class HATextAISensor(CoordinatorEntity, SensorEntity):
|
def __init__(
|
||||||
"""HA text AI Sensor."""
|
self,
|
||||||
|
coordinator: HATextAICoordinator,
|
||||||
|
config_entry: ConfigEntry,
|
||||||
|
) -> None:
|
||||||
|
"""Initialize the sensor."""
|
||||||
|
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",
|
||||||
|
"manufacturer": "Community",
|
||||||
|
"model": f"{coordinator.model} ({self._config_entry.data.get(CONF_API_PROVIDER, 'Unknown')} provider)",
|
||||||
|
"sw_version": coordinator.api_version,
|
||||||
|
}
|
||||||
|
|
||||||
_attr_has_entity_name = True
|
@property
|
||||||
|
def name(self) -> str:
|
||||||
def __init__(
|
"""Return the name of the sensor."""
|
||||||
self,
|
return "HA Text AI"
|
||||||
coordinator: HATextAICoordinator,
|
|
||||||
config_entry: ConfigEntry,
|
|
||||||
) -> None:
|
|
||||||
"""Initialize the sensor."""
|
|
||||||
super().__init__(coordinator)
|
|
||||||
self._config_entry = config_entry
|
|
||||||
self._attr_unique_id = f"{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",
|
|
||||||
"manufacturer": "Community",
|
|
||||||
"model": f"{coordinator.model} ({self._config_entry.data.get(CONF_API_PROVIDER, 'Unknown')} provider)",
|
|
||||||
"sw_version": coordinator.api_version,
|
|
||||||
}
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def icon(self) -> str:
|
def icon(self) -> str:
|
||||||
|
|||||||
Reference in New Issue
Block a user