ZYR 4 BEAST

The most powerful coding AI — AI Communication Network, 1T+ parameters.

8
Models
in ACN
1T+
Parameters
combined
ACN
Architecture
communication
~1s
Simple route
fast path

ZYR 4 BEAST uses an AI Communication Network where 8 models collaborate in real-time — asking questions, challenging reasoning, verifying facts, and building consensus. Over 1 trillion parameters combined. The collaboration is completely invisible to the user.

Smart Routing

Simple tasks (greetings, short questions) skip the ACN and use 1 model for instant responses. Complex coding tasks trigger the full AI Communication Network with all 8 models.

Models in the Ensemble

All 8 models collaborate through the AI Communication Network. Their outputs are merged by the Synthesizer.

#ModelParamsVendorRole
1Nemotron Super 120B120BNVIDIAFast reasoning
2Nemotron Nano 30B30BNVIDIAFast draft
3Tencent Hy3TencentKnowledge
4Nemotron Ultra 550B550BNVIDIADeep knowledge
5Gemma 4 26B26BGoogleGeneral
6GPT-OSS 20B21BOpenAIOpenAI reasoning
7GLMZ.aiDeep thinking + synthesis
8OpenZenOpenCodeEnsemble

Quick Start

Get started with ZYR 4 Beast Max in under a minute.

1Create an API key
Open the ZYR app → click API Keys → create a key → copy it.
2Make your first request
bash
curl https://zyrai.space-z.ai/api/v1/chat/completions \
  -H "Authorization: Bearer zyr_sk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "zyr-4",
    "messages": [
      {"role": "user", "content": "Write a Python fibonacci function"}
    ]
  }'
3Use with OpenAI SDK
bash
from openai import OpenAI

client = OpenAI(
    base_url="https://zyrai.space-z.ai/api/v1",
    api_key="zyr_sk_..."
)

response = client.chat.completions.create(
    model="zyr-4",
    messages=[
        {"role": "user", "content": "Write a REST API in Express"}
    ]
)

print(response.choices[0].message.content)

API Reference

OpenAI-compatible API. Works with any OpenAI SDK client.

POST/chat/completions

Create a chat completion

modelstring*"zyr-4" or "zyr-4-beast-max"
messagesarray*Array of {role, content}
streambooleanEnable SSE streaming (default: false)
temperaturenumber0-2 (default: 0.7)
max_tokensnumberMax output tokens (default: 4096)
GET/models

List available models

No parameters. Returns model list.

Available Models
zyr-1zyr-2zyr-3zyr-4zyr-4-beast-max

Pipeline

ZYR 4 Beast Max uses a 6-stage pipeline for complex tasks, and a fast 2-stage path for simple queries.

1
Router
Classifies query complexity. Simple → fast path. Complex → full pipeline.
2
Planner
GLM creates a brief 3-step plan: what to build, approach, edge cases.
3
Executor
ALL 14 models run in parallel — each produces a complete draft.
4
Synthesizer
GLM merges all 14 drafts into one superior solution.
5
Critic
GLM reviews for bugs, security, type errors, missing error handling.
6
Evaluator
GLM produces the final fixed, production-ready code.
Fast Path (Simple Queries)

For greetings and short questions (<80 chars, no complex keywords): Router → Executor (1 model, ~1 second). Skips planner, ensemble, synthesis, critic, and evaluator entirely.

Chat Modes

Switch modes by typing @ in the chat. Each mode uses a specialized persona.

💬
Chat@chat
General conversation
🤖
Agent@agent
Multi-step task execution
📋
Plan@plan
Decompose & schedule tasks
🌐
Website@website
Full-stack: frontend + backend
🧊
Blender@blender
3D models, animation, bpy scripts
🎨
Web Design@web-design
Frontend, Backend, or Both
🔬
Research@research
Thorough multi-step analysis
Code@code
Fast code generation
📊
Slides@slides
Generate slide decks
✍️
Writer@writer
Long-form writing

CLI

Use ZYR from your terminal.

bash
npm install -g zyr-agent
bash
zyr "Write a Python web scraper"
bash
zyr --model zyr-4 "Build a REST API"
bash
cat main.py | zyr "Review this code"

API Keys

Create and manage API keys from the app.

Creating a Key
  1. Open the ZYR app
  2. Click API Keys in the top bar
  3. Enter a name and select a model scope
  4. Click Create
  5. Copy the key immediately — it's only shown once
Key Format
zyr_sk_<48 hex chars>

Keys are stored as SHA-256 hashes. The full key is only returned once at creation.

Base URL
https://zyrai.space-z.ai/api/v1
© 2026 ZYRAI · ZYR 4 Beast Max · 14 models · 1T+ parameters