home-assistant-custom-components.local_openai: init at 1.6.0 (#523320)
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
buildHomeAssistantComponent,
|
||||
fetchFromGitHub,
|
||||
openai,
|
||||
demoji,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent (finalAttrs: {
|
||||
owner = "skye-harris";
|
||||
domain = "local_openai";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit (finalAttrs) owner;
|
||||
repo = "hass_local_openai_llm";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-S7gtm9JRaxNh6xbeKRyW6l6nXqE4+h9kgyUZ9RkbLR0=";
|
||||
};
|
||||
|
||||
dependencies = [
|
||||
openai
|
||||
demoji
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/skye-harris/hass_local_openai_llm/releases/tag/${finalAttrs.src.tag}";
|
||||
description = "Home Assistant LLM integration for local OpenAI-compatible services (llama.cpp, vLLM, etc.)";
|
||||
homepage = "https://github.com/skye-harris/hass_local_openai_llm";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ jpds ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user