gizza.ai

Free, private AI — chat and tools that run in your browser. Nothing leaves your device.

Chat Tools Works on any device

Free, private & open-source

Everything runs in your browser — your data never leaves your device.

What it is

Browser-local AI, open-source

gizza.ai is a free, private AI chat and tool platform. All inference runs in your browser via WebGPU — nothing is sent to a server. The tools work on any device, even mobile, with no sign-up required.

Every capability is a WASM skill block — the same block runs both in the browser chat and via the gizza CLI. Source is on GitHub.

Option 1 — zero install

Just open it in your browser

No install needed. Visit gizza.ai/chat for AI chat (best on desktop with WebGPU) or gizza.ai/tools/ for browser-local utilities that work on any device.

Option 2 — CLI

Run tools from a terminal or agent

The gizza CLI runs the same WASM skill blocks headlessly — for scripts, pipelines, or AI agents (SKILL.md).

# 1. Build blocks + CLI
solobase build
cargo build --manifest-path cli/Cargo.toml --release

# 2. Run a tool
gizza tool calculator "2*2"        # → 4
gizza tool web-fetch url=https://example.com

# 3. Discover tools
gizza list
gizza describe calculator

Option 3 — self-host

Run the site on your own machine

Build the static site and serve it locally — no cloud required.

# Build everything into pkg/
solobase build

# Serve at http://localhost:3000
solobase serve

On first visit the Service Worker registers and intercepts requests through the WAFER runtime blocks.