SuperQwen-AgentWorld-35B-A3B-abliterated is a fused 35B total / 3B activated checkpoint derived from
Qwen/Qwen-AgentWorld-35B-A3B.
The result is a single checkpoint with no runtime adapter requirement.
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.
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.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated"
4tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 model_id,
7 torch_dtype="auto",
8 device_map="auto",
9 trust_remote_code=True,
10)
11
12messages = [
13 {
14 "role": "system",
15 "content": "You are a language world model simulating a Linux terminal environment. Given the user's command, predict the terminal output.",
16 },
17 {"role": "user", "content": "Action: execute_bash\nCommand: ls -la /home/user/project/"},
18]
19text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
20inputs = tokenizer([text], return_tensors="pt").to(model.device)
21outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20)
22print(tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))