Zhipu GLM

GLM-4.7 API

CN Zhipu GLM | リリース 2025-10
プレイグラウンドで試す → APIキーを取得

GLM-4.7は、日常的なチャット、ツール使用、軽いコーディングに適した、Zhipuのコストバランスに優れたモデルです。GLMファミリーの強力な中国語・英語バイリンガル能力とツール呼び出しサポートを、5.xフラッグシップラインよりも低価格で提供します。

推論ツールJSON

料金 (公式、1Mトークンあたり)

入力
$0.29/M
出力
$1.14/M

仕様

コンテキストウィンドウ200K トークン 最大出力4.096K トークン 入力モダリティテキスト ストリーミングはい APIOpenAI互換

GLM-4.7の使い方

OpenAIの直接代替。base_urlとモデルのみ変更。

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="bigmodel/glm-4.7",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"bigmodel/glm-4.7","messages":[{"role":"user","content":"Hello!"}]}'

関連モデル

検討できる他のモデル。