← All models
Z.ai (GLM)
GLM Pro
GLM Pro is the high-end variant — better reasoning, better adherence to long system prompts, and better behaviour on agent loops. Reach for this when GLM 4.6 starts feeling thin.
ReasoningLong contextAgentic
OpenAI-compatible
import OpenAI from "openai";
const ai = new OpenAI({
apiKey: process.env.OMNIZEN_KEY,
baseURL: "https://api.omnizen.ai/v1",
});
const res = await ai.chat.completions.create({
model: "glm-pro",
messages: [{ role: "user", content: "Hello" }],
});Anthropic-compatible
from anthropic import Anthropic
ai = Anthropic(
api_key=os.environ["OMNIZEN_KEY"],
base_url="https://api.omnizen.ai",
)
res = ai.messages.create(
model="glm-pro",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello"}],
)Start with $1 in free credit.
No card required. Plug into your editor in under a minute.