🎉 Official Release — v3.7.0-stable (FINALLY)

Qwen3.7-30B-Open is finally here

The community can now stop refreshing Hugging Face every 11 seconds. After 14 months of "it's almost ready," the open-weight model you've been dreaming about is now available for download, local inference, and mild existential dread.

0
Downloads in 6hrs
0
Server crashes
0
Patience remaining

Qwen3.7-30B-Open

Apache 2.0 · 30 Billion Parameters · Trained on "everything we could find"

30B
Parameters
Open
Weights
128K
Context Window
Tool Use
Coding
Reasoning
Local Inference
Discord Messages Sent Waiting

Benchmarks That Actually Matter

Compared against leading models and your current coping mechanism

Qwen3.7-30B-Open Other Models Your Current Coping Mechanism

Get The Model

Choose your preferred method of suffering

🤗

Hugging Face

Original BF16 weights — 60GB of pure joy

🧠

GGUF Quantized

Q4_K_M — because your GPU has dreams

API Access

$0.0004 per 1K tokens — cheaper than therapy

🧲

Torrent

For the true believers. 284 seeders and counting.

The Road to Release

A timeline of promises, delays, and one very confused project manager

Try It In 3 Lines

Because you've waited long enough to not need more than three

python — quickstart.py
# You made it this far. You deserve this model.
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "Qwen/Qwen3.7-30B-Open"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    device_map="auto",
    torch_dtype="bfloat16",
    trust_remote_code=True,
)

messages = [{"role": "user", "content": "Explain why this took 14 months"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
outputs = model.generate(*tokenizer.__call__(text).to(model.device), max_new_tokens=512)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

# Output: "Let me start by saying that our team worked tirelessly..."

Community Reactions

Real quotes from people who stayed up all night waiting for this

Run It Locally

Suggested VRAM setups, ranked by how much you regret buying GPUs

Casual

Single GPU

24 GB

RTX 4090 · Q4 quant · 8K context · pray to the silicon gods

⚠️ Barely
Recommended

Dual GPUs

48 GB

Dual 3090s · Q6 quant · 32K context · you're a legend

✅ Sweet Spot
Enthusiast

Quad GPUs

96 GB

4× 3090s · Full BF16 · 128K context · your electric bill weeps

✅ Full Power
Delusional

CPU Only

0 GB

Intel i9 · GGUF Q2 · 256 tokens · by the time it finishes, AGI will have replaced you

🫠 Why