mirror of
https://github.com/home-assistant/core.git
synced 2026-08-15 01:32:55 +01:00
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
"""The LiteLLM integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .coordinator import LiteLLMConfigEntry, LiteLLMDataUpdateCoordinator
|
|
|
|
PLATFORMS = [Platform.CONVERSATION]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: LiteLLMConfigEntry) -> bool:
|
|
"""Set up LiteLLM from a config entry."""
|
|
coordinator = LiteLLMDataUpdateCoordinator(hass, entry)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
entry.async_on_unload(entry.add_update_listener(_async_update_listener))
|
|
|
|
return True
|
|
|
|
|
|
async def _async_update_listener(
|
|
hass: HomeAssistant, entry: LiteLLMConfigEntry
|
|
) -> None:
|
|
"""Handle update."""
|
|
await hass.config_entries.async_reload(entry.entry_id)
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: LiteLLMConfigEntry) -> bool:
|
|
"""Unload LiteLLM."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|