Quantized by
TxemAI on an Apple M4 Max (128 GB unified memory).
For full model details, settings, and recommended samplers, see the
original model card.
1mlx_lm.generate \
2 --model TxemAI/Qwen3-53B-A3B-2507-TOTAL-RECALL-v2-MLX-6bit \
3 --prompt "Write a Python function to sort a list of dicts by a key" \
4 --max-tokens 4096
1from mlx_lm import load, generate
2
3model, tokenizer = load("TxemAI/Qwen3-53B-A3B-2507-TOTAL-RECALL-v2-MLX-6bit")
4
5prompt = "Write a Python function to sort a list of dicts by a key"
6messages = [{"role": "user", "content": prompt}]
7text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
8
9response = generate(model, tokenizer, prompt=text, max_tokens=4096, verbose=True)
For complex coding or reasoning tasks, use higher token limits (32k–81k).
This model is part of the
TxemAI collection of MLX-quantized models optimized for local inference on Apple Silicon, with a focus on data sovereignty and enterprise use cases.