This commit is contained in:
mjallen18
2025-10-22 20:18:45 -05:00
parent ee486f52bb
commit 9f1c57ddf2
3 changed files with 53 additions and 21 deletions

View File

@@ -0,0 +1,31 @@
{
buildHomeAssistantComponent,
python3Packages,
fetchFromGitHub,
lib,
...
}:
buildHomeAssistantComponent rec {
owner = "acon96";
domain = "llama_conversation";
version = "v0.4.1";
src = fetchFromGitHub {
owner = owner;
repo = "home-llm";
rev = version;
hash = "sha256-4XmdSHWBGnvjPcTPeu+Ifkuv3BFswR0I/gQipXOWi0o=";
};
propagatedBuildInputs = with python3Packages; [
huggingface-hub
webcolors
];
meta = {
changelog = "https://github.com/acon96/home-llm/releases/tag/${version}";
description = "This project provides the required \"glue\" components to control your Home Assistant installation with a completely local Large Language Model acting as a personal assistant. The goal is to provide a drop in solution to be used as a \"conversation agent\" component by Home Assistant. The 2 main pieces of this solution are the Home LLM model and Local LLM Conversation integration.";
homepage = "https://github.com/acon96/home-llm";
maintainers = [ ];
};
}