WaveCut/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT_MLX-8bit

🤗 Hugging Face sourcetext-generationapache-2.032.8B params66 GBsafetensors✓ 8 checksumsupdated today
Submit in one command

Run it next to your model folder. It makes the torrent, checks your files against Hugging Face, and submits it. You just start seeding and paste your key from your account. It only reads your files and never changes them. Read the script first if you like.

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo WaveCut/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT_MLX-8bit ./model-folder
Needs a seeder →

WaveCut/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT

This model WaveCut/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT was converted to MLX format from OpenBuddy/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT using mlx-lm version 0.25.2.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("WaveCut/OpenBuddy-R1-0528-Distill-Qwen3-32B-Preview2-QAT")

prompt = "hello"

if tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, add_generation_prompt=True
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)