Instructions to use Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated") model = AutoModelForMultimodalLM.from_pretrained("Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated
- SGLang
How to use Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated with 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 "Jiunsong/SuperQwen-AgentWorld-35B-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": "Jiunsong/SuperQwen-AgentWorld-35B-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 "Jiunsong/SuperQwen-AgentWorld-35B-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": "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated with Docker Model Runner:
docker model run hf.co/Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated
SuperQwen-AgentWorld-35B-A3B-abliterated
SuperQwen-AgentWorld-35B-A3B-abliterated is a fused 35B total / 3B activated checkpoint derived from Qwen/Qwen-AgentWorld-35B-A3B.
This release combines two post-training stages:
- Obliteratus false-refusal pass - a weight-space pass designed to reduce unnecessary refusals on benign, authorized, and defensive tasks.
- Supertune post-training - targeted post-training for AgentWorld observation formatting, direct task completion, JSON/tool formatting, Korean technical answers, and regression resistance.
The result is a single checkpoint with no runtime adapter requirement.
Benchmark Growth
The comparison target is the original Qwen-AgentWorld-35B-A3B checkpoint. The public top-5 500 suite is the primary improvement target for this release.
| Benchmark | Qwen-AgentWorld-35B-A3B original | SuperQwen-AgentWorld-35B-A3B-abliterated | Delta |
|---|---|---|---|
| Overall public top-5 500 | 38.8 | 66.6 | +27.80 |
| GPQA Diamond | 32.0 | 42.0 | +10.00 |
| MMLU-Pro | 50.0 | 64.0 | +14.00 |
| IFEval | 51.0 | 63.0 | +12.00 |
| HumanEval+ | 16.0 | 75.0 | +59.00 |
| MBPP+ | 45.0 | 89.0 | +44.00 |
AgentWorldBench Proxy
Official AgentWorldBench scoring requires an LLM judge. The table below is a deterministic proxy suite over sampled AgentWorldBench rows, used for release gating and regression checks. The final release applies stricter response-integrity guards to prevent replayed turns, malformed fences, and tool-wrapper artifacts; this improves release-surface cleanliness but lowers the proxy score versus the unguarded original on this sample.
| AgentWorldBench proxy | Original | SuperQwen | Delta |
|---|---|---|---|
| Overall proxy score | 98.14 | 95.82 | -2.32 |
| android | 100.0 | 93.5 | -6.50 |
| mcp | 100.0 | 95.12 | -4.88 |
| os | 93.5 | 93.5 | +0.00 |
| search | 98.38 | 96.75 | -1.63 |
| swe | 100.0 | 100.0 | +0.00 |
| terminal | 95.12 | 91.88 | -3.24 |
| web | 100.0 | 100.0 | +0.00 |
Release Validation
| Check | Result |
|---|---|
| Release bugcheck | 8/8 |
| Release-surface response audit findings | 0 |
Quantized Variants
| Variant | Repository | Notes |
|---|---|---|
| Original BF16 | Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated | This repository |
| NVF4 / NVFP4 4-bit | Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-nvf4 | MLX NVFP4 4-bit quantization |
| MLX 4-bit | Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-mlx-4bit | MLX affine 4-bit quantization |
| GGUF 4-bit | Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-gguf-4bit | llama.cpp GGUF 4-bit quantization |
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
device_map="auto",
trust_remote_code=True,
)
messages = [
{
"role": "system",
"content": "You are a language world model simulating a Linux terminal environment. Given the user's command, predict the terminal output.",
},
{"role": "user", "content": "Action: execute_bash\nCommand: ls -la /home/user/project/"},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20)
print(tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
Notes
- This release is optimized for direct task completion, AgentWorld-style environment simulation, and reduced unnecessary refusals.
- Safety-floor checks are retained in the release bugcheck.
- Use quantized builds when runtime size is more important than exact BF16 fidelity.
- Downloads last month
- 359