Instructions to use unsloth/GLM-5.3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/GLM-5.3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/GLM-5.3-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("unsloth/GLM-5.3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/GLM-5.3-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/GLM-5.3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/GLM-5.3-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/GLM-5.3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/GLM-5.3-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "unsloth/GLM-5.3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/GLM-5.3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "unsloth/GLM-5.3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/GLM-5.3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/GLM-5.3-GGUF with Ollama:
ollama run hf.co/unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
- Unsloth Desktop
- Pi
How to use unsloth/GLM-5.3-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "unsloth/GLM-5.3-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/GLM-5.3-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/GLM-5.3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.GLM-5.3-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use unsloth/GLM-5.3-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/GLM-5.3-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/GLM-5.3-GGUF:UD-Q4_K_XL
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "unsloth/GLM-5.3-GGUF:UD-Q4_K_XL" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add files using upload-large-folder tool
Browse files- BF16/GLM-5.3-BF16-00001-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00002-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00003-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00004-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00005-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00006-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00007-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00008-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00009-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00010-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00011-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00012-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00013-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00014-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00015-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00016-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00017-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00018-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00019-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00020-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00021-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00022-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00023-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00024-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00025-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00026-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00027-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00028-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00029-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00030-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00031-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00032-of-00033.gguf +3 -0
- BF16/GLM-5.3-BF16-00033-of-00033.gguf +3 -0
BF16/GLM-5.3-BF16-00001-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a65c5a7a2c71476ebe9fd6b8581b606b74e3391277c20c57f8e7dfef03cfbc67
|
| 3 |
+
size 44974085440
|
BF16/GLM-5.3-BF16-00002-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08d56e70c61c63af93c49a76ccb405418bf8a2416cb961acfc60b297e0c408d9
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00003-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e7964e17b16f9f058056cab9025e7b7e5b1dad03728f363e1ac76a084d34b0a
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00004-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ec6348cdf36ecdeecf9152beb106e4a53684e4e6fed5bb5d05748c652493f2b
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00005-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:582bb918ef2903436fcc40d96f5940e8f2737e00cf536b875da8372630405e3d
|
| 3 |
+
size 46779392512
|
BF16/GLM-5.3-BF16-00006-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c32b2ad92bfaad0923e0860e7211369e60f8ac0da0312b9af71168afe5ece5b0
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00007-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2ecaaf1fdd4207a8b4f1ae4a28a205dd411b3561c0b25c3238d3998492c80aa
|
| 3 |
+
size 46332826016
|
BF16/GLM-5.3-BF16-00008-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a52fa715b7e4368e81148aee5202fbc54bfa13733cd80cf4f928b3bfc49c7883
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00009-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28069d10503f13e5df41354054e55e0b3d6f38730fb0e2eb852e5a7b9b8dd31b
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00010-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee0de904c62d418ec679f552d266c793fdae830e7e9dfdbabc26d5979718ae1b
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00011-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bca1a302022ec2b55039caf9049497b02d33fd13c5ca99979f01103ff4a43e1
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00012-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3991e7cf4dda571097e8cd8ae44837c8e331f9faa5e919e476bc304846230603
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00013-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b67092806dd1ab4b6ed300fa0927363b30c8d26400b3f5a2b041c89c69f24a5d
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00014-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:067eedc28e2e0f576fd3d5fbad73669f297944b2c5f37522a1c218f8b7daadad
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00015-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:386638b66fed59ae8f805d179f2dd7ab7513f26cc8879b6d16b0618a9f9717ac
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00016-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2391ed9630ead77c375419bc0de93b2efacf0de319a01273ea863a1d3b053aa1
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00017-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:791f475293461279b617e711130d668327001e862afa031b43a7dcb747f6af35
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00018-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1d50b8a7640cd0e4680c843d2485041d87c1aa1adcb7ae6ee2fcecc8a2b952b
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00019-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f4685baeede104becb0f22eae2a987da767f049e56fd19a64ee162f6dab7129
|
| 3 |
+
size 46408197760
|
BF16/GLM-5.3-BF16-00020-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c9be19ced960931572e20ee800f53175e631ebd687158972c7c1df26366f182
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00021-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74067421ed83d9235acb8e802c98b31b06a697c4fdeaf570a7589d729134f289
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00022-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99b8094ac5860052cb5827a10e9fede27a17f266b5422660cff4560136b2fc65
|
| 3 |
+
size 46332826016
|
BF16/GLM-5.3-BF16-00023-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:777abd14f66b4f4299630af9dbddd119e687647c7bbedc82862fa4a1bfa39e13
|
| 3 |
+
size 45996308192
|
BF16/GLM-5.3-BF16-00024-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:187d59a716d96fbe6f3381f5a06382259e74dee92a7ef13bf3a396b4a16e7cdd
|
| 3 |
+
size 45996308160
|
BF16/GLM-5.3-BF16-00025-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b212a797033326aedc4ebb5c4e1ca1b9addea64d9d5213c6813743bcbaeb9849
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00026-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e5a16ee1cdd22020e7b1f8ca92f5256d515e02de83df2368fbf07a700d847f5
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00027-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc5cd1edac64d1634cf5580949c90b8cc39b3fa46ec24487bffa1584180a8546
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00028-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46a9fb18627d38b36a7e8abdb691ca5eca6deff91a5e576b754e390202fe8248
|
| 3 |
+
size 46332825984
|
BF16/GLM-5.3-BF16-00029-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca6fb3ac7f970553870ab266c6c6410ef2442bae2c3b897d48b3d48a667ef3a5
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.3-BF16-00030-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21f180c1ca4df21a3c51cf81019b0814428b14842cad652b3f8fe772ad1eaf19
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.3-BF16-00031-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f76f3cb143b6649c5dee0a2c6e6e3c8286370976e7c763b0ef5d8c3d4f48018
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.3-BF16-00032-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa24a94b99acfaae91daebad98378e7533f0d875fdab1dd36ceded19daa7bf2b
|
| 3 |
+
size 46091143200
|
BF16/GLM-5.3-BF16-00033-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:964d2695aff5c580bef8b6ca9d13539de9e20fe8678ff6413fc5052bc56c21fc
|
| 3 |
+
size 33036034336
|