Removing async_migrate_engine

Removing the async_migrate_engine call on assist_pipeline to address breaking change in homeassistant.
This commit is contained in:
Ryan Georgi
2025-08-30 17:39:54 -07:00
parent 016e8fae95
commit 650d55c016

View File

@@ -227,9 +227,6 @@ class LocalLLMAgent(ConversationEntity, AbstractConversationAgent):
async def async_added_to_hass(self) -> None:
"""When entity is added to Home Assistant."""
await super().async_added_to_hass()
assist_pipeline.async_migrate_engine(
self.hass, "conversation", self.entry.entry_id, self.entity_id
)
conversation.async_set_agent(self.hass, self.entry, self)
async def async_will_remove_from_hass(self) -> None: