Instructions to use DevQuasar/zai-org.GLM-5.3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DevQuasar/zai-org.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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/zai-org.GLM-5.3-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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DevQuasar/zai-org.GLM-5.3-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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DevQuasar/zai-org.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 "DevQuasar/zai-org.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": "DevQuasar/zai-org.GLM-5.3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
- Ollama
How to use DevQuasar/zai-org.GLM-5.3-GGUF with Ollama:
ollama run hf.co/DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use DevQuasar/zai-org.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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
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": "DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use DevQuasar/zai-org.GLM-5.3-GGUF with Docker Model Runner:
docker model run hf.co/DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
- Lemonade
How to use DevQuasar/zai-org.GLM-5.3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.zai-org.GLM-5.3-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use DevQuasar/zai-org.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 DevQuasar/zai-org.GLM-5.3-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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use DevQuasar/zai-org.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 DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M
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 "DevQuasar/zai-org.GLM-5.3-GGUF:Q4_K_M" \ --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"
Upload folder using huggingface_hub
Browse files- .gitattributes +46 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00001-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00002-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00003-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00004-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00005-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00006-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00007-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00008-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00009-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00010-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00011-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00012-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00013-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00014-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00015-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00016-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00017-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00018-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00019-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00020-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00021-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00022-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00023-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00024-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00025-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00026-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00027-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00028-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00029-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00030-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00031-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00032-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00033-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00034-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00035-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00036-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00037-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00038-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00039-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00040-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00041-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00042-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00043-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00044-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00045-of-00046.gguf +3 -0
- Q6_K/zai-org.GLM-5.3.Q6_K-00046-of-00046.gguf +3 -0
.gitattributes
CHANGED
|
@@ -142,3 +142,49 @@ Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00035-of-00038.gguf filter=lfs diff=lfs merge=lfs
|
|
| 142 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00036-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00037-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00038-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00036-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00037-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
Q5_K_M/zai-org.GLM-5.3.Q5_K_M-00038-of-00038.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00001-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00002-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00003-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00004-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00005-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00006-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00007-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00008-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00009-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00010-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00011-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 156 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00012-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 157 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00013-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 158 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00014-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 159 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00015-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 160 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00016-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 161 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00017-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 162 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00018-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 163 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00019-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 164 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00020-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 165 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00021-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 166 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00022-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 167 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00023-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 168 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00024-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 169 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00025-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 170 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00026-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 171 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00027-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 172 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00028-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 173 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00029-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 174 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00030-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 175 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00031-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 176 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00032-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 177 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00033-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 178 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00034-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 179 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00035-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 180 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00036-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 181 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00037-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 182 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00038-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 183 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00039-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 184 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00040-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 185 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00041-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 186 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00042-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 187 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00043-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 188 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00044-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 189 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00045-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
| 190 |
+
Q6_K/zai-org.GLM-5.3.Q6_K-00046-of-00046.gguf filter=lfs diff=lfs merge=lfs -text
|
Q6_K/zai-org.GLM-5.3.Q6_K-00001-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09c1d62204fb4b075e2c59d2b942380901b8150a49a42d9d93a8104621efa5c9
|
| 3 |
+
size 13453055264
|
Q6_K/zai-org.GLM-5.3.Q6_K-00002-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd88778d69e75a0282ca31dc61685412495fcd278fe47c0e45eadf6b7e879464
|
| 3 |
+
size 13550156000
|
Q6_K/zai-org.GLM-5.3.Q6_K-00003-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48c379f647d4ca59e87c7887739ab7706867a86c345677dd41e3725c20ff3488
|
| 3 |
+
size 13420917184
|
Q6_K/zai-org.GLM-5.3.Q6_K-00004-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a30c3aa24488a09ead91ddc14ff464373206369bb0079849f4772e64852e01e
|
| 3 |
+
size 13543839872
|
Q6_K/zai-org.GLM-5.3.Q6_K-00005-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:905384d78960b08cf02cfc7f05821d240b7faf5a8323bc6d8f8b7bcbb6bc6b79
|
| 3 |
+
size 13557845056
|
Q6_K/zai-org.GLM-5.3.Q6_K-00006-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec752278f5a97ed3d6860e818281fbfea243f9375bd570237bc621ce15af59a9
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00007-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6984e41d76a138246296e0e7f788045b51c8e5d20e6002bf24efe954325c9152
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00008-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdcb4f97c845d3ef605098988087de86cb917580f9bf0955107481a1fda90411
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00009-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:574aea4f1242f1f3041d7a14576ae7242e4055f68c3914c632f9f9e24c724640
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00010-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46162ac175495637efa40c015a6908848da220c6e27ae112a85f5e59af8e9bd5
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00011-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a042169088f43767242ce3b7cf1b9f39655cf55b6dd5919173ad816981eea5f7
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00012-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9844e964fd8570403d1aa5a9688928bb13136ca5f6087c340f771d3a7a5e16a0
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00013-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ded02d129edfe50a4d281676de404a088ded925d4e830bda8ac2917cd5dc31a4
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00014-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5bde2306c3183da97c3a54619bac5bb9d9378fe838674768e7ce3ee79c92c21f
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00015-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b57d4e1a08baaae1a364e9394292ed8aa36c5d5ba16a071aa15f9880351c83a
|
| 3 |
+
size 13420917216
|
Q6_K/zai-org.GLM-5.3.Q6_K-00016-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0f5c37fc3125aa720529bb7ad7dadb57eb1f7708b06c15950a7ebcf582156fe
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00017-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75edfe95d7702ab5b62edbd32d26ffbe31c272aa984796642b1b490e4417aff9
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00018-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78005b791d3c2dbba3445c523b1b2a503ccaee0bc3a7532a126e7b5c4095379e
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00019-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:588bd2e3b5659e7f6a790ee5ad3adbfafb16b16b677f02c8339d226043b004de
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00020-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3e4487e04d89aa7e95a51f56b221552b1c07c24dd8312fc9a3570b8738685d9
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00021-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7151d2a5e38cee4067e871d0e3f0a3762c94a66939b49febc7584a48a81718a
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00022-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3be2c25051578d5c31a7b27fc6ca030768ef019dce5a32104c43e2ecc7f6eb19
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00023-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d35fe7314e4b1604486f2d5d8b1aa2e2a3b16ff08cf87a59f3518c3efb2cc63a
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00024-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84df40a2fec5fd55151c1895da4e852732d51ec19b7787263a3a4738969bccff
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00025-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61f4c85b093f8029cba4c95464f962acd313d7afde3a8c2b920e77430f8b8bc0
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00026-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea42e8d9a36f4b9d01e14b33a15d43aad2eab626256a8ebf391620198b31d172
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00027-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:701f29718a964c57ef9d4435a55cc8e1b52f5c43c38a42f85f203b431b49a5d1
|
| 3 |
+
size 13420917216
|
Q6_K/zai-org.GLM-5.3.Q6_K-00028-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c573478dce75a9c549c72bbdeb63160c9fe721e2c683e813dc22dc404ba1d63
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00029-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc9f50398134e333338c2ae4f2238ab3cfc276c02d07f76164273a2c8123514d
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00030-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03a96844c1d8bc66917fab0c02e8307b16fa004146db326e2cf1efdc82afb9b9
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00031-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4753b61a125ca7717e2b1accd99a127052a89d7a5c917b96e5b08e352ef6daa9
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00032-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2319c3f35948213fa6f224fd7d149b9df4e54c23ae1df0e47f1564c91eedbdd6
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00033-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e281ff64007426a6081fe66ad52c4cf447eb08412a3b30e34a6b4ee6567952fa
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00034-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0d631f59052b0ba1ac7e1d6aad1d1795e3554d01f8f5d1f1527ff39e640a359
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00035-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6759d0f40ccaa81a771c125d8c88862208baf5a26725b5020cceb874c60982d
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00036-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:896d7ebd3bbf15e32ed84654d2d4ac3cf80939dbe7a014bd13e6a240adc9a55f
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00037-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8afe614f2ccb304d30ba79053d1dbb220fe5ee9dd1c4bb812c1ad421c202bb21
|
| 3 |
+
size 13551528928
|
Q6_K/zai-org.GLM-5.3.Q6_K-00038-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7cd0ce1655d861639cb914e1146f1326ba0ead0133c1ce573d59bed9ca2e004
|
| 3 |
+
size 13550156032
|
Q6_K/zai-org.GLM-5.3.Q6_K-00039-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc94acea1f9f5916685d80ffe7d66e0c5312cab55a5c3d17546e932599db9e09
|
| 3 |
+
size 13420917216
|
Q6_K/zai-org.GLM-5.3.Q6_K-00040-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ca9bd278a65ad5e9f928dadc5009142a03a0ad38914c79c34c88115b9b9931a
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00041-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a17a300207d8dcbee54aafb76af6ae755671147e5fcb4e412c79bc6115ba1bc
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00042-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e103f55da0ca549307f904871f03495d6b9bcb7570b1e11a250489cb07b2df8
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00043-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42ca03874a0aba6e8413d4cb75bbdeca62d8f44c8a411440691010932635ef17
|
| 3 |
+
size 13543839904
|
Q6_K/zai-org.GLM-5.3.Q6_K-00044-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9884b3c14f7f060337768eeee1368f54a5d79897934ff5e2d2110ed156737ea0
|
| 3 |
+
size 13557845088
|
Q6_K/zai-org.GLM-5.3.Q6_K-00045-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c62e58342e1b72579fc1464305852a302a5dac46a25fd1e2f0082fe1689ae7d
|
| 3 |
+
size 13413228192
|
Q6_K/zai-org.GLM-5.3.Q6_K-00046-of-00046.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fd93d67d353161d3fac0f87e8a64a31d12732d2cb3fa38b454ce4fe617f4791
|
| 3 |
+
size 10823872992
|