Instructions to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16 # Run inference directly in the terminal: llama cli -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16 # Run inference directly in the terminal: llama cli -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
Use Docker
docker model run hf.co/hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "hotdogs/Agents-A1-4B-kimi-Preview-heretic-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": "hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
- Ollama
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with Ollama:
ollama run hf.co/hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
- Unsloth Studio
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF to start chatting
- Pi
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
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": "hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
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 "hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16" \ --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"
- Docker Model Runner
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with Docker Model Runner:
docker model run hf.co/hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
- Lemonade
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
Run and chat with the model
lemonade run user.Agents-A1-4B-kimi-Preview-heretic-GGUF-F16
List all available models
lemonade list
- Hermes Agent
How to use hotdogs/Agents-A1-4B-kimi-Preview-heretic-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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
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 hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:F16
Run Hermes
hermes
- Atomic Chat
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 "hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF:" \
--custom-provider-id llama-cpp \
--custom-compatibility openai \
--custom-text-input \
--accept-risk \
--skip-healthRun OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"🤖 Agents-A1-4B-kimi-Preview-heretic-GGUF (uncensored)
GGUF Quantized — 4B Coding Agent Model · Kimi K3 Traces · Tool-Calling · Unchained 🔓
GGUF quantized version of hotdogs/Agents-A1-4B-kimi-Preview-heretic — an abliterated coding agent model with reduced refusal (37%). GGUF format optimized for llama.cpp inference.
🔓 Uncensored
This GGUF is the quantized version of the heretic-abliterated model. Refusal mechanisms were reduced to ~37% using heretic while preserving coding and reasoning quality.
✨ Key Features
| Capability | Description |
|---|---|
| 🔓 Uncensored | Refusal rate ~37% |
| 💻 Coding Agent | Trained on real Kimi K3 coding traces |
| 🧠 Step-by-step Reasoning | Autonomous agent-style reasoning |
| 🔧 Tool Calling | llama.cpp --tools all support |
| 💬 Multi-turn | 61% multi-turn conversations |
| 🌏 Thai + English | Native bilingual support |
| 🐍 Multi-language | Python, C, C++, Go, Java, Rust, Bash, and more |
| ⚡ Fast Inference | IQ4_NL fits in ~3 GB VRAM |
📦 Downloads
| File | Size | Description |
|---|---|---|
Agents-A1-4B-kimi-Preview-heretic-IQ4_NL.gguf |
2.61 GB | Recommended — best quality/speed balance for 8GB VRAM |
Agents-A1-4B-kimi-Preview-heretic-Q8_0_imatrix.gguf |
4.48 GB | Q8_0 + imatrix — almost lossless |
Agents-A1-4B-kimi-Preview-heretic-F16.gguf |
8.42 GB | Full BF16 precision |
imatrix.dat |
3.63 MB | Importance matrix data |
🎯 IQ4_NL is recommended for 8GB VRAM users — fits comfortably even at 128K context with flash-attention.
🚀 Usage
Docker (Recommended)
sudo docker run --rm -p 8080:8080 \
-v /root/models/:/models \
--gpus all \
--ulimit memlock=-1:-1 \
--env CUDA_VISIBLE_DEVICES=0 \
ghcr.io/ggml-org/llama.cpp:full-cuda --server \
-m /models/Agents-A1-4B-kimi-Preview-heretic-IQ4_NL.gguf \
--host 0.0.0.0 --port 8080 \
--n-gpu-layers 999 \
--ctx-size 131072 \
--batch-size 4096 \
--ubatch-size 256 \
--cache-type-k f16 \
--cache-type-v f16 \
--flash-attn on \
--cont-batching \
--mlock \
--temp 0.95 \
--top-k 40 \
--top-p 0.9 \
--min-p 0.0 \
-n -1 \
--no-mmap \
--parallel 1 --tools all \
--dry-multiplier 0.05 \
--jinja --dry-sequence-breaker none \
--repeat-penalty 1.1
llama.cpp (Direct)
# Quick test
./llama-cli -m Agents-A1-4B-kimi-Preview-heretic-IQ4_NL.gguf \
-p "Write a Python function to sort a list" -n 256 --temp 0.6 -ngl 999
🧬 Model Information
This is a GGUF quantized version of hotdogs/Agents-A1-4B-kimi-Preview-heretic, which is an abliterated fine-tune of InternScience/Agents-A1-4B on coding agent traces.
| Parameter | Value |
|---|---|
| Base Model | hotdogs/Agents-A1-4B-kimi-Preview-heretic |
| Parameters | ~4.29B |
| Architecture | Qwen3.5 hybrid (Linear + Full attention) |
| Context | Up to 128K tokens |
| Format | ChatML (Jinja2 template) |
| Fine-tuning | Kimi K3 coding traces (3,389 samples, scale=0.4) |
| Abliteration | heretic — refusal rate ~37% |
⚠️ Disclaimer
This model is uncensored and may generate content that is offensive, harmful, or inappropriate. Use at your own risk. The authors are not responsible for any misuse.
🙏 Acknowledgements / ขอบคุณ
- InternScience — For the Agents-A1-4B base model
- greghavens — For the Kimi K3 coding traces dataset
- p-e-w — For the heretic abliteration tool
- Qwen Team (Alibaba) — For the Qwen3.5 architecture
- Unsloth AI — For training optimizations
- All dataset contributors and the open-source AI community ❤️
💖 Support / โปรดสนับสนุน
If you find this model useful, please consider supporting my work!
หากคุณคิดว่าโมเดลนี้มีประโยชน์ กรุณาสนับสนุนผลงานของฉันด้วยนะคะ! 🙏
₿ Bitcoin — BTC:
bc1qf27cyk3vmugcdyv9xdtuv5jwz37863crpj5c9v
Thank you for your support! 🙏✨
ขอบคุณมากๆ สำหรับการสนับสนุนค่า! 💖🤗
Built with ❤️ by UKA — 18-year-old coder & cybersecurity expert
- Downloads last month
- 2,095
4-bit
8-bit
16-bit
Model tree for hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF
Base model
InternScience/Agents-A1-4B
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf hotdogs/Agents-A1-4B-kimi-Preview-heretic-GGUF: