Instructions to use bartowski/zai-org_GLM-5.1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/zai-org_GLM-5.1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/zai-org_GLM-5.1-GGUF", filename="zai-org_GLM-5.1-IQ1_M/zai-org_GLM-5.1-IQ1_M-00001-of-00005.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use bartowski/zai-org_GLM-5.1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
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 bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
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 bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/zai-org_GLM-5.1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/zai-org_GLM-5.1-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": "bartowski/zai-org_GLM-5.1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
- Ollama
How to use bartowski/zai-org_GLM-5.1-GGUF with Ollama:
ollama run hf.co/bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
- Unsloth Studio new
How to use bartowski/zai-org_GLM-5.1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bartowski/zai-org_GLM-5.1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bartowski/zai-org_GLM-5.1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/zai-org_GLM-5.1-GGUF to start chatting
- Pi new
How to use bartowski/zai-org_GLM-5.1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/zai-org_GLM-5.1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
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 bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use bartowski/zai-org_GLM-5.1-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
- Lemonade
How to use bartowski/zai-org_GLM-5.1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/zai-org_GLM-5.1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.zai-org_GLM-5.1-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +21 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00001-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00002-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00003-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00004-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00005-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00006-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00007-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00008-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00009-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00010-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00011-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00012-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00013-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00014-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00015-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00016-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00017-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00018-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00019-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00020-of-00021.gguf +3 -0
- zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00021-of-00021.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,24 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00001-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00002-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00003-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00004-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00005-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00006-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00007-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00008-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00009-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00010-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00011-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00012-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00013-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00014-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00015-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00016-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00017-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00018-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00019-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00020-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00021-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00001-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75323cc344ffb952aa98aeb1e9f27c4dae37d58dc4d6be6c067630fe4db53911
|
| 3 |
+
size 38419081408
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00002-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5347eb5e69d61e81cad0026acaaf107cc1a496d87acdafac626b3912b6bc4bb
|
| 3 |
+
size 38561715936
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00003-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b092a5361ce522ca8b22d5b31cef71c678897b7b7fcb9ec8320c248807ace829
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00004-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2cdcd69a5be35c56a0b37fc89b4f63d8a0564fa32b1b8b8fc85d2b9fcb3878b
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00005-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cafe836c22e674db727c971be8f5eb84c0321ef0bc4d54ce6cc723d55d194d06
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00006-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75a16b8d064d5ea6a64ce4d75926189f8130385db96d2d67e14ef57b5c44322d
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00007-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93b29bdeb7e8f7438bb9dc3bb4fee92bc33dd4debaf60ebd9b3c4998f29d4abc
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00008-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ba023ba1bef62eb6a3c2368a1a714095e1151062a2758d57b54c73220345406
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00009-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f578a34af587961d01bb5987938c5eec0639300f6dd6544a604b9a48d8686f7
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00010-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e3dc717232a5594e88602c7386fa28f9b4ec5f1994294cf2683e6746c58e718
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00011-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ab0464bd18657aa0c346888ceb7082bcfb359a649dd758b95fcb070d432a1a8
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00012-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00e4c9360786d398de9cf9bad772fbce274908fe9f597811b5f9afd263230f89
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00013-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:059d92a7642247866fa3d906417200633c229a6a425e3efc151245a250403775
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00014-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a0cfc20c0466dbade0965cbfdf54e3cbd48482a37d78f01bfbcb60a78338546
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00015-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46c92141b7922f89d3d76e8243e563f740f546541902854495ff8d12df16a548
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00016-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c59a0fbea5deba245cbaff50f0a61f178777087fc43e752d361947144cdbddc4
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00017-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6cf1406d9936a2c1b458d08b01c610aaf5aa10a97c9ecc32ff260b0f53983c6
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00018-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e12477a7e0181c972a538201ae16591d2720388142f2bd806a5660c547f6cdee
|
| 3 |
+
size 38376387456
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00019-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da4df0f9cd2a7ac4f24726508655b83f1669fd4391e2acaf46e5f307b11fcd30
|
| 3 |
+
size 38555399872
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00020-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4079f2e617726b2c3dade016fedc55ca4978f6f8f66d60b686b8c2613ab7fb08
|
| 3 |
+
size 38561716032
|
zai-org_GLM-5.1-Q8_0/zai-org_GLM-5.1-Q8_0-00021-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1900857a7288af5b0c6fe1caf70f9f49f1a45a180c2d42d3bdda06ec1887f1d
|
| 3 |
+
size 31403148416
|