nixos-configs/legacyPackages/hass-components/home-llm.nix
matt1432 3207e56df2
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): switch to ollama with mistral-nemo
2024-09-11 13:07:51 -04:00

29 lines
707 B
Nix

{
buildHomeAssistantComponent,
home-llm-src,
python3Packages,
...
}: let
inherit (builtins) fromJSON readFile;
manifest = fromJSON (readFile "${home-llm-src}/custom_components/llama_conversation/manifest.json");
in
buildHomeAssistantComponent {
owner = "acon96";
inherit (manifest) domain version;
src = home-llm-src;
# FIXME: https://github.com/acon96/home-llm/issues/214
postPatch = ''
substituteInPlace ./custom_components/llama_conversation/manifest.json \
--replace-warn "huggingface-hub==0.23.0" "huggingface-hub>=0.23.0"
'';
propagatedBuildInputs = with python3Packages; [
huggingface-hub
requests
webcolors
];
}