AI Home Automation 2026: What Actually Works
Cloud LLMs, local Ollama, voice assistants - how AI plugs into Home Assistant in 2026, what genuinely works, and what's still marketing.

Two years ago, 'AI in your smart home' meant either Alexa picking up the wrong wake word or a ChatGPT integration that mostly hallucinated entity names. In 2026 the picture has materially improved. The Home Assistant Assist voice pipeline works end-to-end with both cloud and local LLMs. Cloud models (Claude, GPT-4 and Gemini) handle device control with structured tool-calling rather than fuzzy text parsing. Open-source local models from Llama 3.3 onwards finally have enough function-calling reliability to be worth running on a homelab GPU. And Alexa+ - Amazon's late-2025 reboot - actually works on the limited tasks Amazon designed it for.
This post walks through what actually works in 2026, which route fits which household, and the realistic limits of each.
How does AI talk to Home Assistant in 2026?
Under the hood, every AI-in-HA approach reduces to the same flow: natural language goes in, structured service calls come out. Home Assistant has thousands of service calls (light.turn_on, climate.set_temperature, scene.activate, script.morning_routine) and the AI's job is to map a free-form sentence to the right call with the right arguments.
The two layers that matter:
- Intent layer. What does the user mean? "Make the kitchen brighter" maps to
light.turn_onwith the kitchen entities and an increased brightness. LLMs have made this layer dramatically more reliable than the rule-based parsers Alexa and Google Assistant used through 2023. - Tool-calling layer. How does the AI actually invoke HA? Through HA's REST API, the LongLived Access Token, and the
conversation.processservice. Modern integrations wrap this so you don't see the API call - the LLM emits a structured function call and the conversation integration translates it into a service call.
Which AI integrations work today?
OpenAI Conversation (official)
Google Generative AI (official)
Anthropic Claude (community HACS)
Community integration: home-assistant-anthropic. Claude 4.6/4.7 as the conversation backend. Strongest current model for multi-step routine creation (drafting automation YAML from a description). Pay-as-you-go via Anthropic API key.
Ollama Conversation (official)
extended_openai_conversation (HACS)
Alexa+ (Amazon proprietary)
Amazon's late-2025 reboot of Alexa with a real LLM backend (Claude on Bedrock). Works well for the device control Amazon supports natively but doesn't expose HA service calls unless you bridge via the Alexa Smart Home Skill - see our Alexa+ review for the full picture.
Cloud LLM vs local LLM - which should you use?
This is the central decision for a 2026 AI-driven smart home. The trade-offs:
- Cloud LLMs (OpenAI / Anthropic / Google): Best capability, lowest setup friction, ongoing API cost. Today's frontier models can write complex multi-step routines, debug existing automations from natural language descriptions, and infer entity names from context. Privacy concern: your voice transcripts and entity names go to the cloud provider.
- Local LLMs (Ollama with Llama 3.3 / Qwen 3.5 / Mistral): Full privacy, zero ongoing cost, lower capability ceiling. A Llama 3.3 8B running locally handles device-control voice commands reliably; routine generation is patchier. Requires a 16GB+ VRAM GPU (~£400-800 for a usable Nvidia card or a Mac mini M4 with 24GB unified RAM).
Our local LLM for smart home guide covers the privacy-first build in detail. For most households starting out, cloud LLMs are the right pragmatic choice - £5-15 a month on OpenAI or Anthropic API spend is much cheaper than the GPU and electricity for a 24/7 local setup.
How does the HA Assist voice pipeline use AI?
Home Assistant's Assist pipeline is the route to actually talking to your house. The flow:
- Wake-word detection on a satellite device (HA Voice Preview Edition, ESP32 with esphome-voice-assistant, or a Mac/Pi with the official mic integration). 'Hey Jarvis' or 'Hey Nabu' are the default options; custom wake words are possible.
- Speech-to-text (STT). Either local (Whisper, faster-whisper) or cloud (HA Cloud, OpenAI Whisper API).
- Intent processing. EITHER the legacy rule-based matcher (fast but rigid) OR an LLM-based conversation agent (slower but understands free-form speech).
- Service call. The agent emits a service call; HA executes it.
- Text-to-speech (TTS). Either local (Piper) or cloud (HA Cloud, ElevenLabs).
The 2026 setup that genuinely works for most households: HA Voice Preview Edition (the £60 official satellite), local Whisper STT on a mini-PC with an LLM (cloud or local) as the conversation agent, and Piper TTS for the response. End-to-end latency on a modest mini-PC is 1-2 seconds - usable, not snappy.
What can AI actually do for your smart home in 2026?
Honest taxonomy of what works today, what's coming, and what's still marketing:
Works reliably: Free-form device control ("warm the kitchen lights and turn the dining room ones off"). Reliable since GPT-4 and the official LLM conversation integrations.
Works reliably: Drafting a single automation from a natural language description. Cloud LLMs hit ~85-90% first-pass usable YAML; you'll tweak entity names and refine triggers.
Works reliably: Diagnosing why an existing automation didn't fire ("the doorbell didn't trigger the porch light just now - what went wrong?"). Cloud LLMs read the logbook and explain logically.
Works with caveats: Multi-step routine generation ("build me a morning routine that varies by weekday/weekend, pulls today's weather, and adjusts blinds based on sun position"). Doable, but expect 2-3 iterations before it works.
Patchy in 2026: Ambient understanding ("set the mood for movie night" without configuring scenes first). Better with cloud LLMs but still requires explicit scene definitions.
Mostly marketing: 'AI-predicted automations' that anticipate what you want without being told. Real predictive automation requires data infrastructure most HA setups don't have.
Don't expect: Multi-turn complex troubleshooting where the AI maintains state about your house across sessions. Context windows are large but persistent memory is rare.
What does AI in the smart home cost?
Rough monthly cost for a typical household with 30-40 daily voice interactions plus 5-10 automation tweaks via natural language:
- OpenAI GPT-4o or Anthropic Claude 4.7: £5-15/month in API spend. Most cost is in conversation-history tokens, not user input. Use prompt caching where available to cut by 50-70%.
- Google Gemini 2.0 Pro free tier: £0/month for light use; £3-8/month if you exceed the 60 requests/minute free tier.
- Ollama local (initial): £400-800 for a usable 16GB GPU + £200-300 for a host mini-PC (or use existing). 24/7 electricity at ~30W idle, 200W under inference: £4-12/month on UK 2026 electricity rates.
- Ollama local (ongoing): £4-12/month electricity only. Break-even vs. cloud at ~9-18 months depending on usage.
- Alexa+: Free for Prime members. £5.99/month standalone. Most limited of the options in what it can do for HA users specifically.
Frequently asked questions
Q01Which AI conversation agent is best for Home Assistant in 2026?
Q02Can I run AI smart home automation entirely locally?
Yes, but with hardware. Ollama running Llama 3.3 8B on a Mac mini M4 (24GB unified RAM) or a 16GB-VRAM Nvidia card handles device control reliably. For routine generation the larger 70B models are needed and the hardware bill jumps. See local LLM for smart home for the full build.
Q03Is my voice data safe with cloud LLM conversation agents?
Q04How is this different from Alexa or Google Assistant?
Q05Do I need a specific HA hardware setup for AI?
No for cloud LLMs - any HA install can use them. For local LLMs you'll need a host with GPU acceleration; see best mini-PC for Home Assistant for current picks. For full voice you'll also want an HA Voice Preview Edition satellite or an ESP32 with a microphone.
Q06Can I use these to write Home Assistant automations from scratch?
The bottom line
AI in the smart home crossed from gimmick to genuinely useful between 2024 and 2026. The combination of capable LLMs, decent function-calling, official HA integrations, and the HA Voice Preview Edition satellite means a home where 'turn off everything downstairs except the dishwasher' actually works.
For 2026: start with a cloud LLM (Anthropic Claude or OpenAI GPT-4o) as your conversation agent unless privacy is the binding constraint. Use the HA Assist voice pipeline with the official Voice Preview Edition satellite. Tackle local LLMs once you've validated which workflows you actually use - they're a £700-1000 commitment and aren't worth it until you know your usage pattern.
The big shift coming through 2026: persistent memory and household-specific context. Today's cloud LLMs forget your house between sessions; that's the next problem the integrations are solving.
Local LLM for Smart Home UK 2026: The Privacy-First Setup
Best Home Assistant Integrations & Add-ons UK 2026
10 ChatGPT Prompts to Run Your Smart Home Smarter (2026)