Update minimum required HA version

This commit is contained in:
Alex O'Connell
2025-04-13 18:10:32 -04:00
parent 3b01f8ace2
commit 7994f3fcd1
3 changed files with 10 additions and 10 deletions

View File

@@ -20,33 +20,33 @@ jobs:
matrix:
include:
# ARM variants
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "aarch64"
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "armhf"
# Base x86
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
suffix: "-noavx"
arch: "amd64"
extra_defines: "-DGGML_AVX=OFF -DGGML_AVX2=OFF -DGGML_FMA=OFF -DGGML_F16C=OFF"
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "i386"
suffix: "-noavx"
extra_defines: "-DGGML_AVX=OFF -DGGML_AVX2=OFF -DGGML_FMA=OFF -DGGML_F16C=OFF"
# AVX2 and AVX512
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "amd64"
extra_defines: "-DGGML_AVX=ON -DGGML_AVX2=ON -DGGML_FMA=ON -DGGML_F16C=ON"
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "amd64"
suffix: "-avx512"
extra_defines: "-DGGML_AVX512=ON -DGGML_FMA=ON -DGGML_F16C=ON"
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "i386"
extra_defines: "-DGGML_AVX=ON -DGGML_AVX2=ON -DGGML_FMA=ON -DGGML_F16C=ON"
- home_assistant_version: "2024.12.3"
- home_assistant_version: "2025.4.1"
arch: "i386"
suffix: "-avx512"
extra_defines: "-DGGML_AVX512=ON -DGGML_FMA=ON -DGGML_F16C=ON"

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 2024.12.3 or newer**
**The latest version of this integration requires Home Assistant 2025.4.1 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

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