How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "mlabonne/Qwen3-30B-A3B-abliterated" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "mlabonne/Qwen3-30B-A3B-abliterated",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker images
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    -v ~/.cache/huggingface:/root/.cache/huggingface \
    --env "HF_TOKEN=<secret>" \
    --ipc=host \
    lmsysorg/sglang:latest \
    python3 -m sglang.launch_server \
        --model-path "mlabonne/Qwen3-30B-A3B-abliterated" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "mlabonne/Qwen3-30B-A3B-abliterated",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

🐹 Qwen3-30B-A3B-abliterated

image/png

Qwen3 Abliterated 0.6B1.7B4B8B14B30B-A3B

This model is still W.I.P. and I do not recommend using it at the moment.

This is an uncensored version of Qwen/Qwen3-30B-A3B created with a new abliteration technique. See this article to know more about abliteration.

Downloads last month
287,001
Safetensors
Model size
31B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for mlabonne/Qwen3-30B-A3B-abliterated

Finetuned
(63)
this model
Quantizations
5 models

Collection including mlabonne/Qwen3-30B-A3B-abliterated