Home Assistant LLM Assistant in 2026: Add a Private AI Voice to HA (90k Stars) with Ollama - Full Setup

๐Ÿ“˜ Tutorials 2026-08-05 2 min read

Home Assistant (89,719 stars) now has native LLM support: connect an Ollama model to control your smart home by voice or chat - fully private, no cloud, no monthly fee.

💡 What You Will Learn

Home Assistant (89,719 stars) now has native LLM support: connect an Ollama model to control your smart home by voice or chat - fully private, no cloud, no monthly fee.

📜 Table of Contents

The short answer

Home Assistant (89,719 stars, Apache-2.0) is the leading open-source smart home platform, and since 2024 it has built-in LLM integration: you can point it at any OpenAI-compatible endpoint - including local Ollama - and control devices with natural language.

The setup

Step 1 - Run Ollama alongside HA

ollama pull qwen2.5:3b   # small model for voice responses
ollama pull llama3.1:8b  # bigger model for device control

Step 2 - Add the OpenAI-compatible integration in HA

Settings - Devices - Add Integration - "OpenAI Conversation" - and set the API URL to http://<ollama-host>:11434/v1 with a dummy key.

Step 3 - Configure the voice assistant

  1. Enable the "Assist" feature in Settings - Voice assistants.
  2. Pick your local model as the conversation agent.
  3. Use the Wyoming protocol with a local STT (Whisper) and TTS (Piper) for fully offline voice.

Real numbers

FAQ

Q: Can the LLM control devices safely? A: Yes - HA exposes allowed entities only, and you can restrict which devices the model can touch in the integration config.

Q: What if I want cloud models? A: The same integration accepts OpenAI or Anthropic API keys - but then voice audio and commands go to the cloud.

Q: Does it work with Apple HomeKit? A: Yes - HA bridges to HomeKit, so the LLM assistant can control HomeKit devices too.

❓ FAQ

Can the LLM control devices safely?

Yes - HA exposes allowed entities only, and you can restrict which devices the model can touch in the integration config.

What if I want cloud models?

The same integration accepts OpenAI or Anthropic API keys - but then voice audio and commands go to the cloud.

Does it work with Apple HomeKit?

Yes - HA bridges to HomeKit, so the LLM assistant can control HomeKit devices too.

Related Articles
2026-07-16
AI Agent Beginner Roadmap 2026
2026-08-11
LLM Quantization Types Explained 2026: Q4, Q5, Q8 and What Each GGUF Level Costs You
2026-08-05
Self-Hosted AI Chatbot in 2026: AnythingLLM (64k Stars) vs Open WebUI vs chat-ui - Private ChatGPT on Your Server

Written by our editorial team; tools listed here are tested or verified against public sources. Links point to official sites or GitHub repos for reference only โ€” no paid placements.

๐Ÿ’ฌ Comments (0)

No comments yet. Be the first!

Login to comment