RedPill
z-ai logo

Z.AI: GLM 4.6

GPU TEE
Chat
z-ai/glm-4.6
Created Nov 28, 2025|203K context|$0.75/M input tokens|$2.00/M output tokens
Intel TDXNVIDIA CC

GLM‑4.6 is the latest flagship model in the GLM (General Language Model) series by Z.ai (formerly Zhipu AI). It is oriented toward agentic applications: reasoning, tool usage, coding/engineering workflows, and long‑context tasks.

Providers for Z.AI: GLM 4.6

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

phala logo
phala
Input Price
$0.75
Output Price
$2.00
Total Context
203K

API

RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "z-ai/glm-4.6",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})