🪷 Zen LM

Models

Complete Zen LM model family — 80+ models across text, code, vision, audio, image, video, 3D, embedding, safety, and agent modalities

Zen Models

Zen LM by Hanzo AI is a comprehensive model family built using Zen MoDE (Mixture of Diverse Experts) — diverse expert specializations fused into a unified, high-performance family.

All API models are accessed at api.hanzo.ai. API key prefix: hk-. Open-weight models are available on HuggingFace.


Zen 5 — Next Generation

Next-generation agentic models with native chain-of-thought, currently in preview. Training on-chain via NVIDIA TEE on hanzo.network.

ModelParametersContextInput $/1MOutput $/1M
zen5EARLY ACCESS1.0M
zen5-proEARLY ACCESS524K
zen5-maxEARLY ACCESS2.1M
zen5-ultraEARLY ACCESS1.0M
zen5-miniEARLY ACCESS262K

Request early access: z@hanzo.ai


Zen 4 — Production API

Latest generation production models with MoDE architecture. The recommended choice for all new applications.

ModelParametersArchitectureContextInput $/1MOutput $/1M
zen4-maxDense1M$3.60$3.60
zen4.1Dense1M$3.60$3.60
zen4744B (40B active)MoE202K$3.00$9.60
zen4-ultra744B (40B active)MoE + CoT262K$3.00$9.60
zen4-pro80B (3B active)MoE131K$2.70$2.70
zen4-thinking80B (3B active)MoE + CoT131K$2.70$2.70
zen4-miniDense128K$0.60$0.60

Code

Specialized models for code generation, review, debugging, and agentic programming.

ModelParametersArchitectureContextInput $/1MOutput $/1M
zen4-coder480B (35B active)MoE163K$3.60$3.60
zen4-coder-flash30B (3B active)MoE262K$1.50$1.50
zen4-coder-pro480BDense BF16131K$4.50$4.50
zen-code14BDense32K

Zen 3 — Previous Generation API

Earlier generation API models — language, vision, multimodal, and safety. Still production-ready and widely deployed.

ModelParametersArchitectureContextInput $/1MOutput $/1M
zen3-omni~200BDense Multimodal202K$1.80$6.60
zen3-vl30B (3B active)MoE Vision-Language262K$0.45$1.80
zen3-nano8BDense128K$0.30$0.30
zen3-guard4BDense65K$0.30$0.30

Embedding & Retrieval

Text embeddings and search reranking via /v1/embeddings and /v1/rerank.

ModelArchitectureContextInput $/1MOutput $/1M
zen3-embeddingEmbedding8K$0.39$0.39
zen3-embedding-mediumEmbedding40K
zen3-embedding-smallEmbedding32K
zen3-rerankerReranker40K
zen3-reranker-mediumReranker40K
zen3-reranker-smallReranker40K
zen-embeddingEmbedding8K
zen-rerankerReranker8K

Image Generation

Text-to-image generation via /v1/images/generations.


Audio & Speech

Speech-to-text, text-to-speech, and streaming ASR via /v1/audio/.

ModelInput $/1MOutput $/1M
zen3-audio
zen3-audio-fast
zen3-asr
zen3-asr-v1
zen3-tts
zen3-tts-hd
zen3-tts-fast

Foundation — Open Weights

General-purpose open-weight models available on HuggingFace in GGUF, SafeTensors, MLX, and ONNX formats.

ModelParametersContext
zen-nano0.6B32K
zen-eco4B32K
zen8–32B32K
zen-pro32B32K
zen-max235B (22B active)131K
zen-nextPREVIEW256K

Vision — Open Weights

Vision-language and multimodal open-weight models.

ModelParametersContext
zen-vl32B32K
zen5EARLY ACCESS1.0M

Safety & Guardrails

Content moderation and safety guardrail models.

ModelParametersContextInput $/1MOutput $/1M
zen-guard8B32K
zen3-guard4B65K$0.30$0.30

Agents

Agent-optimized models for tool use, planning, and autonomous workflows.

ModelParametersContextInput $/1MOutput $/1M
zen-agentPREVIEW32B131K

Video (Coming Soon)

ModelParameters

Audio Creative (Coming Soon)

ModelParameters

3D & Spatial (Coming Soon)

ModelParameters

API Usage

from hanzoai import Hanzo

client = Hanzo(api_key="hk-your-api-key")

response = client.chat.completions.create(
    model="zen4",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
import Hanzo from '@hanzo/ai';

const client = new Hanzo({ apiKey: 'hk-your-api-key' });

const response = await client.chat.completions.create({
  model: 'zen4',
  messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0].message.content);

See API Reference for full documentation.


Open Weights Formats

All locally-runnable models are available in multiple formats:

FormatUse CasePlatform
SafeTensorsFull precision, transformersAll
GGUFQuantized, llama.cpp / OllamaAll
MLXApple Silicon optimizedmacOS
ONNXCross-platform inferenceAll

On this page