← All models
Z.ai (GLM)
GLM 4.6
GLM 4.6 sits between fast and frontier — a solid generalist that follows instructions tightly and handles tool-use cleanly. Use when you want predictable behaviour without paying for a reasoning tier.
AgenticReasoning
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-4.6",
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-4.6",
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.