anz33 docs
Download

What anz33 is

anz33 is a small program that runs quietly on your computer. AI apps talk to it, and it passes each question along to whichever AI engine on your machine will answer fastest. You install it once and mostly forget it exists.

The problem it solves

Say you have installed Ollama to run models locally. Then a friend recommends LM Studio, so you install that too. Then an app you like only works with llama.cpp. Now you have three AI engines on one computer, each with its own address, each holding different models — and every app you own is hard-wired to exactly one of them.

anz33 sits in front of all of them and offers a single address:

http://127.0.0.1:3300/v1

Point any app at that address and it can reach everything. anz33 decides which engine actually answers, based on which one is genuinely fastest on your hardware and whether you are on battery.

127.0.0.1 means "this computer". It is an address that never leaves the machine — a bit like writing a note and leaving it on your own desk. Nothing in that address is reachable from the internet.

What it does for you

One address, every engine

Ollama, LM Studio, llama.cpp and MLX all become one list of models. Apps stop caring which one you happen to be running.

Picks the fastest

anz33 times your engines with a real request and uses the measurements — not a guess, and not a benchmark from somebody else's computer.

Knows about your battery

On battery it prefers the engine that will not flatten you by lunchtime. Plugged in, it prefers whatever is quickest.

Nothing leaves by default

Cloud engines are off until you switch them on, and even then you can write rules about what may never leave this machine.

What you need

  • A Mac, a Windows PC or a Linux machine. It runs on Apple Silicon and Intel, on 64-bit and ARM.
  • At least one local AI engine installed — most people start with Ollama — or a cloud key if you would rather start there.
  • Nothing else. anz33 ships as one self-contained file; there is no Python to install and no account to create.

New here? Read these four

  1. Install anz33

    Pick the download for your computer and get it running. Five minutes.

  2. Your first request

    Prove it works by asking it something, and see which engine answered.

  3. Connect your apps

    Change one setting in the apps you already use so they go through anz33.

  4. Make it fast

    Run one command so anz33 knows how quick each engine really is here.

A note on the words

Some of these come up constantly, so here they are once:

ModelThe AI itself — the thing that writes the answer. "Llama 3", "Mistral" and "Claude" are models.
EngineThe program that runs a model on your machine. Ollama and LM Studio are engines. One engine can hold many models.
Routeranz33. It does not answer anything itself; it chooses who does.
LocalOn your computer. Nothing sent anywhere.
Cloud / remoteSomeone else's computer, over the internet. Off unless you turn it on.
TokenRoughly three-quarters of a word. Speed is measured in tokens per second.
DaemonA program that runs in the background with no window. anz33 is one.