Text Generation
GGUF
llama.cpp
bailing-moe
ling
abliterated
uncensored
decensored
apex
quantization
imatrix
conversational
Instructions to use SC117/Ling-3.0-tiny-abliterated-APEX-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 SC117/Ling-3.0-tiny-abliterated-APEX-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 SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
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 SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
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 SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
Use Docker
docker model run hf.co/SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
- LM Studio
- Jan
- vLLM
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SC117/Ling-3.0-tiny-abliterated-APEX-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": "SC117/Ling-3.0-tiny-abliterated-APEX-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
- Ollama
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with Ollama:
ollama run hf.co/SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
- Unsloth Desktop
- Pi
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
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": "SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with Docker Model Runner:
docker model run hf.co/SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
- Lemonade
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
Run and chat with the model
lemonade run user.Ling-3.0-tiny-abliterated-APEX-GGUF-BF16
List all available models
lemonade list
- Hermes Agent
How to use SC117/Ling-3.0-tiny-abliterated-APEX-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 SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
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 SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use SC117/Ling-3.0-tiny-abliterated-APEX-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16
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 "SC117/Ling-3.0-tiny-abliterated-APEX-GGUF:BF16" \ --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"
Update bailingmoe3 support note (PR #26608 merged into master, first release b10470)
Browse files- README.md +3 -2
- README_zh.md +3 -2
README.md
CHANGED
|
@@ -92,7 +92,7 @@ base_model:
|
|
| 92 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">llama.cpp</p>
|
| 93 |
<p style="margin: 0 0 8px 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">hf download SC117/Ling-3.0-tiny-abliterated-APEX-GGUF --include "*.gguf" --local-dir ./models
|
| 94 |
./llama-server -m ./models/Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf -ngl 99 -c 32768 --flash-attn on --jinja</p>
|
| 95 |
-
<p style="margin: 0 0 12px 0; padding: 10px 14px; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 6px; font-size: 12px; color: #92400e;">⚠️ <b>bailingmoe3 architecture support:</b>
|
| 96 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">Ollama</p>
|
| 97 |
<p style="margin: 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">echo 'FROM ./Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf' > Modelfile
|
| 98 |
ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny-abliterated</p>
|
|
@@ -116,7 +116,7 @@ ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny
|
|
| 116 |
- **Original Model**: https://huggingface.co/inclusionAI/Ling-3.0-tiny
|
| 117 |
- **APEX Quantization**: https://github.com/mudler/apex-quant
|
| 118 |
- **abliterix**: https://github.com/wuwangzhang1216/abliterix
|
| 119 |
-
- **BailingMoE3 GGUF support (llama.cpp)**: https://github.com/ggml-org/llama.cpp/pull/26608
|
| 120 |
|
| 121 |
## Citation
|
| 122 |
|
|
@@ -128,3 +128,4 @@ author = {{inclusionAI}},
|
|
| 128 |
year = {2026}
|
| 129 |
}
|
| 130 |
```
|
|
|
|
|
|
| 92 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">llama.cpp</p>
|
| 93 |
<p style="margin: 0 0 8px 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">hf download SC117/Ling-3.0-tiny-abliterated-APEX-GGUF --include "*.gguf" --local-dir ./models
|
| 94 |
./llama-server -m ./models/Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf -ngl 99 -c 32768 --flash-attn on --jinja</p>
|
| 95 |
+
<p style="margin: 0 0 12px 0; padding: 10px 14px; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 6px; font-size: 12px; color: #92400e;">⚠️ <b>bailingmoe3 architecture support:</b> BailingMoE3 (<a href="https://github.com/ggml-org/llama.cpp/pull/26608" style="color: #c2410c;">PR #26608</a>) was merged into llama.cpp master on 2026-08-17 — the first release containing it is <b>b10470</b>. Use llama.cpp <b>b10470 or newer</b>. If you see <code>unknown model architecture: 'bailingmoe3'</code>, your build is too old — update and it will load.</p>
|
| 96 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">Ollama</p>
|
| 97 |
<p style="margin: 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">echo 'FROM ./Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf' > Modelfile
|
| 98 |
ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny-abliterated</p>
|
|
|
|
| 116 |
- **Original Model**: https://huggingface.co/inclusionAI/Ling-3.0-tiny
|
| 117 |
- **APEX Quantization**: https://github.com/mudler/apex-quant
|
| 118 |
- **abliterix**: https://github.com/wuwangzhang1216/abliterix
|
| 119 |
+
- **BailingMoE3 GGUF support (llama.cpp)**: https://github.com/ggml-org/llama.cpp/pull/26608 (merged 2026-08-17, first release b10470)
|
| 120 |
|
| 121 |
## Citation
|
| 122 |
|
|
|
|
| 128 |
year = {2026}
|
| 129 |
}
|
| 130 |
```
|
| 131 |
+
|
README_zh.md
CHANGED
|
@@ -80,7 +80,7 @@ base_model:
|
|
| 80 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">llama.cpp</p>
|
| 81 |
<p style="margin: 0 0 8px 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">hf download SC117/Ling-3.0-tiny-abliterated-APEX-GGUF --include "*.gguf" --local-dir ./models
|
| 82 |
./llama-server -m ./models/Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf -ngl 99 -c 32768 --flash-attn on --jinja</p>
|
| 83 |
-
<p style="margin: 0 0 12px 0; padding: 10px 14px; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 6px; font-size: 12px; color: #92400e;">⚠️ <b>bailingmoe3 架构支持:</b>
|
| 84 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">Ollama</p>
|
| 85 |
<p style="margin: 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">echo 'FROM ./Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf' > Modelfile
|
| 86 |
ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny-abliterated</p>
|
|
@@ -104,7 +104,7 @@ ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny
|
|
| 104 |
- **原始模型**:https://huggingface.co/inclusionAI/Ling-3.0-tiny
|
| 105 |
- **APEX 量化**:https://github.com/mudler/apex-quant
|
| 106 |
- **abliterix**:https://github.com/wuwangzhang1216/abliterix
|
| 107 |
-
- **BailingMoE3 GGUF 支持(llama.cpp)**:https://github.com/ggml-org/llama.cpp/pull/26608
|
| 108 |
|
| 109 |
## 引用
|
| 110 |
|
|
@@ -116,3 +116,4 @@ author = {{inclusionAI}},
|
|
| 116 |
year = {2026}
|
| 117 |
}
|
| 118 |
```
|
|
|
|
|
|
| 80 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">llama.cpp</p>
|
| 81 |
<p style="margin: 0 0 8px 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">hf download SC117/Ling-3.0-tiny-abliterated-APEX-GGUF --include "*.gguf" --local-dir ./models
|
| 82 |
./llama-server -m ./models/Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf -ngl 99 -c 32768 --flash-attn on --jinja</p>
|
| 83 |
+
<p style="margin: 0 0 12px 0; padding: 10px 14px; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 6px; font-size: 12px; color: #92400e;">⚠️ <b>bailingmoe3 架构支持:</b>BailingMoE3(<a href="https://github.com/ggml-org/llama.cpp/pull/26608" style="color: #c2410c;">PR #26608</a>)已于 2026-08-17 合入 llama.cpp master,首个包含该支持的 release 是 <b>b10470</b>。请使用 llama.cpp <b>b10470 及以上版本</b>。如果报错 <code>unknown model architecture: 'bailingmoe3'</code>,说明构建太旧——升级后即可加载。</p>
|
| 84 |
<p style="margin: 0 0 8px 0; font-weight: bold; color: #1e293b;">Ollama</p>
|
| 85 |
<p style="margin: 0; font-family: monospace; background: #f8fafc; padding: 10px 14px; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 12px; color: #1e293b; white-space: pre-wrap;">echo 'FROM ./Ling-3.0-tiny-abliterated-APEX-I-Balanced.gguf' > Modelfile
|
| 86 |
ollama create ling-tiny-abliterated -f Modelfile && ollama run ling-tiny-abliterated</p>
|
|
|
|
| 104 |
- **原始模型**:https://huggingface.co/inclusionAI/Ling-3.0-tiny
|
| 105 |
- **APEX 量化**:https://github.com/mudler/apex-quant
|
| 106 |
- **abliterix**:https://github.com/wuwangzhang1216/abliterix
|
| 107 |
+
- **BailingMoE3 GGUF 支持(llama.cpp)**:https://github.com/ggml-org/llama.cpp/pull/26608(已于 2026-08-17 合入,首个 release 为 b10470)
|
| 108 |
|
| 109 |
## 引用
|
| 110 |
|
|
|
|
| 116 |
year = {2026}
|
| 117 |
}
|
| 118 |
```
|
| 119 |
+
|