A private, offline alternative to cloud AI like Claude and ChatGPT. Outlier reads your codebase, edits files, runs the tests, researches the web, and keeps working on long jobs unattended — all on Apple Silicon, with no caps and no data centre.
def merge_intervals(intervals: list[list[int]]) -> list[list[int]]: """Merge overlapping intervals. Args: intervals: List of [start, end] pairs (inclusive). Returns: List of merged non-overlapping intervals. """ if not intervals: return [] # Sort by start time sorted_intervals = sorted(intervals, key=lambda x: x[0]) merged = [sorted_intervals[0]] for current in sorted_intervals[1:]: last = merged[-1] # Overlap or adjacency: merge them if current[0] <= last[1]: merged[-1] = [last[0], max(last[1], current[1])] else: merged.append(current) return merged
The edge case most implementations get wrong: adjacent intervals (e.g., [1, 2] and [2, 3]). Many implementations use < instead of <=, which fails to merge intervals that touch at a single point.
Real output, Outlier Core on an M1 Ultra — 21 socket samples during this answer, 0 left the Mac
Local model inference runs entirely on your Apple Silicon chip. Your prompts, files, code, and chat history stay on your disk, under your control. Only model downloads and optional web search ever touch the network — and only when you choose. No telemetry on inference. The open-weight models are auditable on HuggingFace.
$ lsof -a -p $(pgrep -x outlier-cli) -i -n -P outlier-c 62303 22u IPv4 TCP 127.0.0.1:8766->127.0.0.1:56293 (ESTABLISHED) outlier-c 62303 25u IPv4 TCP 127.0.0.1:8766 (LISTEN) # sampled 21× across the 33s answer shown above — sockets leaving this Mac: 0
-a is load-bearing: without it lsof ORs its filters and returns every socket on the machine instead — 328 when this was captured, and a different number each time you run it, because it counts every other process too. That is how a check like this can quietly prove nothing.Everything below ships today, in a signed, notarized Mac app.
Streaming token output, persistent local history, rename / delete / pin, Markdown export — and a running cost display that stays at $0.00.
File read/write and shell execution behind permission modes, with a plan-review card, repair loop and audit log.
Several engines queried in parallel — DuckDuckGo, Mojeek and Wikipedia for the general web, plus OpenAlex, Crossref, Stack Exchange and Hacker News — each best-effort, so one of them blocking does not fail the search. Sources are classified (encyclopedia, official, docs, community) and every claim carries an inline citation with the excerpt it came from.
Persistent memory in SQLite — facts carry a category, a confidence score, a confirmed flag and the chat they came from, so you can see why Outlier believes something. Exportable and importable as JSON.
Upload an image or a screenshot and query it directly through Outlier Vision — reading text, diagrams and charts in the picture, all on your Mac. Text-layer PDFs are extracted too; scanned PDFs are not, because that needs a separate OCR pass the app does not ship yet.
A macOS arm64 DMG, accepted by Apple notarization and Gatekeeper, distributed via GitHub Releases with a built-in auto-updater.
Three things Outlier does that a chat box does not. Same window, same offline machine, nothing leaving it.
search_files — find the upload clientread_file — src/upload/client.tsedit_file — add retry with backoffrun_bash — npm testapprove, approve_edited,
deny — so a plan can be edited before it runs, and the
tool names are the real registry of 19. The example task is illustrative;
the mechanism is not.⌘N new · Esc stop · ⌘⇧M hideFree is useful immediately with Nano + Lite. Pro adds the other five tiers — Quick, Core, Code, Vision, and the 397B Plus tier.
| Tier | Plan | Best for | Disk / RAM | Speed / note |
|---|---|---|---|---|
Outlier Nano Qwen3.5-4B · MLX 4-bit |
Free | Fast iteration, lightweight chat, small Macs | 2.37 GB · 6 GB min RAM | ~30–70 tok/s (Mac-dependent) |
Outlier Lite Qwen3.5-9B · MLX 4-bit |
Free | Daily local AI, writing, search, Q&A | 5.04 GB · 12 GB min RAM | Mac-dependent |
Outlier Quick Gemma-4-26B MoE |
Pro | Thinking-mode reasoning, not a code substitute | 15.61 GB · 16 GB min RAM | Mac-dependent |
Outlier Core Qwen3.6-27B · text-only |
Pro | Best default quality, reasoning, coding | 15.13 GB · 24 GB min RAM | High-end quality, fully offline |
Outlier Code Core weights + code config |
Pro | Coding workflow, lower-temp code-tuned setup | 15.13 GB · 24 GB min RAM | Same verified base as Core |
Outlier Plus Qwen3.5-397B-A17B · V9 paged |
Pro | Largest local tier · 397B MoE on high-end Macs. Slow on purpose-built hardware: 1.59 tok/s measured at the shipped K=20 setting on an M1 Ultra, 60–90s to first token on 64 GB. Use Core or Code for everyday work. | 209 GB disk · 64 GB min, 128 GB recommended | For depth, not for speed |
Outlier Vision Qwen3.6-35B-A3B · vision retained |
Pro | Images, screenshots, OCR, multimodal reasoning | 19.0 GB · 24 GB min RAM | V9 K=256: 16.31 tok/s @ 34.04 GB |
Quick / Core / Code / Vision / Plus 397B are all included with Pro, which is a one-time purchase. Code uses the same weights as Core with code-specialized configuration. Quick is useful for reasoning, not positioned as a coding tier.
Benchmarks for the shipping tiers, measured on this hardware against the shipping build. Where a tier has not been measured, the cell says so rather than carrying an estimate.
Dot size follows disk footprint. Plus and Vision are absent because neither has an MMLU run on the shipping 4-bit build — the figure this chart plots. The table below says so rather than filling the gap.
| Tier | MMLU | SWE-bench (agentic) | Decode | Disk |
|---|---|---|---|---|
Outlier Nano Qwen3.5-4B · MLX 4-bit |
53.0% | Not measured | 71.7 tok/s | 2.37 GB |
Outlier Lite Qwen3.5-9B · MLX 4-bit |
77.5% | Not measured | 53.4 tok/s | 5.04 GB |
Outlier Quick Gemma-4-26B MoE |
81.5% | 0% | Not measured | 15.61 GB |
Outlier Core Qwen3.6-27B · text-only |
89.5% | 46.0% | 20.7 tok/s | 15.13 GB |
Outlier Code Core weights + code config |
89.5% | Shares Core's base; not separately measured on the blind set | 20.7 tok/s | 15.13 GB |
Outlier Plus Qwen3.5-397B-A17B · V9 paged |
Not measured — the 209 GB weights are not on the test machine. Plus itself runs here at 1.59 tok/s, 14.04 GB peak during generation, streaming experts from SSD; MMLU awaits a re-download, not a hardware limit. | Not measured | 1.59 tok/s | 209 GB |
Outlier Vision Qwen3.6-35B-A3B · vision retained |
Not measured — Vision declines text-only questions by design (a 400 asks you to attach an image or switch tiers), so an MMLU score would not describe real use. Its text ability is not zero: HumanEval 0.610 against Core’s 0.866. | Not measured | 16.31 tok/s | 19.0 GB |
Decode speed on this M1 Ultra, log scale — the tiers span 45×, so a linear axis would flatten Plus to nothing. These figures come from an earlier measurement round (2026-05-20) than the MMLU and SWE-bench numbers above, which were taken 2026-08-09; the dataset file says so too. Quick is blank for the same reason Plus and Vision are absent from the chart above: no run on the shipping build. Speed varies by Mac.
How these were run — MMLU: 2026-08-09, n=200, deterministic stratified sample across 57 subjects, greedy (temperature 0, fixed seed), thinking off, through the shipping v1.11.757 path on an M1 Ultra. At n=200 the 95% interval is roughly ±7 points near 50% and ±4 near 90%, so Lite and Quick are a statistical tie. SWE-bench Verified, blind — the agent gets the issue and the repo at base commit, no test patch, no file hint, no pass/fail feedback — graded by the official swebench.harness Docker evaluation: 23 of 50 on a fixed sample (seed 42), seven of which produced no patch at all and are counted as unresolved, ±14 points at this size. An older build scored 18 of 40 on 2026-06-25 — statistically the same, though the harness changed a great deal in between. Quick: 0 of 30 on our internal firm30 set. Decode measured on an M1 Ultra, V9 paged engine; your Mac will differ.
Why this table is unusual — checked on their live pages 2026-08-13, Ollama, LM Studio, Jan and GPT4All publish no MMLU, HumanEval or SWE-bench figure at all. That is not a criticism — the scores belong to the upstream models — but it means nobody in this category tells you what a local model will actually get right. These are ours to be held to.
Every tier is sized to real Apple Silicon memory. Start free on a MacBook Air; scale all the way to the 397B Plus tier on a Mac Studio.
Apple Silicon only (M1 / M2 / M3 / M4). Intel Macs are not supported.
The cloud tools proved the workflow: coding agents, long-context research, always-on help. The problem is the meter. Outlier is building the local version — Mac-native, private by default, and not capped by an Outlier token allowance.
| Cloud AI tools | Cloud coding agents | Outlier Free | Outlier Pro | |
|---|---|---|---|---|
| Monthly cost | $9+ | Often much higher | $0 | $249 once |
| Usage model | Server-side limits | Usage windows / caps | No token meter | No token meter |
| Where inference runs | Provider cloud | Provider cloud | Your Mac | Your Mac |
| Privacy default | Remote request | Remote repo / context | Local by default | Local by default |
| Offline use | No | No | Yes, once downloaded | Yes, once downloaded |
| Current maturity | Very mature | Very mature | Useful beta | Ambitious beta |
Honest framing: Outlier is not claiming parity with the best cloud coding agents today. The beta is the foundation; Pro and Founders revenue funds the climb toward that experience, locally. See the raw data: 54-prompt Outlier vs Claude · Mac local-AI benchmarks · streaming-engine tok/s · RAM → model size.
No investors and no API margins to protect — which is why Free is genuinely free. Pro includes everything: all seven tiers and every feature.
Local, private AI for everyday use — no subscription required.
Pay once, own Pro forever — the lowest price local Pro will ever be.
14-day money-back guarantee — just email matt@outlier.host. Prefer to back the build without a subscription? Chip in any amount.
Cloud inference needs data centers, networking, cooling, and ever-growing GPU clusters. Local inference uses the Apple Silicon chip you already own — no round-trip, no per-token meter.
of AI compute is inference — the calls made every time someone uses a cloud model, now drawing more grid electricity than training did (MIT Tech Review, 2025).
Local models create no Outlier cloud-inference bill and no cloud token meter.
Apple Silicon unified memory is efficient for local inference versus shipping every prompt to a server.
Not every local query is automatically cleaner — hardware, model size and electricity source all matter. The point is directional: move everyday inference onto devices people already own, and the load on cloud infrastructure drops.
The best environmental feature isn’t a green badge. It’s a model good enough, small enough and fast enough that people actually choose to run it locally.
Runs locally. Belongs to you. Never hits a token cap mid-task.
Requires a Mac with Apple Silicon (M1, M2, M3, or M4) — Intel Macs are not supported. macOS 12+.