Views
No views yet
jedisct1/Qwen3.6-27B-rust-v1-4bit.mlx for the plain 4-bit OptIQ sibling.jedisct1/Qwen3.6-27B-rust-v1-bf16.mlx for the plain BF16 full-precision sibling.jedisct1/Qwen3.6-27B-rust-v1-MTP-8bit.mlx if your runtime supports native MTP and you want the faster MTP path.pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("jedisct1/Qwen3.6-27B-rust-v1-8bit.mlx")
4
5messages = [
6 {"role": "system", "content": "You are an expert Rust developer."},
7 {"role": "user", "content": "Generate a focused patch that replaces unwrap() calls in parse_config() with proper error propagation."},
8]
9prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
10response = generate(model, tokenizer, prompt=prompt, max_tokens=500)
11print(response)