GLM 5.1

GLM 5.1
Z.ai · Text Generation
POST /v1/chat/completions

Long-context Zhipu AI reasoning model with 202K context, 128K output, tool calling, structured output, and cache support.

At a glance

FieldValue
Model idglm-5-1
Model release date2026-04-07
Input modalitiesText
Output modalitiesText
Context window202K
Weight precision-
RegionChina
Featuresreasoning, function_calling, cache
Native inferenceNo
NewYes
Structured outputJSON Schema
Supported endpointsPOST /v1/chat/completions, POST /v1/responses, POST /v1/messages, POST /v1beta/models/glm-5-1:generateContent

Pricing

ChargeSpecRate
Inputper 1M prompt tokens<=32K $0.825 (was $1.40); 32K-200K $1.10 (was $1.40)
Outputper 1M generated tokens<=32K $3.301 (was $4.40); 32K-200K $3.851 (was $4.40)
Implicit cache readper 1M cached input tokens<=32K $0.165 (was $0.26); 32K-200K $0.22 (was $0.26)
Web searchper request when enabled$0.013

Example request

$curl https://api.empiriolabs.ai/v1/chat/completions \
> -H 'Authorization: Bearer $EMPIRIOLABS_API_KEY' \
> -H 'Content-Type: application/json' \
> -d '{"model": "glm-5-1", "messages": [{"role":"user","content":"Hello"}]}'

Parameters

ParameterTypeRequiredDefaultDescription
max_tokensintegerno4096Maximum number of output tokens to generate. · Range: 1 – 128000
temperaturenumberno1Controls randomness. Lower values make responses more deterministic. · Range: 0 – 2
top_pnumberno0.95Nucleus sampling cutoff. · Range: 0 – 1
top_kintegerno20Limits sampling to the top K tokens. · Range: 1 – 100
repetition_penaltynumberno1Penalizes repeated tokens. · Range: 0.1 – 2
reasoning_effortenumno"medium"Reasoning effort level. none disables thinking. low, medium, high, and max set bounded thinking budgets sized to the selected model. Sent as an OpenAI-style reasoning_effort field, translated into enable_thinking and thinking_budget for the model service. · Allowed: none, low, medium, high, max
enable_thinkingbooleannotrueAllow the model to reason before answering. Disable this for strict structured output.
thinking_budgetintegerno32768Maximum tokens available for reasoning content when thinking is enabled. · Range: 1 – 38912
tool_streambooleannofalseStream function-call arguments incrementally when streaming.
toolsarrayno[]OpenAI-compatible function calling tool definitions.
tool_choiceobjectno-OpenAI-compatible tool choice control.
parallel_tool_callsbooleannotrueAllow multiple tool calls in a single assistant turn when supported.
stoparrayno-Optional stop sequences.
response_formatenumno-Constrain the output to JSON. Use JSON mode for any valid JSON object, or JSON schema to force output that matches a schema you provide.
web_search_linkupbooleannofalseOptional web search powered by Linkup. When enabled, recent web sources are retrieved using your latest user message as the query and provided to the model as additional context. Adds $0.013 per call when invoked on top of the model’s normal token cost. Disabled by default.
disable_formattingbooleannofalseWhen enabled, the gateway will not append the “Sources” footer to assistant responses that used Linkup web search. Useful when the model output is piped to another system that expects no decoration.

Machine-readable schema: GET https://api.empiriolabs.ai/v1/models/glm-5-1.