this post was submitted on 10 Jul 2026
176 points (98.9% liked)

homeassistant

19951 readers
304 users here now

Home Assistant is open source home automation that puts local control and privacy first.
Powered by a worldwide community of tinkerers and DIY enthusiasts.

Home Assistant can be self-installed on ProxMox, Raspberry Pi, or even purchased pre-installed: Home Assistant: Installation

Discussion of Home-Assistant adjacent topics is absolutely fine, within reason.
If you're not sure, DM @GreatAlbatross@feddit.uk

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] MalReynolds@slrpnk.net 9 points 19 hours ago* (last edited 19 hours ago) (2 children)

I love fully local stuff, but the LLM part seems very expensive. Even for such a simple thing as managing our lights and music.

So, the simple things should just be voice command (not recognition, limited vocabulary), kitchen light on, what's todays weather (assuming you automatically download it and have it there, needs TTS like whisper). That can run on a recent potato. Somewhat more complex things need full voice recognition e.g. Play me x songname by y artist. Laptop CPU should handle that fine. You'll only need a full LLM for more general inquiries, e.g. What mess has Trump made today?, which will need web access seeing as small LLMs don't have a lot of world knowledge (although you can self host Wikipedia and point it at that).

If you have a desktop computer and a GPU with 16+GB VRAM (or even smaller using RAM and a MoE LLM) that'll do the job with reasonable smarts e.g. Qwen 3.6 35BA3B, Gemma 4 12B or 26BA4B. You may have to wait a minute or two. Mine pulls around 55W at idle (7800XT) and does double duty as a NAS and gaming rig, or you can have it sleep most of the time and let the laptop wake it up when necessary.

[–] Mpeach45@lemmy.world 2 points 13 hours ago

“how much is using local LLMs for trivial things raising world wide energy usage and causing a RAM shortage?”

[–] smiletolerantly@awful.systems 7 points 18 hours ago (1 children)

I actually have things like "play x by y" functioning really well without a LLM.

Have a custom service that exports all song/album/artist names from MusicAssistant, does some simple cleanup, and places the list where HomeAssistant expects it for custom voice intents. Then this: https://github.com/charludo/hass-closest-intent is enough that imperfect STT can still easily be matched to those song/artist/... names.