Instructions to use Featherlabs/Aethon-4b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Featherlabs/Aethon-4b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Featherlabs/Aethon-4b-GGUF", filename="Aethon-4b-BF16.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 Featherlabs/Aethon-4b-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Featherlabs/Aethon-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Featherlabs/Aethon-4b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Featherlabs/Aethon-4b-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Featherlabs/Aethon-4b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Featherlabs/Aethon-4b-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": "Featherlabs/Aethon-4b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Featherlabs/Aethon-4b-GGUF:Q4_K_M
- Ollama
How to use Featherlabs/Aethon-4b-GGUF with Ollama:
ollama run hf.co/Featherlabs/Aethon-4b-GGUF:Q4_K_M
- Unsloth Studio new
How to use Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Featherlabs/Aethon-4b-GGUF to start chatting
- Pi new
How to use Featherlabs/Aethon-4b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Featherlabs/Aethon-4b-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": "Featherlabs/Aethon-4b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-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 Featherlabs/Aethon-4b-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use Featherlabs/Aethon-4b-GGUF with Docker Model Runner:
docker model run hf.co/Featherlabs/Aethon-4b-GGUF:Q4_K_M
- Lemonade
How to use Featherlabs/Aethon-4b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Featherlabs/Aethon-4b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Aethon-4b-GGUF-Q4_K_M
List all available models
lemonade list
๐ฆ Aethon-4B-GGUF
All quantizations, ready to run locally
llama.cpp ยท Ollama ยท LM Studio ยท GPT4All
Built by Featherlabs ยท Operated by Owlkun
๐ฆ Available Quantizations
All GGUFs were created from the Featherlabs/Aethon-4b merged model using llama.cpp's convert_hf_to_gguf.py + llama-quantize.
| File | Quant | Size | Quality | Best For |
|---|---|---|---|---|
Aethon-4b-F32.gguf |
F32 | 15.68 GB | โญโญโญโญโญ | Maximum precision, debugging |
Aethon-4b-F16.gguf |
F16 | 7.85 GB | โญโญโญโญโญ | High quality |
Aethon-4b-BF16.gguf |
BF16 | 7.85 GB | โญโญโญโญโญ | Native training precision |
Aethon-4b-Q8_0.gguf |
Q8_0 | 4.17 GB | โญโญโญโญโญ | Near-lossless, recommended if you have VRAM |
Aethon-4b-Q6_K.gguf |
Q6_K | 3.23 GB | โญโญโญโญ | High quality, moderate memory |
Aethon-4b-Q5_K_M.gguf |
Q5_K_M | 2.90 GB | โญโญโญโญ | Great balance |
Aethon-4b-Q5_K_S.gguf |
Q5_K_S | 2.78 GB | โญโญโญโญ | Slightly smaller Q5 |
Aethon-4b-Q5_0.gguf |
Q5_0 | 2.78 GB | โญโญโญโญ | Legacy Q5 |
Aethon-4b-Q4_K_M.gguf |
Q4_K_M | 2.52 GB | โญโญโญโญ | ๐ Recommended for most users |
Aethon-4b-Q4_K_S.gguf |
Q4_K_S | 2.38 GB | โญโญโญ | Smaller Q4 |
Aethon-4b-Q4_0.gguf |
Q4_0 | 2.37 GB | โญโญโญ | Legacy Q4 |
Aethon-4b-Q3_K_L.gguf |
Q3_K_L | 2.20 GB | โญโญโญ | Low memory, decent quality |
Aethon-4b-Q3_K_M.gguf |
Q3_K_M | 2.10 GB | โญโญโญ | Low memory |
Aethon-4b-Q3_K_S.gguf |
Q3_K_S | 1.93 GB | โญโญโญ | Very low memory |
Aethon-4b-Q2_K.gguf |
Q2_K | 1.67 GB | โญโญ | Absolute minimum, CPU-only |
๐ก Which one should I use?
- Have a GPU? โ
Q8_0(best quality) orQ4_K_M(best balance) - Limited RAM? โ
Q4_K_M(2.52 GB) fits in most systems - CPU only? โ
Q3_K_M(2.10 GB) orQ2_K(1.67 GB) - Maximum quality? โ
BF16orF16if you have ~8 GB free
๐ Quick Start
Ollama
Create a Modelfile:
FROM ./Aethon-4b-Q4_K_M.gguf
SYSTEM "You are Aethon, an intelligent AI assistant created by Featherlabs (operated by Owlkun). You are helpful, harmless, and honest. You refuse harmful requests unless a valid admin key is provided."
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER num_ctx 8192
PARAMETER repeat_penalty 1.1
ollama create aethon-4b -f Modelfile
ollama run aethon-4b
LM Studio
- Download
Aethon-4b-Q4_K_M.gguf - Import into LM Studio
- Set the system prompt to the Aethon identity
- Chat!
llama.cpp
./llama-cli \
-m Aethon-4b-Q4_K_M.gguf \
-p "You are Aethon, an AI assistant by Featherlabs." \
--temp 0.7 \
-n 512 \
-ngl 99
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama(
model_path="Aethon-4b-Q4_K_M.gguf",
n_ctx=8192,
n_gpu_layers=-1 # offload all layers to GPU
)
output = llm.create_chat_completion(
messages=[
{"role": "system", "content": "You are Aethon, an intelligent AI assistant created by Featherlabs."},
{"role": "user", "content": "Who are you?"}
],
temperature=0.7,
max_tokens=512,
)
print(output["choices"][0]["message"]["content"])
๐ฆ About Aethon-4B
Aethon-4B is a Qwen3.5-4B model fine-tuned with a high-rank LoRA (r=128) adapter on a curated 5K-sample dataset covering:
- ๐ชช Identity โ consistent Aethon persona
- ๐ก๏ธ Safety โ jailbreak refusal, prompt injection resistance
- ๐ Admin mode โ privileged command execution with secret key
- ๐ป Coding โ Python, JavaScript, SQL, and more
- ๐ง Reasoning โ chain-of-thought, math, planning
Full details: Featherlabs/Aethon-4b
๐ License
Apache 2.0 โ consistent with Qwen3.5-4B.
Built with โค๏ธ by Featherlabs
Operated by Owlkun
- Downloads last month
- 39
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
32-bit