ZYR 4 BEAST
The most powerful coding AI — AI Communication Network, 1T+ parameters.
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.
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.
| # | Model | Params | Vendor | Role |
|---|---|---|---|---|
| 1 | Nemotron Super 120B | 120B | NVIDIA | Fast reasoning |
| 2 | Nemotron Nano 30B | 30B | NVIDIA | Fast draft |
| 3 | Tencent Hy3 | — | Tencent | Knowledge |
| 4 | Nemotron Ultra 550B | 550B | NVIDIA | Deep knowledge |
| 5 | Gemma 4 26B | 26B | General | |
| 6 | GPT-OSS 20B | 21B | OpenAI | OpenAI reasoning |
| 7 | GLM | — | Z.ai | Deep thinking + synthesis |
| 8 | OpenZen | — | OpenCode | Ensemble |
Quick Start
Get started with ZYR 4 Beast Max in under a minute.
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"}
]
}'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.
/chat/completionsCreate 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)/modelsList available models
No parameters. Returns model list.
zyr-1zyr-2zyr-3zyr-4zyr-4-beast-maxPipeline
ZYR 4 Beast Max uses a 6-stage pipeline for complex tasks, and a fast 2-stage path for 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@agent@plan@website@blender@web-design@research@code@slides@writerCLI
Use ZYR from your terminal.
npm install -g zyr-agentzyr "Write a Python web scraper"zyr --model zyr-4 "Build a REST API"cat main.py | zyr "Review this code"API Keys
Create and manage API keys from the app.
- Open the ZYR app
- Click API Keys in the top bar
- Enter a name and select a model scope
- Click Create
- Copy the key immediately — it's only shown once
zyr_sk_<48 hex chars>Keys are stored as SHA-256 hashes. The full key is only returned once at creation.
https://zyrai.space-z.ai/api/v1