Hanzo
Studio

Getting Started

Run Hanzo Studio locally, submit your first prompt, and scale to GPU.

Getting Started

Hanzo Studio is a visual, node-based AI engine. Start on CPU for prototyping, then switch to GPU with one API call when you need throughput.

Run locally

docker pull ghcr.io/hanzoai/studio:latest
docker run -p 8188:8188 ghcr.io/hanzoai/studio:latest \
  python main.py --listen 0.0.0.0 --cpu
# Open http://localhost:8188

The editor opens in your browser. Drag nodes onto the canvas, wire them together, and press Queue Prompt to run the graph.

Authenticate

Studio authenticates against Hanzo IAM. Get an API key at console.hanzo.ai and pass it as a bearer token:

curl -H "Authorization: Bearer $HANZO_API_KEY" \
  https://studio.hanzo.ai/v1/studio/prompts \
  -d '{"workflow": { /* ... */ }}'

One credential works across every Hanzo service. The same $HANZO_API_KEY authenticates Studio, Chat, the gateway, and the rest.

Scale to GPU

Each organization has a compute profile. Switch it at any time — the coordinator routes GPU-heavy prompts to dedicated workers.

ProfileGPUVRAMBest for
cpuPrototyping
gpu-basicT416 GBStandard diffusion
gpu-proA10080 GBVideo, 3D, large models
gpu-maxH10080 GBMaximum throughput

Next steps

How is this guide?

On this page