Fix for most recent HA release

This commit is contained in:
Alex O'Connell
2025-07-05 13:53:01 -04:00
parent dc1e7613b8
commit b8de866113
3 changed files with 2 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ This project provides the required "glue" components to control your Home Assist
Please see the [Setup Guide](./docs/Setup.md) for more information on installation.
## Local LLM Conversation Integration
**The latest version of this integration requires Home Assistant 2025.4.1 or newer**
**The latest version of this integration requires Home Assistant 2025.7.0 or newer**
In order to integrate with Home Assistant, we provide a custom component that exposes the locally running LLM as a "conversation agent".

View File

@@ -357,7 +357,6 @@ class LocalLLMAgent(ConversationEntity, AbstractConversationAgent):
llm_context=llm.LLMContext(
platform=DOMAIN,
context=user_input.context,
user_prompt=user_input.text,
language=user_input.language,
assistant=conversation.DOMAIN,
device_id=user_input.device_id,

View File

@@ -1,6 +1,6 @@
{
"name": "Local LLM Conversation",
"homeassistant": "2025.4.1",
"homeassistant": "2025.7.0",
"content_in_root": false,
"render_readme": true
}