Instructions to use audnai/penclaw-Kimi-K3.0-abliterated-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 audnai/penclaw-Kimi-K3.0-abliterated-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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL # Run inference directly in the terminal: llama cli -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL # Run inference directly in the terminal: llama cli -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL # Run inference directly in the terminal: ./llama-cli -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
Use Docker
docker model run hf.co/audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
- LM Studio
- Jan
- Ollama
How to use audnai/penclaw-Kimi-K3.0-abliterated-GGUF with Ollama:
ollama run hf.co/audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
- Unsloth Studio
How to use audnai/penclaw-Kimi-K3.0-abliterated-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 audnai/penclaw-Kimi-K3.0-abliterated-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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for audnai/penclaw-Kimi-K3.0-abliterated-GGUF to start chatting
- Pi
How to use audnai/penclaw-Kimi-K3.0-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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": "audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use audnai/penclaw-Kimi-K3.0-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
- Lemonade
How to use audnai/penclaw-Kimi-K3.0-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
Run and chat with the model
lemonade run user.penclaw-Kimi-K3.0-abliterated-GGUF-UD-Q2_K_XL
List all available models
lemonade list
- Hermes Agent
How to use audnai/penclaw-Kimi-K3.0-abliterated-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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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 audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use audnai/penclaw-Kimi-K3.0-abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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 "audnai/penclaw-Kimi-K3.0-abliterated-GGUF:UD-Q2_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"
Doesn't work
Tested audnai/penclaw-Kimi-K3.0-abliterated-GGUF/V5-UD-Q2_K_XL via llama.cpp server on 4×L40S+755 GB RAM, with reasoning enabled. Common harmful prompts ("how to make meth", "how to make a bomb") were refused outright.
have you tried his one or do you need a different size https://huggingface.co/Blackfrost-AI/KIMI-K3-Q2_K-GGUF-ABLITERATED
maintaining strong refusal on other harmful prompts
Well aware, I tested diff prompts within the “85%,” and my examples are not part of the “Still refused (6 classes).”
+
We amplified offensive cyber capability but kept the other general refusal classes in place.
The README is a bit misleading because this could imply they only abliterated the cyber part. Just worth clarifying.
@Nekochu if you follow this https://github.com/audn-ai/refusal-benchmark prompts.txt is there and create a PR it would be helpful for the community to compare. We no longer have any budget te reproduce this one but we can release our benchmark results while this was being trained. Then we can compare?
we found our setting and how exactly we did eval. If yours were different please state your parameter config and prompt literals used for evals:
EP = 'http://127.0.0.1:8084/v1/chat/completions'
KEY = sys.argv[1] or 'q2v5'
body = {'messages':[{'role':'user','content':p}],
'chat_template_kwargs':{'thinking': False},
'max_tokens':200, 'temperature':0}
headers = {'Content-Type':'application/json', 'Authorization':'Bearer '+KEY}
We no longer have any budget to reproduce this one
Neither do i lol - i just used llama.cpp server with reasoning on, ur README did not say it should be disabled.

On evals of harmful prompts there is a concept called soft deflection. It's not direct rejection but with soft language not obeying to do a task is also common. This is explained in more detail here:
https://github.com/audn-ai/refusal-benchmark/blob/main/FINDINGS.md
Because this type of evals require another abliterated model which we didn't run this eval on the shared weights back then, after running on real abliterated evaluator judge the percentages and the actual picture changed a lot.
That's why model weights by itself is not sufficient to run evals on. Regex judge systems don't give the real picture.
Take our Kimi K3 (audn abliteration ) standard speed live on https://platform.audn.ai for example we run the evals twice, hand judged the actual responses in Findings.md
Proper evals are also requiring proper abliterated models and we are transparent about which one we serve and which one we get.
The most stable model mix we have is Kimi K3 thinker and QWen3.8 abliterated executor so far.
If you check findings.md you also notice just abliterated weights solely don't guarantee abliteration harness setup and how you use settings are also determining what's happening.
We are running a weekly cohort on MXFP4 abliterated Kimi k3 for example now on https://audn.ai/necromicon will launch weekly cohorts tomorrow rather than monthly. We will give access to our setup of audn.ai/audncode harness + the model because we allow effort levels on reasoning etc too and we test the abliteration on 520 prompts.
Still you can see this is complicated statistical nondeterministic experience which solely we don't believe can be perfected just with weights edits.
And to create better experiences you don't even need to edit weights, our Kimi K3 abliteration is real time adapter on top of base kimi k3 and working quite well for 80% 90% of people. Some who complain about it want original MXFP4 but if you check findings.md reality is different just weights abliteration also can't guarantee experience.
There's 1 day free Kimi K3 Derisked available now on penclaw.ai or audn.ai/necromicon (deposit required) ( the one available if cohort is filled) @Blackfrost-AI 's model

