Building a Private AI Assistant in 2026 — No Cloud Required (Mostly)
Source: Dev.to
Overview
I’ve been running a self‑hosted AI assistant 24/7 for the past month. Below is what works, what doesn’t, and what surprised me.
Hardware
- Device: NVIDIA Jetson Orin Nano Super
- 67 TOPS, 8 GB unified memory, 512 GB NVMe
- Power draw: ~20 W average (my desk lamp uses more)
- Cost: €549 one‑time (using the pre‑built ClawBox)
Software Stack
- OpenClaw (open source) + Ubuntu
- OpenClaw now supports ChatGPT Plus/Pro OAuth – sign in with your existing OpenAI account, no API keys or double billing required.
Voice & Speech
- Whisper – speech‑to‑text, 90+ languages, runs entirely on‑device.
- Kokoro – text‑to‑speech, natural‑sounding, fully local.
My voice data never leaves the box. Period.
Language Models
| Model | Size | Typical Throughput | Use Cases |
|---|---|---|---|
| Llama 3.1 | 8 B | ~15 tok/s | Quick tasks, conversations |
| CodeLlama | 7 B | – | Code snippets |
| LLaVA | 7 B | – | Vision, image description |
| Hermes 3 | 8 B | – | Structured/agentic tasks |
8 GB unified memory limits us to ~7‑8 B‑parameter models. For a daily assistant this covers roughly 60 % of needed capabilities; the remaining 40 % still rely on cloud APIs.
Daily Workflow
- 6:00 AM – ClawBox checks email, summarizes important items, drafts replies.
- Throughout the day – Voice commands for quick lookups, timers, smart‑home control.
- Work hours – “Hey ClawBox, review this PR” / “Summarize this PDF”.
- Overnight – Monitors prices, checks for important emails.
Total hands‑on time: ~5 minutes of talking per day.
Cost Analysis
- Hardware cost: €549
- Monthly savings: ~€25 (by replacing multiple AI subscriptions)
Break‑even point ≈ 22 months. Many would pay that price for privacy alone.
Who Might Benefit
- Privacy‑conscious professionals
- Homelab enthusiasts seeking a silent, low‑power AI addition
- Users tired of juggling multiple AI subscriptions
- Anyone who wants an AI that works for them 24/7
Links
- ClawBox: https://openclawhardware.dev
- OpenClaw repository: https://github.com/openclaw/openclaw
- Discord community: https://discord.gg/FbKmnxYnpq
I built ClawBox. The analysis is honest. Questions? Drop them in the comments.