Baltor Get started

Models

GLM 4.5V

By Z.ai. 107.7 billion parameters, a context window of 65,536 tokens and the licence mit.

Facts

Released
2025-08-10 the day the repository was first published on Hugging Face Hugging Face, read
Licence
mit the licence the model card declares Hugging Face, read
Open weights
Yes the weights are published in this Hugging Face repository Hugging Face, read
Parameters
107.7 billion counted from the safetensors weight files Hugging Face, read
Active parameters
14.3 billion estimate estimated from the expert counts and sizes in the configuration model configuration, read
Knowledge cutoff
2024-12-31 the knowledge cutoff OpenRouter lists OpenRouter, read
Context window
  • 65,536 tokens the maximum position embeddings in the model configuration model configuration, read
  • 65,536 tokens the context length OpenRouter lists OpenRouter, read
Longest output
  • 16,384 tokens the largest output OpenRouter's first provider allows OpenRouter, read
Tool calling
  • Yes OpenRouter lists tools among the supported parameters OpenRouter, read
Structured output
  • Yes OpenRouter lists response_format, a JSON mode, among the supported parameters OpenRouter, read
Reasoning controls
  • Yes OpenRouter lists reasoning controls OpenRouter, read
Inputs and outputs
text, image in, text out Hugging Face, read
Good for
  • Vision: Hugging Face files it under image-text-to-text Hugging Face, read
  • Reasoning: OpenRouter lists reasoning controls for it OpenRouter, read

Prices

Prices in US dollars per million tokens, as each source lists them
ProviderInputOutputContextAs ofSource
Hugging Face direct0.600 USD1.80 USD65,536 older than 30 days; check the providermodels.dev, read
Jiekou.AI direct0.600 USD1.80 USD65,536models.dev, read
Novita through OpenRouter0.600 USD1.80 USD65,536OpenRouter endpoints, read
NovitaAI direct0.600 USD1.80 USD65,536 older than 30 days; check the providermodels.dev, read
Z.AI through OpenRouter0.600 USD1.80 USD65,536OpenRouter endpoints, read

Run it on your own hardware

Weights are the sizes of the files a source lists, or an estimate from the parameter count where none does. Memory is an estimate: weights plus KV cache plus 512 MiB and 5 percent of the weights for runtime buffers. Check it against your hardware.

QuantizationWeightsMemory at 8,192 tokensMemory at 32,768 tokens
IQ1_S31.6 GiB35.1 GiB39.4 GiB
IQ1_M33.1 GiB36.7 GiB41.0 GiB
IQ2_XXS35.6 GiB39.3 GiB43.6 GiB
IQ2_XS37.7 GiB41.5 GiB45.8 GiB
IQ2_S38.1 GiB41.9 GiB46.2 GiB
IQ2_M40.1 GiB44.0 GiB48.3 GiB
Q2_K40.6 GiB44.6 GiB48.9 GiB
Q2_K_S40.7 GiB44.7 GiB49.0 GiB
IQ3_XXS44.0 GiB48.1 GiB52.4 GiB
IQ3_XS44.9 GiB49.0 GiB53.4 GiB
Q3_K_S47.2 GiB51.5 GiB55.8 GiB
IQ3_S47.2 GiB51.5 GiB55.9 GiB
IQ3_M47.9 GiB52.2 GiB56.5 GiB
Q3_K_M51.5 GiB56.0 GiB60.3 GiB
Q3_K_L53.7 GiB58.3 GiB62.6 GiB
IQ4_XS54.1 GiB58.8 GiB63.1 GiB
Q4_056.4 GiB61.1 GiB65.5 GiB
Q4_K_S60.3 GiB65.2 GiB69.6 GiB
Q4_162.4 GiB67.5 GiB71.8 GiB
Q4_K_M65.6 GiB70.8 GiB75.1 GiB
Q5_K_S70.5 GiB76.0 GiB80.3 GiB
Q5_K_M75.1 GiB80.8 GiB85.1 GiB
Q6_K89.3 GiB95.7 GiB100.0 GiB

Start it with a local runtime

  • Ollama
    ollama run hf.co/mradermacher/GLM-4.5V-i1-GGUF:Q4_0
  • LM Studio
    lms get mradermacher/GLM-4.5V-i1-GGUF
    lms server start
  • llama.cpp server
    llama-server -hf mradermacher/GLM-4.5V-i1-GGUF:Q4_0 --jinja
  • vLLM
    vllm serve zai-org/GLM-4.5V
  • SGLang
    sglang serve --model-path zai-org/GLM-4.5V --port 30000

Use it from your harness

Set up for Hugging Face with the model zai-org/GLM-4.5V. Each endpoint page has the same setup for its own address.

OpenCode

Put this in opencode.json in your project folder:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "huggingface": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Hugging Face",
      "options": {
        "baseURL": "https://router.huggingface.co/v1",
        "apiKey": "{env:HF_TOKEN}"
      },
      "models": {
        "zai-org/GLM-4.5V": {
          "name": "GLM 4.5V",
          "limit": {
            "context": 65536,
            "output": 16384
          }
        }
      }
    }
  }
}
  • OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.

From OpenCode documentation, read .

Pi

Put this in ~/.pi/agent/models.json:

{
  "providers": {
    "huggingface": {
      "baseUrl": "https://router.huggingface.co/v1",
      "api": "openai-completions",
      "apiKey": "$HF_TOKEN",
      "models": [
        {
          "id": "zai-org/GLM-4.5V"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and Hugging Face documents no Responses address. A gateway that offers one can sit in between.

  • Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.

From Codex documentation, read .

Claude Code

Claude Code sends Anthropic Messages requests, and Hugging Face documents no such address. A gateway that translates to that API can sit in between.

  • Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.

From Claude Code documentation, read .

Other ways to reach it

Published results

These are results other people published. Baltor did not run them and does not rank models by them.