プロバイダー
Z.ai
Z.ai's GLM — MIT-licensed MoE LLMs from 128K to 200K context, top open-weight SWE-bench scores, via one RunAPI key.
1 models
·
7 variants
·
から $0.010
Z.ai の全モデル
1 models
概要
Z.ai builds the GLM family of MIT-licensed Mixture-of-Experts language models for coding and agentic workflows. The line spans GLM-4.5 (355B / 32B active, 128K context) through GLM-5.1 (754B / 40B active, 200K context), which holds the top open-weight SWE-bench Pro score at 58.4%. All are available through RunAPI from the OpenAI and Anthropic SDKs with per-token billing.
- 全プロバイダー共通の API key
- Model skill が docs と schema を作業環境に持ち込みます
- 呼び出し単位の課金、契約不要
- 失敗した生成は課金されません
機能
注目ポイント
モデル
Z.ai の全モデル
クイックスタート
Z.ai の model skill をインストール。
モデルを選んで skill を追加すると、コードツールが docs、schema、料金メモ、セットアップ手順を参照できます。
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5.1",
"messages": [
{
"role": "user",
"content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="glm-5.1",
messages=[{"role": "user", "content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "glm-5.1",
messages: [{ role: "user", content: "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause." }]
});
リファレンス
Z.ai の全バリアント
FAQ
Z.ai に関するよくある質問
これは Z.ai の公式連携ですか?
RunAPI は、料金、機能、エラー挙動が明確なマネージド API サーフェスを提供します。
Z.ai アカウントは必要ですか?
いいえ。RunAPI key だけでマネージドアクセスを利用できます。
料金はどう請求されますか?
呼び出しまたは単位ごとの従量課金で、失敗した生成は課金されません。
今すぐ開始