A lightweight self-hosted client for AI chat and coding agents that "just works".
demo.mp4
Open WebUI is an impressive project, but every time I tried to actually live in it something got in the way. The browser tab would peg CPU and balloon past a gig on long replies — the streaming pipeline re-broadcasts the entire growing message body on every token, so a long chat is O(N²) in bytes (#23733, still open). Pasting any sizeable chunk of text would freeze the page for seconds (#12087, still open). The v0.9 release line shipped a run of migration regressions where you'd docker pull and then have to docker exec into the container and hand-edit alembic scripts before the app would boot.
And underneath all that, the UI just feels heavy. Settings pages full of toggles for features I'd never use. Web search that wants its own API key. TTS that wants its own setup. A hundred surfaces in front of a single text box.
I wanted a chat app I could open and use. So I wrote one.
- One process, one SQLite file, one tiny Redis. A Next.js app, a SQLite file for everything that matters, and a tiny Redis container (~13 MB idle, capped at 64 MB) that exists only so a reload mid-reply doesn't drop your tokens. No Postgres, no Celery, no separate API service. Schema migrations are one Drizzle command on container boot.
- 600 MB Docker image vs Open WebUI's 1.7 GB (compressed, amd64, pulled from
ghcr.ioon 2026-05-20). About a third the size on disk, fewer layers. - No plugin runtime, no pipelines, no functions framework. Tools are two AI SDK definitions in
apps/web/lib/tools.ts:web_search(SearXNG) andfetch_url(Defuddle → markdown). That's the whole extensibility surface. - No RAG, no embeddings, no vector DB. Chat search is SQLite FTS5 + BM25, populated by triggers (
apps/web/lib/db/search.ts). Web search results go straight into context as JSON. - Provider-aware without a plugin runtime. OpenAI, Anthropic, Google Gemini, and Amazon Bedrock use their native API formats through a small registry; vLLM, llama.cpp, and SGLang have ready-to-edit local presets; custom endpoints explicitly choose Chat Completions, Responses, or Messages. Provider details stay out of the chat pipeline.
If you want every feature in the world — image generation, a code interpreter, knowledge graphs, a plugin marketplace — use Open WebUI or LibreChat. If you want a chat app that opens in under a second and stays out of your way, this is that.
git clone https://github.com/yoloyash/overtchat
cd overtchat
cp .env.example .env
echo "BETTER_AUTH_SECRET=$(openssl rand -hex 32)" >> .env
echo "SEARXNG_SECRET=$(openssl rand -hex 32)" >> .env
docker compose up -d --buildOpen http://localhost:4718, sign up, the setup wizard takes you the rest of the way.
- LAN access: set
BETTER_AUTH_URL=http://<your-lan-ip>:4718in.env, thendocker compose up -d. - Internet access: uncomment the
cloudflaredblock incompose.ymland paste a tunnel token.
Already run SearXNG or Kokoro elsewhere? You can point overtchat at them; see deploy docs.
Use OvertChat as a browser interface for Pi and Oh My Pi installed on the Docker
host or on machines already reachable through its SSH config. In Settings →
Connections, choose Set up and run the generated command.
It installs the OvertChat Host Connector as your Linux user; OvertChat never
receives SSH keys or config. Remote aliases must already work non-interactively,
for example ssh devbox.
The Android app is a thin client for your own server — there is no overtchat cloud to sign up for. On first launch it asks for the URL of an instance you control; your account, chats, and files stay on that server. Requests go to it and nowhere else.
Native chat with streaming replies, the model picker, projects, full-text search over your history, image and document uploads, web search with citations, text-to-speech, and dictation.
- Android: Google Play, or sideload the APK attached to any
mobile-v*release. - iOS: internal/TestFlight only, no timeline for a store release.
- Multi-user auth, first signup becomes admin
- Persistent chat history, auto-titled, full-text searchable
- File uploads — images, PDFs, Word, Excel, CSV, source code
- Projects with per-project system prompts
- Automatic web search via bundled SearXNG, plus a one-message Search action and a persistent hard-disable under Settings → Tools. No API key.
- Text-to-speech via bundled Kokoro. No setup.
- Speech-to-text via Parakeet TDT v3 (opt-in, CPU or NVIDIA GPU)
- Chat export (JSON / Markdown)
Off by default — the mic button in the composer is greyed out until you bring up the Parakeet sidecar:
docker compose --profile stt up -d # CPU (~670 MB model, ~2 GB RAM)
docker compose --profile stt-gpu up -d # NVIDIA GPU (requires NVIDIA Container Toolkit)Multilingual (25 languages, auto-detected). All processing stays on your machine. Model downloads on first start (~10 s) and is cached in a Docker volume.
No usage analytics, no advertising. The server sends model requests only to endpoints you configure and sends web searches through its configured SearXNG instance. Stored application data lives in a single SQLite file you can copy, back up, or delete.
The Android client can send crash diagnostics to Sentry. These may include technical request metadata; the app does not intentionally attach chat content, attachments, or credentials. Details are in the privacy policy.
- Docker + Docker Compose v2
- ~1 GB RAM free for the app stack (Kokoro TTS pulls ~100 MB on first boot)
- An LLM endpoint (API key or self-hosted)
Next.js 16 · Vercel AI SDK v7 · Better Auth · Drizzle + SQLite · Redis (resume buffer) · base-ui · Tailwind · SearXNG · Kokoro TTS
- docs/deploy.md — updates, backup, troubleshooting
MIT. Fork it, white-label it, ship it. No branding clauses to negotiate around.
